/* ============================================
   SEBRING SEO — Premium Redesign
   Colors: Deep Navy #150E37, Royal Blue #2954DA,
           Lavender #C4C6F5, Soft Lavender #EDEAFC
   Fonts: Syne (display) + Plus Jakarta Sans (body)
   ============================================ */

:root {
  --navy: #150E37;
  --navy-90: rgba(21, 14, 55, 0.9);
  --blue: #2954DA;
  --blue-hover: #1e42b0;
  --blue-light: #3d6bff;
  --lavender: #C4C6F5;
  --lavender-soft: #EDEAFC;
  --lavender-bg: #f5f3ff;
  --white: #FFFFFF;
  --gray-50: #fafafe;
  --gray-100: #f0eef7;
  --gray-200: #e2dff0;
  --gray-400: #9b9bb0;
  --gray-500: #505671;
  --gray-600: #3a3a5c;
  --gray-900: #0f0a2a;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}
em { font-style: normal; color: var(--blue); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---- UTILITIES ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--lavender-soft);
  border: 1px solid var(--lavender);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag--light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--lavender);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out-expo);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(41, 84, 218, 0.35);
}
.btn--primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 6px 30px rgba(41, 84, 218, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--lavender);
}
.btn--ghost:hover {
  background: var(--lavender-soft);
  border-color: var(--blue);
  color: var(--blue);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  color: var(--white);
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 20px rgba(21, 14, 55, 0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.nav__logo-img {
  height: 38px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.nav__logo-icon { color: var(--blue); display: flex; }
.nav__logo-text em { color: var(--blue); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: all 0.25s ease;
  color: var(--gray-500);
}
.nav__links a:hover {
  color: var(--navy);
  background: var(--lavender-soft);
}
.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 2px 12px rgba(41, 84, 218, 0.3);
}
.nav__cta:hover {
  background: var(--blue-hover) !important;
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px 9px;
  border-radius: 10px;
  background: var(--lavender-soft);
  border: 1px solid var(--lavender);
}
.nav__toggle:hover { background: var(--lavender); }
.nav__toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- Nav dropdown (Services) ---- */
.nav__has-sub {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-left: -6px;
  color: var(--gray-500);
  cursor: pointer;
  background: none;
  border: 0;
}
.nav__sub-toggle svg { transition: transform 0.25s ease; }
.nav__sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 248px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 44px rgba(21, 14, 55, 0.12);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease-out-expo), transform 0.22s var(--ease-out-expo), visibility 0.22s;
  z-index: 1001;
}
.nav__sub::before {
  /* hover bridge so the menu doesn't close in the gap */
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__sub li { margin: 0; }
.nav__sub a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
}
.nav__sub a:hover {
  background: var(--lavender-soft);
  color: var(--blue);
}
/* Desktop: reveal on hover / keyboard focus */
@media (min-width: 769px) {
  .nav__has-sub:hover .nav__sub,
  .nav__has-sub:focus-within .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__has-sub:hover .nav__sub-toggle svg,
  .nav__has-sub:focus-within .nav__sub-toggle svg { transform: rotate(180deg); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--lavender-bg) 0%, var(--white) 40%, var(--lavender-soft) 100%);
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: var(--lavender);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(41, 84, 218, 0.15);
  bottom: -100px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 14, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 14, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title em {
  background: linear-gradient(
    110deg,
    var(--blue) 20%,
    var(--blue-light) 40%,
    #7a95ff 50%,
    var(--blue-light) 60%,
    var(--blue) 80%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shimmer 6s ease-in-out infinite;
  will-change: background-position;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21, 14, 55, 0.15);
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  animation: hero-image-float 9s ease-in-out infinite;
  will-change: transform;
}
.hero__floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 2;
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(21, 14, 55, 0.2);
  animation: floating-card-bob 7s ease-in-out infinite;
  animation-delay: 1.2s;
  will-change: transform;
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 28px;
  box-shadow: 0 8px 40px rgba(21, 14, 55, 0.08);
}
.hero__card--stats {
  background: var(--navy);
  border: none;
  text-align: center;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-pct {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lavender);
  vertical-align: super;
}
.hero__stat-label {
  display: block;
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--lavender);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--blue);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ---- TRUST BAR ---- */
.trust {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 24px;
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust__item {
  text-align: center;
}
.trust__number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.trust__label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ---- ABOUT ---- */
.about {
  padding: var(--section-pad) 24px;
  background: var(--white);
}
.about__inner {
  max-width: 900px;
  margin: 0 auto;
}
.about__inner--split {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about__image-col {
  position: relative;
}
.about__photo {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  box-shadow: 0 16px 50px rgba(21, 14, 55, 0.12);
}
.about__photo--overlap {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border: 4px solid var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(21, 14, 55, 0.15);
}
.about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--gray-500);
}
.about__highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__highlight-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-soft);
  border-radius: var(--radius-sm);
  color: var(--blue);
  flex-shrink: 0;
}
.about__highlight strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.about__highlight p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ---- SERVICES ---- */
.services {
  padding: var(--section-pad) 24px;
  background: var(--lavender-bg);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
}
.services__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.services__subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21, 14, 55, 0.1);
  border-color: var(--lavender);
}
.service-card:hover .service-card__icon {
  background: var(--blue);
  color: var(--white);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-soft);
  border-radius: var(--radius-sm);
  color: var(--blue);
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-out-expo);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}
.service-card__arrow {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 1.2rem;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease-out-expo);
}

