/* ============================================================
   STYLES.CSS - Core Styles, Layout, Typography, Components
   Premium Accountancy Website
   ============================================================ */

/* -------- RESET & BASE -------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 12000;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--navy-dark);
  color: #ffffff;
  transform: translateY(-180%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(20, 125, 130, 0.45);
  outline-offset: 3px;
}

/* -------- TYPOGRAPHY -------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

em {
  font-style: italic;
  color: var(--gold);
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-purple);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--gold-light);
}

/* -------- LAYOUT -------- */
.nav__container,
.hero__container,
.trust__container,
.pain__container,
.services__container,
.founder-spotlight__container,
.framework__container,
.stats__container,
.why__container,
.testimonials__container,
.blog__container,
.process__container,
.pricing__container,
.team__container,
.faq__container,
.contact__container,
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

/* -------- BUTTONS -------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-purple);
  color: var(--cream);
  border-color: var(--brand-purple);
}

.btn--primary:hover {
  background: var(--brand-purple-dark);
  border-color: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

.btn__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: none;
}

.btn:hover .btn__shimmer {
  animation: shimmer 0.8s ease forwards;
}

.btn__loading {
  display: none;
}

.btn.is-loading .btn__text {
  opacity: 0;
}

.btn.is-loading .btn__loading {
  display: flex;
  position: absolute;
  animation: spin 1s linear infinite;
}

/* -------- NAVIGATION -------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(244, 251, 250, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(244, 251, 250, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  height: 70px;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__logo-image {
  display: block;
  width: auto;
  height: clamp(58px, 6.2vw, 72px);
  max-width: min(72vw, 360px);
  filter: drop-shadow(0 6px 12px rgba(16, 56, 60, 0.15));
  transition: height var(--transition-fast), max-width var(--transition-fast);
}

.nav__logo:hover {
  transform: translateY(-1px);
}

.nav.scrolled .nav__logo {
  opacity: 0.97;
}

.nav.scrolled .nav__logo-image {
  height: clamp(52px, 5.4vw, 64px);
  max-width: min(66vw, 320px);
}

@media (min-width: 1024px) {
  :root {
    --nav-height: 86px;
  }

  .nav {
    height: 86px;
  }

  .nav.scrolled {
    height: 78px;
  }

  .nav__logo-image {
    height: clamp(64px, 5.2vw, 82px);
    max-width: min(38vw, 430px);
  }

  .nav.scrolled .nav__logo-image {
    height: clamp(58px, 4.6vw, 72px);
    max-width: min(33vw, 360px);
  }
}

.nav__menu {
  display: none;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(27, 77, 82, 0.9);
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav.scrolled .nav__link {
  color: var(--charcoal-light);
}

.nav__link:hover {
  color: var(--brand-purple);
}

.nav.scrolled .nav__link:hover {
  color: var(--brand-purple);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-purple);
  transition: width var(--transition-smooth);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(27, 77, 82, 0.9);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav__phone svg {
  flex-shrink: 0;
}

.nav__phone-number {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: -0.03em;
}

.nav.scrolled .nav__phone {
  color: var(--charcoal);
}

.nav__phone:hover {
  color: var(--brand-purple);
}

.nav__cta {
  display: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  margin-left: 0.2rem;
  box-shadow: 0 8px 22px rgba(20, 125, 130, 0.22);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.nav.scrolled .nav__hamburger span {
  background: var(--navy);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--cream);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--cream);
}

/* -------- MOBILE MENU -------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  text-align: center;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-smooth) 0.35s;
}

.mobile-menu.active .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__phone {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold);
}

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    #f7fdfc 0%,
    #eef9f7 34%,
    #e4f4f1 70%,
    #d9efeb 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.24;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: #cfeee8;
  top: -200px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: #ddf3eb;
  bottom: -100px;
  left: -100px;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(20, 125, 130, 0.17);
  top: 50%;
  left: 40%;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(27, 77, 82, 0.16);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse-dot 2s ease infinite;
}

.hero__title {
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title-line {
  display: block;
}

.hero__title em {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(27, 77, 82, 0.88);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero__location {
  color: var(--brand-purple);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__actions .btn--primary {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: var(--cream);
}

.hero__actions .btn--primary:hover {
  background: var(--brand-purple-dark);
  border-color: var(--brand-purple-dark);
}

.hero__actions .btn--outline {
  color: var(--navy);
  border-color: rgba(27, 77, 82, 0.34);
}

.hero__actions .btn--outline:hover {
  background: rgba(255, 253, 249, 0.95);
  border-color: rgba(27, 77, 82, 0.55);
  color: var(--navy-dark);
}

/* Hero Visual Card */
.hero__visual {
  position: relative;
}