/* ---- RESULTS BAND ---- */
.results-band {
  background: var(--navy);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(41, 84, 218, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(196, 198, 245, 0.15) 0%, transparent 50%);
}
.results-band__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.results-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.results-band p {
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.results-band__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: var(--section-pad) 24px;
  background: var(--white);
}
.testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonials__grid .testimonial:nth-child(4) {
  grid-column: 1 / 2;
}
.testimonials__grid .testimonial:nth-child(5) {
  grid-column: 2 / 4;
}
.testimonial {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}
.testimonial:hover {
  border-color: var(--lavender);
  box-shadow: 0 8px 30px rgba(21, 14, 55, 0.06);
}
.testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}
.testimonial__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__author cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
}
.testimonial__author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- FAQ ---- */
.faq {
  padding: var(--section-pad) 24px;
  background: var(--lavender-bg);
}
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: 50px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item[open] {
  border-color: var(--lavender);
  box-shadow: 0 4px 20px rgba(21, 14, 55, 0.06);
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: color 0.2s ease;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ''; }
.faq__question:hover { color: var(--blue); }
.faq__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lavender-soft);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
}
.faq__icon::before {
  width: 12px;
  height: 2px;
}
.faq__icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s ease;
}
.faq__item[open] .faq__icon {
  background: var(--blue);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: var(--white);
}
.faq__item[open] .faq__icon::after {
  transform: rotate(90deg);
}
.faq__answer {
  padding: 0 24px 20px;
}
.faq__answer p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact {
  padding: var(--section-pad) 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(41, 84, 218, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(196, 198, 245, 0.1) 0%, transparent 40%);
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.contact__title em {
  color: var(--lavender);
}
.contact__text {
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.contact__link:hover { color: var(--white); }
.contact__link svg { color: var(--lavender); flex-shrink: 0; }

/* Inline Book a Call CTA in contact section */
.contact__book-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 198, 245, 0.1);
  border: 1.5px solid rgba(196, 198, 245, 0.3);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 28px;
  transition: all 0.3s var(--ease-out-expo);
}
.contact__book-call:hover {
  background: var(--lavender);
  color: var(--navy);
  border-color: var(--lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 198, 245, 0.25);
}
.contact__book-call svg:first-of-type { color: var(--lavender); }
.contact__book-call:hover svg { color: var(--blue); }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
/* Vendasta widget — let widget render its own card, just provide spacing */
.contact__form-wrap--vendasta {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.contact__form-wrap--vendasta .__ssw_snapshot_widget {
  border-radius: var(--radius) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}
.contact__form-wrap--vendasta .form-disclaimer {
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group .optional {
  font-weight: 400;
  color: var(--gray-400);
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  background: var(--gray-50);
  color: var(--navy);
  transition: all 0.25s ease;
}
.form-group input::placeholder {
  color: var(--gray-400);
}
.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 84, 218, 0.12);
  background: var(--white);
}
.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: -4px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  padding: 60px 24px 32px;
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo {
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer__links-group h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer__links-group li {
  margin-bottom: 10px;
}
.footer__links-group a {
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer__links-group a:hover {
  color: var(--lavender);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.footer__social a:hover { color: var(--white); }

/* ---- ANIMATIONS ---- */
/* Scroll reveal: transform-only (no opacity) so text never sits at partial/zero
   opacity for accessibility contrast checks or for no-JS visitors. Content is
   always fully opaque and readable; it just slides into place when scrolled in. */
[data-animate] {
  transform: translateY(26px);
  transition: transform 0.8s var(--ease-out-expo);
}
[data-animate].visible {
  transform: translateY(0);
}
/* Hero elements animate in faster on load */
.hero [data-animate] {
  transition-duration: 0.6s;
}
.hero [data-animate][data-delay="200"] {
  transition-delay: 0.15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 15px); }
}

/* Hero gradient text shimmer — slow diagonal sweep */
@keyframes gradient-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero image gentle vertical float */
@keyframes hero-image-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

/* Floating stat card — offset rhythm from image */
@keyframes floating-card-bob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-4px, -6px, 0); }
}