.hero__card {
  border-radius: var(--radius-lg);
}

.hero__card--main {
  background: #fffdf9;
  border: 1px solid rgba(27, 77, 82, 0.1);
  padding: 1.75rem 2rem;
  max-width: 380px;
  box-shadow: 0 25px 60px rgba(27, 77, 82, 0.15), 0 0 0 1px rgba(255,255,255,0.55) inset;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero__card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hero__card-dot--green {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.4);
}

.hero__card-label {
  font-size: 0.78rem;
  color: rgba(27, 77, 82, 0.72);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__card-period-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(27, 77, 82, 0.8);
  background: rgba(20, 125, 130, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.hero__card-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.hero__card-countdown {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.hero__card-countdown-value {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}

.hero__card-countdown-label {
  font-size: 0.9rem;
  color: rgba(27, 77, 82, 0.75);
}

.hero__card-currency {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.7);
}

.hero__card-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.hero__card-change {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: #34d399;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero__card-change--purple {
  color: var(--brand-purple);
}

.hero__card-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(27, 77, 82, 0.08);
  border-bottom: 1px solid rgba(27, 77, 82, 0.08);
  margin-bottom: 1.25rem;
}

.hero__card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__card-stat-label {
  font-size: 0.7rem;
  color: rgba(27, 77, 82, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero__card-stat-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.hero__card-stat-value--green {
  color: #34d399;
}

.hero__card-stat-value--purple {
  color: var(--brand-purple);
}

.hero__card-note {
  font-size: 0.8rem;
  color: rgba(27, 77, 82, 0.82);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.hero__card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.85rem;
  margin-bottom: 0.85rem;
}

.hero__card-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-purple);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 16px rgba(20, 125, 130, 0.24);
}

.hero__card-book-btn:hover {
  transform: translateY(-1px);
}

.hero__card-contact-link {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__card-chart {
  width: 100%;
  height: 60px;
}

.hero__card-chart svg {
  width: 100%;
  height: 100%;
}

.hero__card--float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fffdf9;
  border: 1px solid rgba(27, 77, 82, 0.08);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: rgba(27, 77, 82, 0.86);
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(27, 77, 82, 0.16);
  animation: none;
}

.hero__card--float-1 {
  top: -12px;
  right: -8px;
}

.hero__card--float-2 {
  bottom: 20px;
  left: -8px;
}

.hero__card--main[data-deadline-state="safe"] .hero__card-dot--green {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.45);
}

.hero__card--main[data-deadline-state="watch"] .hero__card-dot--green {
  background: #f4b942;
  box-shadow: 0 0 8px rgba(244, 185, 66, 0.5);
}

.hero__card--main[data-deadline-state="urgent"] .hero__card-dot--green {
  background: #f0822e;
  box-shadow: 0 0 8px rgba(240, 130, 46, 0.5);
}

.hero__card--main[data-deadline-state="critical"] .hero__card-dot--green {
  background: #d94242;
  box-shadow: 0 0 9px rgba(217, 66, 66, 0.55);
}

.hero__card--main[data-deadline-state="watch"] .hero__card-countdown-value,
.hero__card--main[data-deadline-state="watch"] .hero__card-change {
  color: #c48c15;
}

.hero__card--main[data-deadline-state="urgent"] .hero__card-countdown-value,
.hero__card--main[data-deadline-state="urgent"] .hero__card-change {
  color: #cc6a20;
}

.hero__card--main[data-deadline-state="critical"] .hero__card-countdown-value,
.hero__card--main[data-deadline-state="critical"] .hero__card-change {
  color: #bf2f3a;
}

/* Hero Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: clamp(10px, 2.2vh, 22px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
  z-index: 3;
}

.hero__scroll-text {
  color: rgba(16, 56, 60, 0.82);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.hero__scroll-line {
  width: 24px;
  height: 39px;
  border-radius: 999px;
  border: 2px solid rgba(16, 56, 60, 0.44);
  background: rgba(255, 255, 255, 0.36);
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-purple-dark);
  transform: translateX(-50%);
  animation: scrollDot 1.75s ease-in-out infinite;
  box-shadow: 0 0 0 1px rgba(20, 125, 130, 0.08);
}

.hero__section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero__section-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* -------- TRUST BAR -------- */
.trust {
  padding: 3rem 0 4rem;
  background: var(--cream);
}

.trust__platforms {
  margin-top: 0;
}

.trust__platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.trust__platform {
  min-height: 130px;
  border-radius: 22px;
  border: 1px solid rgba(27, 77, 82, 0.14);
  background: #f7fcfb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.1rem 1rem;
}

.trust__platform-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
}

.trust__platform-subword {
  margin: 0;
  font-size: 0.86rem;
  color: var(--charcoal-light);
  line-height: 1.4;
}

.trust__platform-link {
  font-size: 0.86rem;
  color: var(--brand-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust__platform--button {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.trust__platform--button:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 125, 130, 0.45);
  box-shadow: var(--shadow-sm);
}

.trust__platform--button:focus-visible {
  outline: 3px solid rgba(20, 125, 130, 0.35);
  outline-offset: 4px;
}

.trust__platform--button::after {
  content: '\2197';
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-size: 0.92rem;
  color: rgba(16, 56, 60, 0.5);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.trust__platform--button:hover::after,
.trust__platform--button:focus-visible::after {
  color: var(--brand-purple-dark);
  transform: translate(1px, -1px);
}

/* -------- PAIN POINTS -------- */
.pain {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.pain__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.pain__container {
  position: relative;
  z-index: 1;
}

.pain__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pain__title {
  color: var(--cream);
}

.pain .section-label {
  color: #9adfcf;
}

.pain__title span {
  display: block;
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pain__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-smooth);
}

.pain__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.pain__card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 154, 128, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.pain__card-title {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pain__card-text {
  color: rgba(250, 248, 245, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pain__transition {
  text-align: center;
}

.pain__transition-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  font-style: italic;
}

.pain__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.pain__divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* -------- SERVICES -------- */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services__header {
  text-align: center;
}

.services__title span {
  display: block;
}

.services__subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 1rem auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.services__card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "icon title arrow"
    "icon text arrow";
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: start;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, #fffdf9 100%);
  border: 1px solid rgba(27, 77, 82, 0.11);
  border-radius: 20px;
  padding: 1.3rem 1.2rem;
  transition: border-color var(--transition-smooth), background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 8px 22px rgba(27, 77, 82, 0.06);
}

.services__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(15, 154, 128, 0.18) 0%, rgba(20, 125, 130, 0.5) 100%);
}

.services__card:hover {
  background: #fffdf9;
  border-color: rgba(20, 125, 130, 0.28);
  box-shadow: 0 14px 32px rgba(27, 77, 82, 0.11);
  transform: translateX(4px);
}

.services__card--featured {
  border-color: rgba(15, 154, 128, 0.5);
  background: linear-gradient(120deg, #fffdf9 0%, rgba(15, 154, 128, 0.08) 100%);
}

.services__card--featured::before {
  opacity: 1;
  background: linear-gradient(180deg, rgba(15, 154, 128, 0.35) 0%, rgba(15, 154, 128, 0.95) 100%);
}

.services__card-icon {
  grid-area: icon;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 154, 128, 0.1);
  border-radius: 14px;
  margin-top: 0.1rem;
}

.services__card-title {
  grid-area: title;
  font-size: 1.16rem;
  margin: 0;
  color: var(--navy);
}

.services__card-text {
  grid-area: text;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  margin: 0;
}

.services__card-arrow {
  grid-area: arrow;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(27, 77, 82, 0.04);
  color: var(--navy);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.services__card:hover .services__card-arrow {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translate(2px, -2px);
}

/* -------- FOUNDER SPOTLIGHT -------- */
.founder-spotlight {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.founder-spotlight__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
}

.founder-spotlight__media {
  display: flex;
  justify-content: center;
}

.founder-spotlight__image-wrap {
  width: min(100%, 320px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(27, 77, 82, 0.14);
  box-shadow: 0 14px 34px rgba(27, 77, 82, 0.12);
  background: #fffdf9;
}

.founder-spotlight__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.founder-spotlight__content {
  text-align: center;
}

.founder-spotlight__title span {
  display: block;
}

.founder-spotlight__text {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.founder-spotlight__bio {
  margin-top: 1rem;
}

.founder-spotlight__bio p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 700px;
}

.founder-spotlight__bio p:last-child {
  margin-bottom: 0;
}

.founder-spotlight__badges {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.founder-spotlight__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 82, 0.14);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
}

.founder-spotlight__actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 1rem;
}

.founder-spotlight__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.founder-spotlight__link:hover {
  color: var(--brand-purple-dark);
}

/* -------- BUSINESS FRAMEWORK -------- */
.framework {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f3eee6 100%);
}