/* Hero content entrance — staggered word reveals */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Hero orb ambient pulse — subtle breathing */
@keyframes orb-breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}

/* Badge dot pulsing glow */
@keyframes badge-pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

/* Grid pattern slow drift */
@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

/* Primary hero CTA subtle attention pulse */
@keyframes cta-attention {
  0%, 92%, 100% { transform: translateY(0); }
  96% { transform: translateY(-2px); }
}

/* Staggered entrance for hero content elements */
.hero__badge {
  animation: hero-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__title {
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.hero__subtitle {
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
.hero__actions {
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}
.hero__visual {
  animation: hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

/* Enhanced badge dot animation */
.hero__badge-dot {
  animation: pulse-dot 2s ease-in-out infinite, badge-pulse-glow 2s ease-in-out infinite;
}

/* Animate background grid pattern drifting */
.hero__grid-pattern {
  animation: grid-drift 40s linear infinite;
  will-change: background-position;
}

/* Primary hero CTA — subtle attention nudge every few seconds */
.hero__actions .btn--primary {
  animation: cta-attention 5s ease-in-out infinite;
  animation-delay: 2s;
  will-change: transform;
}
.hero__actions .btn--primary:hover {
  animation: none; /* respect user hover, don't jitter */
}

/* Make orb opacity pulse while drifting */
.hero__orb--1 {
  animation: float 20s ease-in-out infinite, orb-breathe 8s ease-in-out infinite;
}
.hero__orb--2 {
  animation: float 15s ease-in-out infinite reverse, orb-breathe 10s ease-in-out 2s infinite;
}

/* Respect user motion preferences — disable all non-essential animations */
@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__title,
  .hero__title em,
  .hero__subtitle,
  .hero__actions,
  .hero__visual,
  .hero__image,
  .hero__floating-card,
  .hero__grid-pattern,
  .hero__actions .btn--primary,
  .hero__orb,
  .hero__badge-dot {
    animation: none !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes scroll-line {
  0% { top: -50%; }
  100% { top: 150%; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   INNER PAGES — Breadcrumbs, Page Hero, Content
   ============================================ */

/* Breadcrumbs */
.breadcrumbs {
  padding: calc(var(--nav-height) + 20px) 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumbs__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 0;
}
.breadcrumbs ol {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--gray-500);
}
.breadcrumbs a {
  color: var(--blue);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs li[aria-current] { color: var(--navy); font-weight: 500; }

/* Page Hero (for inner pages) */
.page-hero {
  position: relative;
  padding: 60px 24px 80px;
  background: linear-gradient(160deg, var(--lavender-bg) 0%, var(--white) 50%, var(--lavender-soft) 100%);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-hero__title em {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
}
.page-hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--gray-500);
}
.page-hero__meta strong {
  color: var(--navy);
  font-weight: 600;
}

/* TL;DR box for AI extraction */
.tldr {
  padding: 40px 24px;
  background: var(--white);
}
.tldr__inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--lavender-soft);
  border-left: 4px solid var(--blue);
  padding: 28px 32px;
  border-radius: var(--radius-sm);
}
.tldr__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tldr p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* Long form sections */
.long-section {
  padding: 80px 24px;
  background: var(--white);
}
.long-section--alt {
  background: var(--lavender-bg);
}
.long-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
.long-section__content h2 {
  margin-bottom: 20px;
}
.long-section__content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.long-section__content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 8px;
}
.long-section__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.long-section__content .lead-paragraph {
  font-size: 1.15rem;
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 24px;
}
.long-section__content .inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.long-section__content .inline-link:hover { color: var(--blue-hover); }

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.bullet-list--check li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 4px;
  top: 7px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13 4L6 11L3 8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13 4L6 11L3 8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}
.service-areas {
  columns: 2;
  column-gap: 32px;
}

/* Service Summary Grid */
.service-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.service-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.long-section--alt .service-summary {
  background: var(--white);
}
/* Google Maps embed (location pages) */
.map-embed {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 16px 50px rgba(21, 14, 55, 0.12);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .map-embed iframe { height: 320px; }
}

/* Clickable service-summary card (used for location / nearby-area links) */
a.service-summary--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s var(--ease-out-expo), border-color 0.25s var(--ease-out-expo);
}
a.service-summary--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(21, 14, 55, 0.10);
  border-color: var(--lavender);
}
.service-summary__arrow {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue);
}
a.service-summary--link:hover .service-summary__arrow { color: var(--blue-hover); }
.service-summary h3 {
  margin-top: 0 !important;
  font-size: 1.05rem !important;
  margin-bottom: 8px !important;
}
.service-summary p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Team section */
.team {
  padding: 80px 24px;
  background: var(--white);
}
.team__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.team__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.team__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.team-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.team-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 12px 40px rgba(21, 14, 55, 0.08);
}
.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.team-card__avatar--ken { background: linear-gradient(135deg, var(--blue), var(--navy)); }
.team-card__avatar--jane { background: linear-gradient(135deg, #9575e6, #6b4dc6); }
.team-card__avatar--anuja { background: linear-gradient(135deg, #4dc6a0, #2ba878); }
.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.team-card__bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.team-card__expertise {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.team-card__expertise li {
  font-size: 0.85rem;
  padding: 4px 0;
  color: var(--gray-500);
  padding-left: 20px;
  position: relative;
}
.team-card__expertise li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.team__stat-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.team__stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--lavender);
  display: block;
  line-height: 1;
}
.team__stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.team__stat-band p {
  text-align: left;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Why Us grid */
.why-us {
  padding: 80px 24px;
  background: var(--lavender-bg);
}
.why-us__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.why-us__header {
  text-align: center;
  margin-bottom: 50px;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(21, 14, 55, 0.08);
  border-color: var(--lavender);
}
.why-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #8185E4;
  line-height: 1;
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  padding-right: 60px;
}
.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* Services index (jump links) */
.services-index {
  padding: 40px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.services-index__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.services-index__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.services-index__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.services-index__grid a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  background: var(--lavender-soft);
  border: 1px solid var(--lavender);
  color: var(--navy);
  border-radius: 100px;
  transition: all 0.2s;
}
.services-index__grid a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Service detail sections */
.service-detail {
  padding: 80px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.service-detail--alt {
  background: var(--lavender-bg);
}
.service-detail__inner {
  max-width: 900px;
  margin: 0 auto;
}
.service-detail__content h2 { margin-bottom: 20px; }
.service-detail__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.service-detail__content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 8px;
}
.service-detail__content p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.service-detail__content .lead-paragraph {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

/* Custom Quote section (replaces pricing) */
.custom-quote {
  padding: 80px 24px;
  background: var(--lavender-bg);
}
.custom-quote__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.custom-quote__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.custom-quote__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 12px;
}
.custom-quote__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.custom-quote__feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.custom-quote__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(21, 14, 55, 0.08);
  border-color: var(--lavender);
}
.custom-quote__feature-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-soft);
  color: var(--blue);
  border-radius: 50%;
  margin-bottom: 18px;
}
.custom-quote__feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.custom-quote__feature p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}
.custom-quote__cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.custom-quote__cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 198, 245, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.custom-quote__cta-band > * { position: relative; z-index: 1; }
.custom-quote__cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.custom-quote__cta-band p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.custom-quote__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.custom-quote__cta-band .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.custom-quote__cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.custom-quote__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

/* Pricing */
.pricing {
  padding: 80px 24px;
  background: var(--lavender-bg);
}
.pricing__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.pricing__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(21, 14, 55, 0.1);
}
.pricing-card--featured {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 40px rgba(41, 84, 218, 0.15);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card__header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.pricing-card__tagline {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-card__period {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.92rem;
  padding: 8px 0;
  color: var(--gray-600);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 4px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13 4L6 11L3 8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13 4L6 11L3 8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat;
}
.pricing__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 20px;
}

/* Blog list */
.blog-list {
  padding: 60px 24px 80px;
  background: var(--white);
}
.blog-list__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(21, 14, 55, 0.1);
  border-color: var(--lavender);
}
.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card__image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lavender-soft);
}
.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__image-wrap img {
  transform: scale(1.04);
}
.blog-card__content {
  padding: 24px 26px;
}
.blog-card__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card__category {
  background: var(--lavender-soft);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.blog-card__read {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
}

/* Featured blog card */
.blog-card--featured {
  margin-bottom: 40px;
}
.blog-card--featured .blog-card__link {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
.blog-card--featured .blog-card__image-wrap {
  aspect-ratio: auto;
  height: 100%;
  min-height: 340px;
}
.blog-card--featured .blog-card__content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card--featured .blog-card__title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.blog-card--featured .blog-card__excerpt {
  font-size: 1rem;
  margin-bottom: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-grid .blog-card__title {
  font-size: 1.1rem;
}

.blog-list__cta {
  margin-top: 60px;
  text-align: center;
  padding: 50px 32px;
  background: var(--lavender-bg);
  border-radius: var(--radius);
}
.blog-list__cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.blog-list__cta p {
  color: var(--gray-500);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Article (blog post) */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  background: var(--white);
}
.article__header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}
.article__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.article__lede {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--gray-500);
}
.article__body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-600);
}
.article__body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.article__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}
.article__body p { margin-bottom: 18px; }
.article__body ul, .article__body ol {
  margin: 16px 0 24px 24px;
}
.article__body li {
  margin-bottom: 10px;
  line-height: 1.75;
}
.article__body a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.article__body a:hover { color: var(--blue-hover); }
.article__body blockquote {
  border-left: 4px solid var(--blue);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--lavender-bg);
  font-style: italic;
  color: var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article__body strong {
  color: var(--navy);
  font-weight: 600;
}