.framework__header {
  text-align: center;
  margin-bottom: 4rem;
}

.framework__title span {
  display: block;
}

.framework__subtitle {
  font-size: 1.03rem;
  color: var(--charcoal-light);
  max-width: 700px;
  margin: 1rem auto 0;
}

.framework__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.framework__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.framework__line-progress {
  width: 100%;
  height: 0%;
  background: var(--brand-purple);
  border-radius: 0 0 1px 1px;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.framework__step {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  padding-left: 0;
}

.framework__step:last-child {
  padding-bottom: 0;
}

.framework__step-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.framework__step-marker span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal-light);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.framework__step.is-active .framework__step-marker {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(20, 125, 130, 0.15);
}

.framework__step.is-active .framework__step-marker span {
  color: #ffffff;
}

.framework__step-content {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.45;
  transform: translateX(0);
}

.framework__step.is-active .framework__step-content {
  opacity: 1;
  transform: translateX(4px);
}

.framework__step-content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  transition: color 0.4s ease;
}

.framework__step.is-active .framework__step-content h3 {
  color: var(--navy-dark);
}

.framework__step-content p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.framework__cta {
  margin: 2.5rem auto 0;
  max-width: 860px;
  background: #fffdf9;
  border: 1px solid rgba(27, 77, 82, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(27, 77, 82, 0.08);
}

.framework__cta p {
  font-size: 0.96rem;
  color: var(--charcoal-light);
  max-width: 660px;
}

/* -------- STATS -------- */
.stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 154, 128, 0.08) 0%, transparent 70%);
}

.stats__container {
  position: relative;
  z-index: 1;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stats__item {
  text-align: left;
  padding: 1.3rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 251, 250, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(16, 56, 60, 0.12);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.stats__item:hover {
  transform: translateY(-2px);
  border-color: rgba(58, 179, 154, 0.5);
  background: rgba(255, 255, 255, 0.11);
}

.stats__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.stats__prefix {
  font-size: 0.6em;
  color: var(--gold);
}

.stats__label {
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.86);
  font-weight: 500;
  line-height: 1.6;
}

/* -------- WHY CHOOSE US -------- */
.why {
  padding: 6rem 0;
  background: var(--cream);
}

.why__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why__title span {
  display: block;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(27, 77, 82, 0.12);
}

.why__card {
  position: relative;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(27, 77, 82, 0.12);
  border-radius: 0;
  padding: 1.5rem 0 1.5rem 4.6rem;
  transition: background var(--transition-smooth), padding-left var(--transition-smooth);
  box-shadow: none;
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.45);
  padding-left: 4.9rem;
}

.why__card-number {
  position: absolute;
  top: 1.35rem;
  left: 0.35rem;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid rgba(15, 154, 128, 0.35);
  background: rgba(15, 154, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0;
}

.why__card-title {
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.why__card-text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* -------- TESTIMONIALS -------- */
.testimonials {
  padding: 6rem 0;
  background: var(--cream-dark);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__title span {
  display: block;
}

.reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.reviews__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(20, 125, 130, 0.08);
  border: 1px solid rgba(20, 125, 130, 0.18);
}

.reviews__chip strong {
  color: var(--brand-purple);
  font-size: 0.95rem;
}

.reviews__chip span {
  font-size: 0.82rem;
  color: var(--charcoal-light);
}

.reviews__link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 82, 0.14);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.reviews__link:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
}

.testimonials__track:active {
  cursor: grabbing;
}

.testimonials__slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonials__card {
  background: #fffdf9;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(27, 77, 82, 0.12);
  box-shadow: 0 12px 32px rgba(27, 77, 82, 0.08);
  max-width: 680px;
  margin: 0 auto;
}

.testimonials__quote {
  margin-bottom: 1rem;
}

.testimonials__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonials__info strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}

.testimonials__info span {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials__stars {
  display: flex;
  gap: 2px;
}

.testimonials__google {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition-fast);
  background: var(--white);
}

.testimonials__btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--brand-purple);
  width: 24px;
  border-radius: 4px;
}

/* -------- BLOG -------- */
.blog {
  padding: 6rem 0;
  background: var(--cream);
}

.blog__header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog__title span {
  display: block;
}

.blog__subtitle {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  max-width: 620px;
  margin: 1rem auto 0;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.blog__card {
  background: #fffdf9;
  border: 1px solid rgba(27, 77, 82, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.25rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  box-shadow: 0 10px 28px rgba(27, 77, 82, 0.07);
}

.blog__card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 125, 130, 0.26);
  box-shadow: 0 16px 35px rgba(27, 77, 82, 0.12);
}

.blog__meta {
  font-size: 0.76rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 0.55rem;
}

.blog__card-title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.blog__card-title a {
  color: var(--navy);
}

.blog__card-title a:hover {
  color: var(--brand-purple);
}

.blog__excerpt {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.blog__card-actions {
  margin-top: 0.95rem;
}

.blog__expand-btn {
  border: 1px solid rgba(27, 77, 82, 0.24);
  background: #f2fbf9;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.blog__expand-btn:hover,
.blog__expand-btn:focus-visible {
  background: #e8f7f4;
  border-color: rgba(20, 125, 130, 0.45);
  color: var(--brand-purple-dark);
}

.blog__expand-btn:focus-visible {
  outline: 2px solid rgba(20, 125, 130, 0.35);
  outline-offset: 3px;
}

body.blog-modal-open {
  overflow: hidden;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 2.2vw, 1.6rem);
}

.blog-modal[hidden] {
  display: none;
}

.blog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 56, 60, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.blog-modal__dialog {
  position: relative;
  width: min(860px, 94vw);
  max-height: min(86vh, 860px);
  overflow: auto;
  background: #fffdf9;
  border: 1px solid rgba(27, 77, 82, 0.2);
  border-radius: 24px;
  padding: clamp(1.05rem, 2.4vw, 1.75rem);
  padding-top: clamp(3.2rem, 7vw, 4rem);
  box-shadow: 0 30px 80px rgba(16, 56, 60, 0.34);
}

.blog-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 82, 0.2);
  background: #f2fbf9;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.blog-modal__close:hover,
.blog-modal__close:focus-visible {
  background: #e8f7f4;
  border-color: rgba(20, 125, 130, 0.45);
}

.blog-modal__close:focus-visible {
  outline: 2px solid rgba(20, 125, 130, 0.35);
  outline-offset: 3px;
}

.blog-modal__meta {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-purple);
}

.blog-modal__title {
  margin-top: 0.55rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.25;
}

.blog-modal__body {
  margin-top: 1rem;
}

.blog-modal__body p {
  margin: 0;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.blog-modal__body p + p {
  margin-top: 0.9rem;
}

.blog-modal__body h1,
.blog-modal__body h2,
.blog-modal__body h3,
.blog-modal__body h4 {
  color: var(--navy);
  line-height: 1.35;
  margin-top: 1rem;
}

.blog-modal__body ul,
.blog-modal__body ol {
  margin: 0.8rem 0 0.8rem 1.2rem;
}

.blog-modal__body li + li {
  margin-top: 0.35rem;
}

.blog-modal__body a {
  color: var(--brand-purple-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-modal__body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 0.8rem;
}

.blog-modal__body blockquote {
  margin-top: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid rgba(20, 125, 130, 0.44);
  background: #f3faf9;
  color: var(--charcoal);
}

.blog-modal__actions {
  margin-top: 1.15rem;
  display: flex;
  justify-content: flex-start;
}

.blog-modal__source {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid rgba(20, 125, 130, 0.3);
  border-radius: 999px;
  padding: 0.44rem 0.84rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-purple-dark);
  text-decoration: none;
  background: #f2fbf9;
}

.blog-modal__source:hover,
.blog-modal__source:focus-visible {
  background: #e8f7f4;
  border-color: rgba(20, 125, 130, 0.45);
}

.blog__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* -------- PROCESS -------- */
.process {
  padding: 6rem 0;
  background: var(--cream);
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__title span {
  display: block;
}

.process__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process__line-progress {
  width: 100%;
  height: 0%;
  background: var(--gold);
  border-radius: 0 0 1px 1px;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  padding-left: 0;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step-marker span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal-light);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step.is-active .process__step-marker {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(15, 154, 128, 0.18);
}

.process__step.is-active .process__step-marker span {
  color: var(--navy-dark);
}

.process__step-content {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.45;
  transform: translateX(0);
}

.process__step.is-active .process__step-content {
  opacity: 1;
  transform: translateX(4px);
}

.process__step-content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  transition: color 0.4s ease;
}

.process__step.is-active .process__step-content h3 {
  color: var(--navy-dark);
}

.process__step-content p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* -------- PRICING -------- */
.pricing {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.pricing__header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.pricing__title span {
  display: block;
}

.pricing__subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 480px;
  margin: 1rem auto 0;
}

.pricing__includes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 1.9rem;
  max-width: 950px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px dashed rgba(27, 77, 82, 0.24);
  background: rgba(255, 255, 255, 0.5);
}