.article__cta {
  margin: 60px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
}
.article__cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.article__cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.article__related {
  padding: 40px 0 0;
  border-top: 1px solid var(--gray-200);
}
.article__related h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.article__related-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article__related-grid a {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.article__related-grid a:hover { color: var(--blue-hover); }

/* Nav active state */
.nav__links a.active {
  color: var(--navy);
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 500px; }
  .about__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .about__image-col { max-width: 500px; margin: 0 auto; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .custom-quote__grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
  .custom-quote__cta-band { padding: 40px 24px; }
  .custom-quote__actions { flex-direction: column; }
  .custom-quote__actions .btn { width: 100%; justify-content: center; }
  .why-us__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured .blog-card__link { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__image-wrap { min-height: 240px; }
  .team__stat-band { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .team__stat-band p { text-align: center; }
  .service-summary-grid { grid-template-columns: 1fr; }
  .service-areas { columns: 1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial:nth-child(5) { grid-column: auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Solid nav on mobile: removing backdrop-filter stops .nav from becoming the
     containing block for the fixed menu, so the menu fills the viewport. */
  .nav {
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 40px;
    gap: 4px;
    z-index: 1200;
    overflow-y: auto;
    box-shadow: 0 12px 30px rgba(21, 14, 55, 0.12);
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    font-size: 1.1rem;
    padding: 14px 16px;
    width: 100%;
  }
  .nav__cta { width: 100%; text-align: center; }
  .nav__toggle { display: flex; }

  /* Mobile: Services dropdown expands inline */
  .nav__has-sub { flex-wrap: wrap; justify-content: space-between; width: 100%; }
  .nav__has-sub > a { flex: 1; }
  .nav__sub-toggle { padding: 12px; margin: 0; color: var(--navy); }
  .nav__sub-toggle svg { width: 20px; height: 20px; }
  .nav__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--lavender);
    border-radius: 0;
    background: var(--lavender-bg);
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
    padding: 4px 6px;
    margin: 4px 0 6px 10px;
    display: none;
  }
  .nav__sub.open { display: block; }
  .nav__sub a { font-size: 1rem; padding: 12px 14px; }

  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 48px); padding-bottom: 80px; }
  .hero__title { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero__floating-card { left: -12px; bottom: -16px; padding: 14px 20px; }
  .hero__floating-card .hero__stat-number { font-size: 2.5rem; }
  .hero__floating-card .hero__stat-pct { font-size: 1.3rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll-cue { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial:nth-child(4),
  .testimonials__grid .testimonial:nth-child(5) { grid-column: auto; }

  .trust__inner { gap: 24px; }
  .trust__divider { display: none; }
  .trust__inner { display: grid; grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .team__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero__meta { gap: 12px; font-size: 0.82rem; }
  .article__title { font-size: 1.75rem; }
  .article { padding: 40px 20px 60px; }
  .tldr__inner { padding: 20px 22px; }
  .long-section, .service-detail, .pricing, .team, .why-us { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .contact__form-wrap { padding: 24px; }
}