.pricing__includes-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-purple);
}

.pricing__includes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.pricing__includes-list li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 82, 0.14);
  background: #fffdf9;
  font-size: 0.86rem;
  color: var(--charcoal);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid rgba(27, 77, 82, 0.12);
  border-radius: 22px;
  padding: 1.35rem 1.25rem;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(27, 77, 82, 0.08);
}

.pricing__card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 125, 130, 0.26);
  box-shadow: 0 14px 32px rgba(27, 77, 82, 0.13);
}

.pricing__card--featured {
  border-color: rgba(15, 154, 128, 0.56);
  background: linear-gradient(120deg, #fffdf9 0%, rgba(15, 154, 128, 0.12) 100%);
}

.pricing__card-header {
  margin-bottom: 0;
}

.pricing__card-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.pricing__card-index {
  display: inline-flex;
  margin-right: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.pricing__card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 154, 128, 0.45);
  background: rgba(15, 154, 128, 0.18);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.pricing__card-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.pricing__card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pricing__card-from {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.pricing__card-amount {
  font-family: var(--font-mono);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing__card-period {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.pricing__card-features {
  display: none;
}

.pricing__card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.pricing__card-features svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing__card .btn {
  width: 100%;
  justify-self: stretch;
}

/* -------- TEAM -------- */
.team {
  padding: 6rem 0;
  background: var(--cream);
}

.team__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.team__title span {
  display: block;
}

.team__bio {
  margin-top: 1.5rem;
}

.team__bio p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.team__bio p:last-child {
  margin-bottom: 0;
}

.team__qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.team__badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: rgba(15, 154, 128, 0.08);
  border: 1px solid rgba(15, 154, 128, 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.team__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.team__image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

.team__image-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.5);
}

/* -------- FAQ -------- */
.faq {
  padding: 6rem 0;
  background: var(--cream);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__title span {
  display: block;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--brand-purple);
}

.faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq__icon span {
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.faq__icon span:first-child {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon span:last-child {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.active .faq__icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq__answer-inner {
  padding-bottom: 1.5rem;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* -------- CONTACT -------- */
.contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
}

.contact__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 48%, #1b6065 100%);
}

.contact__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__title {
  color: var(--cream);
}

.contact__title span {
  display: block;
}

.contact__subtitle {
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.7);
  margin-top: 1rem;
  max-width: 480px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250, 248, 245, 0.8);
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.contact__detail:hover {
  color: var(--gold);
}

/* Contact Form */
.contact__form-wrapper {
  position: relative;
}

.contact__form {
  background: #fffdf9;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(27, 77, 82, 0.12);
  box-shadow: 0 14px 36px rgba(27, 77, 82, 0.12);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form__group {
  position: relative;
}

.form__input {
  width: 100%;
  padding: 1rem 1rem 0.75rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus {
  border-color: var(--brand-purple);
  background: var(--white);
}

.form__input.error {
  border-color: #e74c3c;
}

.form__label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--charcoal-light);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form__textarea ~ .form__label {
  top: 1rem;
  transform: none;
}

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label {
  top: 0.4rem;
  transform: none;
  font-size: 0.7rem;
  color: var(--brand-purple);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4e50' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form__error {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.35rem;
  min-height: 0;
  opacity: 0;
  transition: all var(--transition-fast);
}

.form__error.visible {
  opacity: 1;
}

.form__disclaimer {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-top: 0.5rem;
}

.contact__form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
}

.contact__form-success.visible {
  display: block;
}

.contact__form-success h3 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: var(--navy);
}

.contact__form-success p {
  color: var(--charcoal-light);
}

/* -------- FOOTER -------- */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: var(--navy-dark);
  color: rgba(250, 248, 245, 0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__logo-image {
  display: block;
  width: auto;
  height: 70px;
  max-width: min(100%, 290px);
  margin-bottom: 1rem;
  filter: brightness(1.5) saturate(1.08);
}

.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__badge {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.5);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(250, 248, 245, 0.4);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + 54px + 1rem);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  z-index: 960;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-4px);
}

/* -------- MOBILE STICKY CTA -------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.mobile-cta__btn--call {
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--border);
}

.mobile-cta__btn--book {
  background: var(--gold);
  color: var(--navy-dark);
}

/* -------- SELECTION -------- */
::selection {
  background: var(--gold);
  color: var(--navy-dark);
}
