:root {
    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Times New Roman', serif;
    
    --primary: #f28200; /* Approximate orange brand color */
    --primary-50: #fff4e5;
    --primary-100: #ffebd1;
    --primary-200: #ffd8a3;
    --primary-300: #ffc46d;
    --primary-400: #ffaa33;
    --primary-500: #f28200;
    --primary-600: #cc6600;
    --primary-700: #a64d00;
    
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    
    --text-dark: #0f172a; /* slate-900 */
    --text-nav: #334155; /* slate-700 */
    --text-muted: #475569; /* slate-600 */
    
    --container-width: 1280px;
    --container-padding: 1rem;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Utilities */
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  
  .text-center { text-align: center; }
  .flex { display: flex; }
  .flex-col { flex-direction: column; }
  .items-center { align-items: center; }
  .justify-center { justify-content: center; }
  .justify-between { justify-content: space-between; }
  .relative { position: relative; }
  .w-full { width: 100%; }
  .h-full { height: 100%; }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    padding: 0 1.25rem;
    height: 42px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .btn--primary {
    background: linear-gradient(to right, var(--primary-500), var(--primary-600));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(242, 130, 0, 0.3);
  }
  
  .btn--primary:hover {
    background: linear-gradient(to right, var(--primary-600), var(--primary-700));
    box-shadow: 0 10px 15px -3px rgba(242, 130, 0, 0.4);
  }
  
  .btn--outline {
    background: white;
    color: var(--primary-600);
    border: 2px solid var(--primary-500);
    box-shadow: 0 10px 15px -3px rgba(242, 130, 0, 0.1);
  }
  
  .btn--outline:hover {
    background: var(--primary-50);
    border-color: var(--primary-600);
    box-shadow: 0 10px 15px -3px rgba(242, 130, 0, 0.2);
  }
  
  /* Header */
  .header {
    position: fixed;
    width: 100%;
    top: 1rem;
    z-index: 50;
  }
  
  .header__inner {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.07);
    transition: all 0.25s ease-in-out;
  }
  
  
  
  .header__content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  
  .header__logo img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
  }
  
  
  
  .nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
  }
  
  
  
  .nav__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-nav);
    position: relative;
    transition: color 0.25s;
  }
  
  .nav__link:hover {
    color: #000;
  }
  
  .nav__link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #000;
    transition: width 0.25s linear;
  }
  
  .nav__link:hover::before, .nav__link.active::before {
    width: 100%;
  }
  
  .nav__link.active {
    color: var(--primary);
  }
  
  .nav__link.active::before {
    background-color: var(--primary);
  }

  /* Footer-style service links: visible only in mobile nav (hidden ≥768px) */
  .nav__mobile-service-links {
    display: none;
  }

  @media (min-width: 768px) {
    .nav__mobile-service-links {
      display: none !important;
    }
  }
  
  .header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  
  
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: white;
    padding: 0.5rem;
    color: var(--text-nav);
    cursor: pointer;
    z-index: 61;
  }

  /* Mobile: open nav = fixed panel with internal scroll (many links) */
  @media (max-width: 767px) {
    .header__nav-wrapper {
      position: relative;
    }

    .header__inner {
      overflow: visible;
    }

    .header__nav-wrapper--open .nav {
      display: flex;
      flex-direction: column;
      position: fixed;
      z-index: 60;
      left: max(1rem, env(safe-area-inset-left, 0px));
      right: max(1rem, env(safe-area-inset-right, 0px));
      /* Set by JS from header height; fallback if script delayed */
      top: var(--mobile-nav-top, calc(1rem + 0.75rem + 2.5rem + 0.75rem + 0.5rem));
      bottom: max(1rem, env(safe-area-inset-bottom, 0px));
      width: auto;
      max-width: 24rem;
      margin-left: auto;
      margin-right: 0;
      padding: 0.35rem 0;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 0.75rem;
      box-shadow: 0 16px 48px -12px rgba(15, 23, 42, 0.2);
      gap: 0;
      align-items: stretch;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }

    .header__nav-wrapper--open .nav__link {
      padding: 0.75rem 1.15rem;
      border-bottom: 1px solid #f1f5f9;
      flex-shrink: 0;
    }

    .header__nav-wrapper--open .nav > .nav__link:nth-child(4) {
      border-bottom: 1px solid #e2e8f0;
    }

    .nav__mobile-service-links {
      display: flex;
      flex-direction: column;
      width: 100%;
      flex-shrink: 0;
      border-top: none;
      margin-top: 0;
      padding-top: 0.25rem;
    }

    .nav__mobile-service-heading {
      margin: 0;
      padding: 0.5rem 1.15rem 0.35rem;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 1;
    }

    .nav__link--sub {
      font-size: 0.9375rem;
      font-weight: 500;
    }

    .header__nav-wrapper--open .nav__mobile-service-links .nav__link--sub {
      padding: 0.65rem 1.15rem;
      border-bottom: 1px solid #f1f5f9;
    }

    .header__nav-wrapper--open .nav__mobile-service-links .nav__link--sub:last-child {
      border-bottom: none;
    }
  }

  html.nav-mobile-open {
    overflow: hidden;
  }
  
  
  
  /* Animations included in components */
  .group:hover .lucide-user {
    transform: scale(1.1);
  }
  .group:hover .lucide-phone {
    transform: rotate(12deg);
  }
  .transition-transform {
    transition: transform 0.3s ease;
  }
  
  /* --- Hero Section --- */
  .hero {
      position: relative;
      background-color: #fff;
      overflow: hidden;
      padding-top: 8rem;
      padding-bottom: 5rem;
  }
  
  
  
  .hero__bg-blob {
      position: absolute;
      top: -1.25rem;
      border-radius: 50%;
      filter: blur(40px);
      z-index: 0;
  }
  
  .hero__bg-blob--left {
      left: -1.25rem;
      background: linear-gradient(to bottom right, var(--primary-200), rgba(255,244,229,0.5), #fff);
      border-bottom-right-radius: 9999px;
      width: 40%;
      height: 500px;
  }
  
  .hero__bg-blob--right {
      right: -1.25rem;
      background: linear-gradient(to bottom left, var(-- Emerald-200, #a7f3d0), rgba(236,253,245,0.5), #fff);
      border-bottom-left-radius: 9999px;
      width: 40%;
      height: 500px;
  }
  
  .hero__content {
      position: relative;
      z-index: 1;
      text-align: center;
  }
  
  .hero__title {
      font-size: 1.875rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.25;
      margin-bottom: 0.5rem;
  }
  
  
  
  
  
  .hero__desc {
      max-width: 56rem;
      margin: 0 auto 1.5rem;
      color: var(--text-nav);
  }
  
  .hero__action {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .btn-large {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s;
      background-color: var(--emerald-400);
      color: white;
      box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.3);
  }
  
  
  
  .btn-large:hover {
      background-color: var(--emerald-500);
      box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.4);
  }
  
  .btn-large__icon {
      display: inline-flex;
  }
  
  .group-btn:hover .btn-large__icon svg {
      transform: translateX(4px);
      transition: transform 0.3s linear;
  }
  
  .hero__showcase {
      position: relative;
      width: 100%;
      margin-top: 5rem;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .hero__laptop {
      position: relative;
      z-index: 1;
  }
  
  .hero__laptop img {
      width: 16rem;
      object-fit: contain;
  }
  
  
  
  
  .hero__books {
      position: absolute;
      left: 50%;
      width: 100%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 0;
  }
  
  .hero__fade {
      position: absolute;
      top: 0;
      height: 100%;
      width: 40%;
      z-index: 8;
  }
  
  .hero__fade--left {
      left: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.1), transparent);
  }
  
  .hero__fade--right {
      right: 0;
      background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(255,255,255,0.1), transparent);
  }
  
  .hero__books-row {
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      width: 16rem;
  }
  
  
  
  
  .hero__book {
      max-width: 100%;
      margin-left: -5%;
      overflow: hidden;
      background-color: white;
      border-radius: 2% 1% 1% 2%;
  }
  
  
  
  .hero__book img {
      object-fit: cover;
      object-position: top;
      height: 100%;
      display: block;
      width: 100%;
  }
  
  /* --- Stats Section --- */
  .stats {
      background-color: var(--primary-50);
      padding: 3.5rem 0;
  }
  
  .stats__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
  }
  
  
  
  .stats__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 2.5rem;
  }
  
  
  
  .stats__icon {
      font-size: 3rem;
      color: #525252;
      flex-shrink: 0;
  }
  
  
  
  
  .stats__number {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--text-dark);
  }
  
  
  
  .stats__text {
      margin-top: 0.5rem;
      font-size: 1rem;
      line-height: 1.375;
      color: var(--text-muted);
  }
  
  
  
  .stats__divider {
      height: 100%;
      width: 2px;
      margin: 0 1.25rem;
      background: radial-gradient(var(--primary) 0%, transparent 100%);
      display: none;
  }
  
  
  
  
  /* --- Pricing Path Section --- */
  .pricing-path {
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
      background-color: white;
  }
  
  
  
  .pricing-path__bg {
      position: absolute;
      width: 18rem;
      height: 18rem;
      border-radius: 50%;
      filter: blur(60px);
      z-index: 0;
  }
  
  
  
  .pricing-path__bg--left {
      top: 5rem;
      left: 2.5rem;
      background-color: rgba(255, 237, 213, 0.5); /* var(--primary-200) equivalent with opacity */
  }
  
  .pricing-path__bg--right {
      bottom: 5rem;
      right: 2.5rem;
      background-color: rgba(220, 252, 231, 0.5); /* secondary-200/20 equivalent */
  }
  
  .pricing-path__header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
      z-index: 10;
  }
  
  .pricing-path__header h2 {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1rem;
  }
  
  
  
  
  .pricing-path__header p {
      font-size: 1.125rem;
      color: var(--text-muted);
  }
  
  
  
  .pricing-path__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      position: relative;
      max-width: 80rem;
      margin: 0 auto;
  }
  
  
  
  .pricing-card {
      position: relative;
      transition: all 0.5s;
      z-index: 10;
  }
  
  .pricing-card__inner {
      position: relative;
      height: 100%;
      padding: 2rem;
      backdrop-filter: blur(4px);
      transition: all 0.5s;
  }
  
  .pricing-card:not(:last-child) .pricing-card__inner::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 1px;
      background: radial-gradient(#d4d4d8 0%, transparent 100%);
  }
  
  .pricing-card__title {
      text-align: center;
      margin-bottom: 1rem;
  }
  
  .pricing-card__title h3 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: var(--text-dark);
  }
  
  
  
  .pricing-card__title p {
      font-size: 1.125rem;
      font-weight: 500;
  }
  
  .text-red { color: #dc2626; }
  .text-orange { color: #ea580c; }
  
  .pricing-card__divider {
      width: 75%;
      height: 4px;
      margin: 0 auto 1rem;
      border-radius: 9999px;
  }
  
  .pricing-card__divider--red { background: radial-gradient(#ef4444, transparent); }
  .pricing-card__divider--orange { background: radial-gradient(var(--primary), transparent); }
  .pricing-card__divider--white { background: radial-gradient(#fff, transparent); }
  
  .pricing-card__features {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
  }
  
  .pricing-card__features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--text-nav);
  }
  
  .pricing-card__features li:hover span {
      transform: scale(1.1);
  }
  
  .cross, .check {
      flex-shrink: 0;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 700;
      transition: transform 0.3s;
  }
  
  .cross--red { background-color: #fecaca; color: #b91c1c; }
  .cross--orange { background-color: #fed7aa; color: #c2410c; }
  .check--white { background-color: rgba(255,255,255,0.2); color: white; }
  
  .pricing-card--featured {
      z-index: 20;
  }
  
  
  
  .pricing-card--featured .pricing-card__inner {
      background: linear-gradient(to bottom right, var(--emerald-500), #0d9488);
      color: white;
      box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.3);
      border-radius: 1rem;
  }
  
  .pricing-card--featured .pricing-card__features li { color: white; }
  
  .pricing-card__glow {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 8rem;
      height: 8rem;
      background-color: rgba(255,255,255,0.1);
      border-top-left-radius: 9999px;
      filter: blur(20px);
  }
  
  .pricing-card__hover-glow {
      position: absolute;
      inset: 0;
      z-index: -10;
      background: linear-gradient(to bottom right, #4ade80, #14b8a6);
      opacity: 0;
      filter: blur(24px);
      transition: opacity 0.5s;
  }
  
  .pricing-card--featured:hover .pricing-card__hover-glow { opacity: 0.3; }
  
  /* --- Refactored Components --- */
  
  /* Header */
  .header__nav-wrapper {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
  }
  
  /* Hero Section */
  .hero__form-premium {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 2.5rem;
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
      border: 1px solid rgba(255,255,255,0.5);
  }
  
  .hero__form-header {
      text-align: center;
      margin-bottom: 2rem;
  }
  
  .hero__form-title {
      font-size: 1.5rem;
      color: var(--text-dark);
      font-weight: 700;
      margin-bottom: 0.5rem;
  }
  
  .hero__form-subtitle {
      color: var(--text-muted);
      font-size: 0.95rem;
  }
  
  .hero__form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 1.5rem;
  }
  
  .hero__form-control {
      position: relative;
  }
  
  .hero__form-input {
      width: 100%;
      padding: 1.25rem 1rem;
      border: 1.5px solid #e2e8f0;
      border-radius: 0.75rem;
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.3s ease;
      outline: none;
      background: #f8fafc;
  }
  
  .hero__form-input:focus {
      border-color: var(--primary);
  }
  
  .hero__form-submit {
      width: 100%;
      padding: 1.25rem;
      font-size: 1.125rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: 0.75rem;
      box-shadow: 0 10px 25px -5px rgba(242, 130, 0, 0.4);
      justify-content: center;
      display: inline-flex;
      align-items: center;
  }
  
  .hero__showcase--offset {
      margin-top: 4rem;
  }
  
  .hero__desc-text {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-nav);
  }
  
  /* Utilities */
  .util-w31 { width: 31%; }
  .util-w35 { width: 35%; }
  .util-w38 { width: 38%; }
  .util-w43 { width: 43%; }
  .util-z1 { z-index: 1; }
  .util-z2 { z-index: 2; }
  .util-z3 { z-index: 3; }
  .util-z4 { z-index: 4; }
  
  /* Trust Logos */
  .trust-logos {
      padding: 3rem 0;
      border-top: 1px solid #f1f5f9;
      border-bottom: 1px solid #f1f5f9;
      background: white;
      margin-top: -2rem;
  }
  
  .trust-logos__title {
      text-align: center;
      color: #94a3b8;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 2rem;
  }
  
  .trust-logos__grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4rem;
      flex-wrap: wrap;
      filter: grayscale(100%) opacity(60%);
      transition: all 0.3s ease;
  }
  
  .trust-logos__grid:hover {
      filter: none;
  }
  
  .trust-logo--hc {
      font-family: 'Times New Roman', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: #1e293b;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .trust-logo__hc-icon {
      width: 24px;
      height: 24px;
      background: #ea580c;
      border-radius: 4px;
  }
  
  .trust-logo--macmillan {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -1px;
      color: #334155;
  }
  
  .trust-logo--penguin {
      font-family: 'Arial', sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
      text-transform: uppercase;
      color: #0f172a;
      line-height: 1;
  }
  
  .trust-logo--penguin span {
      color: #f97316;
  }
  
  .trust-logo--bookbub {
      font-family: 'Georgia', serif;
      font-size: 1.75rem;
      font-style: italic;
      color: #334155;
  }
  
  .trust-logo--goodreads {
      font-family: 'Helvetica', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #1e293b;
  }
  
  .trust-logo--goodreads span {
      color: #f28200;
  }
  
  /* Pricing Path Table */
  .pricing-path__header-wrap {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
  }
  
  .pricing-path__title {
      font-size: 2rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 3rem;
  }
  
  .pricing-path__title span {
      color: var(--primary);
  }
  
  .pricing-table__container {
      overflow-x: auto;
      background: white;
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
      border: 1px solid #e2e8f0;
      text-align: left;
      position: relative;
      transform: translateZ(0);
  }
  
  .pricing-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
  }
  
  .pricing-table__th {
      padding: 2rem 1.5rem;
      font-weight: 700;
      width: 22%;
      color: #64748b;
      border-bottom: 2px solid #e2e8f0;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
      vertical-align: bottom;
  }
  
  .pricing-table__th--col {
      color: #334155;
      font-size: 1.125rem;
      text-transform: none;
      letter-spacing: normal;
  }
  
  .pricing-table__th--premium {
      width: 33%;
      background: #10b981;
      color: white;
      border-bottom: none;
      font-size: 1.25rem;
      text-align: center;
      border-radius: 0 1.5rem 0 0;
      position: relative;
      text-transform: none;
      letter-spacing: normal;
  }
  
  .pricing-table__badge {
      background: rgba(255,255,255,0.25);
      display: inline-block;
      padding: 0.35rem 1rem;
      border-radius: 2rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
      border: 1px solid rgba(255,255,255,0.4);
  }
  
  .pricing-table tbody {
      font-size: 0.95rem;
  }
  
  .pricing-table__td {
      padding: 1.5rem;
      color: #475569;
      border-bottom: 1px solid #f1f5f9;
  }
  
  .pricing-table__td--feature {
      font-weight: 600;
      color: #1e293b;
  }
  
  .pricing-table__td--premium {
      font-weight: 600;
      background: #10b981;
      color: white;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-left: 1px solid rgba(255,255,255,0.1);
  }
  
  .pricing-table__premium-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .pricing-table__premium-subtext {
      font-weight: normal;
      font-size: 0.85rem;
      opacity: 0.9;
      margin-top: 0.25rem;
  }
  
  .pricing-table__td--bottom-left {
      border-bottom: none;
      border-radius: 0 0 0 1.5rem;
  }
  
  .pricing-table__td--bottom-right {
      border-bottom: none;
      border-radius: 0 0 1.5rem 0;
  }
  
  .pricing-table__td--no-bot-border {
      border-bottom: none;
  }
  
  /* Who We Are */
  .who-we-are {
      background-color: var(--primary-50);
      position: relative;
  }
  
  .wwa__sticky-container {
      padding: 3rem 0;
  }
  
  
  
  
  
  .wwa__container-full {
      width: 100%;
  }
  
  .wwa__grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
  }
  
  
  
  .wwa__image-wrapper {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      transition: opacity 0.5s ease;
  }
  
  
  
  .wwa__img {
      width: 100%;
      height: auto;
      border-radius: 1rem;
      object-fit: cover;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .wwa__content {
      flex: 1;
      min-width: 0;
      padding-left: 0;
  }
  
  
  
  .wwa__title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
  }
  
  
  
  .wwa__subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
  }
  
  
  
  .wwa__steps {
      border-left: 2px solid #fed7aa;
      padding-left: 1.5rem;
      position: relative;
  }
  
  
  
  .wwa__step {
      position: relative;
      margin-bottom: 2rem;
      transition: all 0.3s ease;
  }
  
  .step-indicator {
      position: absolute;
      left: -2.75rem;
      top: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
  }
  
  
  
  .step-number {
      display: none;
      width: 2.5rem;
      height: 2.5rem;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      box-shadow: 0 0 0 6px var(--primary-300);
      font-size: 1.125rem;
  }
  
  .step-dot {
      display: block;
      width: 0.75rem;
      height: 0.75rem;
      background: var(--primary-300);
      border-radius: 50%;
      transform: translateX(0.85rem);
      margin-top: 0.5rem;
  }
  
  .wwa__step.active .step-number {
      display: flex;
  }
  
  .wwa__step.active .step-dot {
      display: none;
  }
  
  .step-title {
      font-size: 1.25rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
  }
  
  
  
  .wwa__step.active .step-title {
      color: var(--primary);
  }
  
  .step-text-container {
      height: 0;
      opacity: 0;
      overflow: hidden;
      transition: all 0.5s ease;
  }
  
  .wwa__step.active .step-text-container {
      height: auto;
      opacity: 1;
  }
  
  .step-text {
      color: var(--text-nav);
      font-size: 0.875rem;
  }
  
  .wwa__btn {
      margin-top: 2rem;
      width: fit-content;
      max-width: 100%;
      white-space: normal;
      text-align: center;
  }
  
  /* How It Works */
  .how-it-works {
      padding: 6rem 0;
      position: relative;
  }
  
  .hiw__header {
      text-align: center;
      margin-bottom: 3rem;
  }
  
  .hiw__title {
      font-size: 2.5rem;
      font-family: var(--font-serif);
      margin-bottom: 0.5rem;
  }
  
  .hiw__subtitle {
      color: var(--text-muted);
      font-size: 1.125rem;
  }
  
  .hiw__card {
      background: white;
      border-radius: 1rem;
      border: 1px solid #f1f5f9;
      padding: 2rem;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  }
  
  .hiw__grid {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
  }
  
  .hiw__content {
      flex: 1;
      min-width: 300px;
  }
  
  .hiw__content-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }
  
  .hiw__content-text {
      color: var(--text-nav);
      font-size: 0.875rem;
      margin-bottom: 1rem;
  }
  
  .hiw__content-text--mb {
      margin-bottom: 1.5rem;
  }
  
  .hiw__icon {
      color: var(--primary);
  }
  
  .hiw__image-wrapper {
      flex: 1.5;
      min-width: 300px;
  }
  
  .hiw__img {
      width: 100%;
      border-radius: 0.5rem;
      box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  }
  
  /* Discover the Works */
  .works {
      padding: 5rem 0;
      background-color: white;
      overflow: hidden;
      text-align: center;
  }
  
  .works__title {
      font-size: 2.5rem;
      color: var(--text-dark);
      margin-bottom: 2rem;
  }
  
  .slide-linear {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
  }
  
  .slide-linear-wrapper {
      transition-timing-function: linear;
  }
  
  .works__slide {
      width: 250px;
      height: 373px;
  }
  
  .works__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  }
  
  /* Testimonials */
  .testimonials {
      padding: 6rem 0;
      background-color: var(--primary-50);
      overflow: hidden;
  }
  
  .testimonials__header {
      text-align: center;
      margin-bottom: 3rem;
  }
  
  .testimonials__title {
      font-size: 2.5rem;
      font-family: var(--font-serif);
      color: var(--text-dark);
      margin-bottom: 0.5rem;
  }
  
  .testimonials__subtitle {
      color: var(--text-muted);
      font-size: 1.125rem;
  }
  
  .testimonials__slider-container {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
  }
  
  .testimonials-swiper {
      padding: 1rem;
  }
  
  .tm-slide {
      width: 450px;
  }
  
  .tm-card {
      background: white;
      border: 1px solid #f1f5f9;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  
  .tm-card__text {
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 2rem;
  }
  
  .tm-card__footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
  }
  
  .tm-card__author {
      display: flex;
      gap: 1rem;
      align-items: center;
  }
  
  .tm-card__avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
  }
  
  .tm-card__name {
      font-weight: 600;
  }
  
  .tm-card__stars {
      color: #fbbf24;
  }
  
  .testimonials__fade {
      position: absolute;
      top: 0;
      width: 15%;
      height: 100%;
      z-index: 10;
      pointer-events: none;
  }
  
  .testimonials__fade--left {
      left: 0;
      background: linear-gradient(to right, var(--primary-50), transparent);
  }
  
  .testimonials__fade--right {
      right: 0;
      background: linear-gradient(to left, var(--primary-50), transparent);
  }
  
  /* ─── Footer ─────────────────────────────────────────────────────── */
  .footer {
      background-color: #fef9f5;
      border-top: 1px solid #f0e8dc;
      font-family: var(--font-sans);
  }
  
  /* Top section */
  .footer__top {
      padding: 4rem 0 3rem;
  }
  
  .footer__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
  }
  
  
  
  
  
  /* Brand column */
  .footer__logo-link { display: inline-block; margin-bottom: 1rem; }
  .footer__logo { height: 3rem; width: auto; object-fit: contain; }
  
  .footer__brand-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
  }
  
  /* Call CTA box */
  .footer__cta-box {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 1rem;
      background: white;
      border: 1px solid #e8ddd2;
      border-radius: 0.75rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      text-decoration: none;
      color: var(--text-dark);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
      max-width: 260px;
  }
  
  .footer__cta-box:hover {
      box-shadow: 0 6px 20px rgba(242,130,0,0.15);
      transform: translateY(-2px);
  }
  
  .footer__cta-box svg:first-child { color: var(--primary); flex-shrink: 0; }
  .footer__cta-box svg:last-child  { color: var(--text-muted); margin-left: auto; flex-shrink: 0; }
  
  .footer__cta-label  { display: block; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
  .footer__cta-number { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
  
  /* Column headings */
  .footer__col-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: 0.6rem;
  }
  
  .footer__col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 2rem;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
  }
  
  /* Links */
  .footer__links {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      list-style: none;
  }
  
  .footer__links a {
      font-size: 0.875rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
  }
  
  .footer__links a:hover { color: var(--primary); }
  
  .footer__link--highlight {
      color: var(--primary) !important;
      font-weight: 600;
  }
  
  /* Services double-column */
  .footer__services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 1.5rem;
  }
  
  /* Contact list */
  .footer__contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  .footer__contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.6;
  }
  
  .footer__contact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }
  .footer__contact-list a { color: var(--text-muted); text-decoration: none; }
  .footer__contact-list a:hover { color: var(--primary); }
  .footer__contact-list strong { color: var(--text-dark); }
  
  /* Bottom Bar */
  .footer__bottom-bar {
      border-top: 1px solid #ecddd0;
      background: #fef4ec;
      padding: 1.25rem 0;
  }
  
  .footer__bottom-inner {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      align-items: flex-start;
  }
  
  
  
  /* Trust badges */
  .footer__trust-badges {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
  }
  
  .footer__badge {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }
  
  .footer__badge strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-dark);
  }
  
  .footer__badge span {
      display: block;
      font-size: 0.75rem;
      color: var(--text-muted);
      max-width: 180px;
      line-height: 1.4;
  }
  
  .footer__badge-divider {
      width: 1px;
      height: 40px;
      background: #ddd;
  }
  
  /* Right side: payments + copy */
  .footer__bottom-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }
  
  
  
  .footer__payments {
      display: flex;
      align-items: center;
      gap: 0.4rem;
  }
  
  .footer__copy {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.6;
      text-align: right;
  }
  
  .footer__copy a {
      color: var(--text-muted);
      text-decoration: none;
  }
  
  .footer__copy a:hover { color: var(--primary); }
  
  /* Popup */
  .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(5px);
      z-index: 100;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
  }
  
  .popup-overlay.active {
      opacity: 1;
      pointer-events: all;
  }
  
  .popup-content {
      background: white;
      padding: 3rem 2rem;
      border-radius: 1.5rem;
      max-width: 600px;
      width: 90%;
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  }
  
  .popup-overlay.active .popup-content {
      transform: scale(1) translateY(0);
  }
  
  .popup-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: #f1f5f9;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      color: var(--text-muted);
      transition: all 0.3s ease;
      padding: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .popup-close:hover {
      color: var(--text-dark);
      background: #e2e8f0;
  }
  
  /* --- Pathway to Growth Section --- */
  .pathway {
      background-color: #f2f2f2;
      padding: 4rem 0 5rem;
  }
  
  .pathway__header {
      text-align: center;
      margin-bottom: 2.5rem;
  }
  
  .pathway__title {
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
  }
  
  
  
  .pathway__subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
  }
  
  .pathway__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
  }
  
  
  
  
  
  
  
  .pathway__card {
      background: white;
      border-radius: 1rem;
      padding: 1.25rem 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 90px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.07);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .pathway__card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  }
  
  .pathway__img {
      max-height: 60px;
      max-width: 100%;
      width: auto;
      object-fit: contain;
      display: block;
  }
  
  /* Dark card variants */
  .pathway__card--dark-kobo {
      background: #0f3d3e;
  }
  
  .pathway__card--dark-scribd {
      background: #1c2b33;
  }
  
  .pathway__card--dark-nook {
      background: #111111;
  }
  
  /* Logo wrapper */
  .pathway__logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: #333;
      line-height: 1.3;
      text-align: left;
  }
  
  .pathway__logo span {
      font-size: 0.85rem;
      line-height: 1.3;
      color: #444;
  }
  
  .pathway__logo strong {
      font-weight: 700;
      color: var(--text-dark);
  }
  
  /* Text-only logos */
  .pathway__text-logo {
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
  }
  
  .pathway__text-logo--hoopla {
      font-size: 1.6rem;
      color: #00AEEF;
      font-style: italic;
      font-weight: 800;
  }
  
  .pathway__text-logo--rakuten {
      font-size: 1.4rem;
      color: #BF0000;
      font-weight: 800;
      letter-spacing: -0.03em;
  }
  
  .pathway__text-logo--kobo {
      font-size: 1.7rem;
      color: white;
      font-weight: 300;
      letter-spacing: -0.02em;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: #00C2FF;
      text-decoration-thickness: 3px;
  }
  
  .pathway__text-logo--bn {
      font-size: 0.85rem;
      font-weight: 900;
      color: #3a7a3a;
      text-align: center;
      letter-spacing: 0.05em;
      line-height: 1.4;
  }
  
  .pathway__text-logo--nook {
      font-size: 1.6rem;
      font-weight: 800;
      color: white;
      letter-spacing: -0.03em;
  }
  
  .pathway__text-logo--nook span {
      color: #3DD68C;
  }
  
  .pathway__text-logo--ingram {
      font-size: 1.1rem;
      color: #0070C0;
      font-weight: 600;
  }
  
  .pathway__text-logo--ingram span {
      color: #F7941D;
      font-weight: 700;
  }
  
  .pathway__text-logo--kindle {
      font-size: 1.05rem;
      color: #232F3E;
      font-weight: 700;
      flex-direction: column;
      display: flex;
      line-height: 1.1;
  }
  
  .pathway__text-logo--kindle span {
      font-weight: 400;
      font-size: 0.95rem;
      color: #232F3E;
      display: block;
  }
  
  .pathway__scribd-text {
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      letter-spacing: -0.01em;
  }
  
  .pathway__bookmate-text {
      font-size: 0.95rem;
      font-weight: 600;
      color: #C8A86B;
  }
  
  /* ─── Legal Pages (Privacy Policy & Terms) ───────────────────────── */
  .legal-page {
      padding-top: 7rem;
  }
  
  .legal-hero {
      background: linear-gradient(135deg, var(--primary-50) 0%, #fff 60%);
      padding: 4rem 0 3rem;
      border-bottom: 1px solid var(--primary-100);
  }
  
  .legal-hero__title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
  }
  
  
  
  .legal-hero__subtitle {
      color: var(--text-muted);
      font-size: 0.95rem;
  }
  
  .legal-content {
      padding: 3rem 1rem 5rem;
      max-width: 860px;
  }
  
  .legal-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid #f0e8dc;
  }
  
  .legal-section:last-child {
      border-bottom: none;
  }
  
  .legal-section h2 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1rem;
      padding-left: 0.85rem;
      border-left: 3px solid var(--primary);
  }
  
  .legal-section p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 0.85rem;
  }
  
  .legal-section p:last-child { margin-bottom: 0; }
  
  .legal-section ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0.75rem 0 0.85rem;
      padding-left: 0.5rem;
  }
  
  .legal-section ul li {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding-left: 1.25rem;
      position: relative;
  }
  
  .legal-section ul li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.5;
  }
  
  .legal-section a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
  }
  
  .legal-section a:hover {
      text-decoration: underline;
  }
  
  .legal-contact-box {
      background: var(--primary-50);
      border: 1px solid var(--primary-100);
      border-radius: 0.75rem;
      padding: 1.25rem 1.5rem;
      margin-top: 1rem;
  }
  
  .legal-contact-box p {
      margin-bottom: 0.35rem !important;
      color: var(--text-dark) !important;
  }
  
  /* --- Children's Book Publishing Page Polish --- */
  html {
      scroll-padding-top: 120px; /* Account for fixed header */
  }
  
  .child-hero {
      position: relative;
      padding: 12rem 0 8rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background-size: cover;
      background-position: right center;
      background-repeat: no-repeat;
      background-image: url('../assets/child-banner.a5f461d1.avif');
  }
  
  .child-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
      z-index: 1;
  }
  
  .child-hero__container {
      position: relative;
      z-index: 2;
      width: 100%;
  }
  
  .child-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(242, 130, 0, 0.15);
      color: #fff;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.2);
  }
  
  .child-hero__title {
      font-size: 2.5rem;
      line-height: 1.2;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.5rem;
      max-width: 800px;
  }
  h3.text-3xl.font-bold.mb-6,h2.text-4xl.md\:text-5xl.font-bold.text-slate-900,h2.text-4xl.font-extrabold.mb-8 {
      font-size: 3rem;
      margin-top: 40px;
  }
  h2 {
      font-size: 3rem;
  }
  
  p.text-lg.mb-10.max-w-3xl.mx-auto.opacity-90 {
      margin-bottom: 20px !important;
  }
  
  
  
  .child-hero__desc {
      color: rgba(255,255,255,0.9);
      font-size: 1.125rem;
      line-height: 1.6;
      max-width: 700px;
      margin-bottom: 2.5rem;
  }
  
  /* Fix Header Overlap on all sections */
  .journey-visual, 
  .special-care, 
  .workflow-sec, 
  .illus-showcase, 
  .portfolio-sec, 
  .testimonials-sec, 
  .faq-sec,
  .f-cta {
      padding-top: 50px !important;
      padding-bottom: 50px !important;
  }
  
  .journey-visual {
      background: #fff;
      padding-top: 80px !important;
  }
  
  .journey-visual__img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .special-care {
      position: relative;
      background-image: url('../assets/child-sec3.avif');
      background-size: cover;
      background-position: center;
      color: #fff;
  }
  
  .special-care::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.5));
      z-index: 1;
  }
  
  .special-care__content {
      position: relative;
      z-index: 2;
      text-align: center;
  }
  
  .special-care__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-top: 5rem;
  }
  
  
  
  /* Button Color Overrides to Brand Orange */
  .child-hero .btn-large,
  .special-care .btn-large,
  .workflow-sec .btn-large,
  .cta-sec .btn-large {
      background-color: var(--primary) !important;
      box-shadow: 0 10px 20px rgba(242, 130, 0, 0.3) !important;
      border: none !important;
      color: #fff !important;
  }
  
  .child-hero .btn-large:hover,
  .special-care .btn-large:hover,
  .workflow-sec .btn-large:hover,
  .cta-sec .btn-large:hover {
      background-color: var(--primary-600) !important;
      transform: translateY(-2px);
  }
  
  .care-card {
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      text-align: left;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      min-height: 250px;
  }
  
  .care-card:hover {
      transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
      background: rgba(0, 0, 0, 0.4);
      border-color: var(--primary);
  }
  
  .care-card__icon {
      width: 50px;
      height: 50px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      margin-left: auto;
      margin-right: auto;
      font-weight: 700;
  }
  
  .care-card__title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
  }
  
  .care-card__text {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
  }
  
  /* Workflow Section */
  .workflow-sec {
      padding: 100px 0;
      background: #fff;
  }
  
  .workflow-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
  }
  
  
  
  .workflow-image img {
      width: 100%;
      height: auto;
      display: block;
  }
  
  .workflow-list {
      list-style: none;
      padding: 0;
  }
  
  .workflow-item {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
  }
  
  .workflow-item__dot {
      flex-shrink: 0;
      margin-top: 0.25rem;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1;
  }
  
  .workflow-item__title {
      font-weight: 700;
      color: var(--text-dark);
      font-size: 1.125rem;
      display: block;
      margin-bottom: 0.5rem;
  }
  
  .workflow-item__desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
  }
  
  /* Illustration Showcase (Slider Overrides) */
  .illustration-swiper {
      padding: 100px 0;
      position: relative;
  }
  
  .illustration-swiper .swiper-slide {
      width: 760px;
      transition: all 0.5s;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .illustration-swiper .swiper-slide img {
      width: auto;
      height: 600px;
      max-width: 100%;
      object-fit: contain;
      border-radius: 1.5rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  
  
  .ill-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 3.5rem;
      height: 3.5rem;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 15px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.3s;
  }
  
  .ill-nav:hover { transform: translateY(-50%) scale(1.1); background: var(--primary); color: #fff; }
  .ill-prev { left: 1rem; }
  .ill-next { right: 1rem; }
  
  
  
  /* Testimonial Grid - Children's Page */
  .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 1rem 0;
  }
  
  
  
  
  
  .testimonial-card {
      background: white;
      padding: 2rem;
      border-radius: 1.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #f1f5f9;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }
  
  .testimonial-card__quote {
      color: var(--text-nav);
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.6;
      margin-bottom: 2rem;
      flex-grow: 1;
  }
  
  .testimonial-card__author {
      display: flex;
      align-items: center;
      gap: 1rem;
  }
  
  .testimonial-card__avatar {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary-50);
  }
  
  .testimonial-card__name {
      font-weight: 700;
      color: var(--text-dark);
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
  }
  
  .testimonial-card__stars {
      color: #fbbf24;
      font-size: 0.75rem;
  }
  
  /* FAQ Accordion - Children's Page */
  .faq-accordion {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .faq-item {
      border: 2px solid #fff5e6;
      background: #fffafa;
      border-radius: 1.25rem;
      overflow: hidden;
      transition: all 0.3s ease;
  }
  
  .faq-item--active {
      border-color: var(--primary-300);
      background: white;
      box-shadow: 0 10px 25px -5px rgba(242, 130, 0, 0.1);
  }
  
  .faq-question {
      width: 100%;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 1rem;
  }
  
  .faq-question__title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--text-dark);
  }
  
  .faq-question__icon {
      flex-shrink: 0;
      width: 1.5rem;
      height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--primary-50);
      color: var(--primary);
      transition: transform 0.3s ease;
  }
  
  .faq-item--active .faq-question__icon {
      transform: rotate(45deg);
      background: var(--primary);
      color: white;
  }
  
  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease;
      padding: 0 2rem;
  }
  
  .faq-item--active .faq-answer {
      max-height: 500px;
      padding-bottom: 1.5rem;
  }
  
  .faq-answer__text {
      color: var(--text-nav);
      font-size: 1rem;
      line-height: 1.7;
  }
  
  /* ─── About Us page ─────────────────────────────────────────────── */
  .about-page-hero {
      position: relative;
      padding: 10rem 0 3.5rem;
      background: #fefbf7;
      overflow: hidden;
  }
  
  
  
  .about-page-hero__gradient {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: min(52%, 28rem);
      background: linear-gradient(
          90deg,
          rgba(255, 228, 196, 0.55) 0%,
          rgba(255, 244, 229, 0.35) 45%,
          rgba(254, 251, 247, 0) 100%
      );
      pointer-events: none;
      z-index: 0;
  }
  
  .about-page-hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 2.5rem;
      align-items: center;
  }
  
  
  
  .about-page-hero__copy {
      text-align: left;
      max-width: 38rem;
  }
  
  .about-page-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1rem 0.45rem 0.65rem;
      margin-bottom: 1.25rem;
      background: rgba(255, 237, 213, 0.85);
      border: 1px solid rgba(251, 191, 36, 0.25);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-dark);
      font-family: var(--font-serif);
  }
  
  .about-page-hero__badge-icon {
      color: var(--primary-600);
      flex-shrink: 0;
  }
  
  .about-page-hero__title {
      font-family: var(--font-serif);
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
  }
  
  
  
  
  
  .about-page-hero__text {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
  }
  
  .about-page-hero__text:last-of-type {
      margin-bottom: 1.75rem;
  }
  
  .about-page-hero__cta {
      padding-left: 1.5rem;
      padding-right: 1.35rem;
      height: 46px;
      border-radius: 0.75rem;
  }
  
  .about-page-hero__cta-icon {
      display: inline-flex;
      transition: transform 0.25s ease;
  }
  
  .about-page-hero__cta:hover .about-page-hero__cta-icon,
  .about-page-hero__cta:focus-visible .about-page-hero__cta-icon {
      transform: translateX(4px);
  }
  
  .about-page-hero__visual {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .about-page-hero__visual img {
      width: 100%;
      max-width: 560px;
      height: auto;
      display: block;
      object-fit: contain;
  }
  
  
  
  .about-team-sec {
      padding: 4rem 0 5rem;
      background: #f8fafc;
  }
  
  .about-team-kicker {
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--primary-600);
      margin-bottom: 0.5rem;
  }
  
  .about-section-title {
      font-size: 2rem !important;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 1rem;
      font-weight: 700;
  }
  
  
  
  .about-section-title--center {
      text-align: center;
  }
  
  .about-team-sub {
      text-align: center;
      color: var(--text-muted);
      font-size: 1.125rem;
      max-width: 640px;
      margin: 0 auto 3rem;
      line-height: 1.6;
  }
  
  .about-team-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
  }
  
  
  
  
  
  .about-role-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 1rem;
      padding: 1.5rem 1.25rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
  
  .about-role-card:hover {
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
  }
  
  .about-role-num {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary-600);
      background: var(--primary-50);
      padding: 0.25rem 0.6rem;
      border-radius: 0.375rem;
      margin-bottom: 0.75rem;
  }
  
  .about-role-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
  }
  
  .about-role-desc {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.6;
  }
  
  .about-cta-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 3rem;
  }
  
  .about-values-sec {
      padding: 5rem 0;
      background: #fff;
  }
  
  .about-values-lead {
      text-align: center;
      color: var(--text-muted);
      font-size: 1.125rem;
      max-width: 560px;
      margin: 0 auto 3rem;
  }
  
  .about-values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  
  
  
  
  .about-value-card {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 1rem;
      padding: 1.75rem;
  }
  
  .about-value-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
  }
  
  .about-value-body {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
  }
  
  .about-medium-note {
      text-align: center;
      margin-top: 3rem;
  }
  
  .about-medium-note a {
      color: var(--primary-600);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
  }
  
  .about-medium-note a:hover {
      color: var(--primary-700);
  }
  
  .about-works-tight {
      padding-top: 3rem;
      padding-bottom: 4rem;
  }
  
  .about-testimonials-sec {
      padding: 4rem 0 5rem;
      background: #f8fafc;
  }
  
  .about-testimonials-head {
      text-align: center;
      margin-bottom: 3rem;
  }
  
  .about-testimonials-lead {
      color: var(--text-muted);
      font-size: 1.125rem;
      max-width: 720px;
      margin: 0.75rem auto 0;
      line-height: 1.6;
  }
  
  .about-promise-sec {
      padding: 4.5rem 1rem 5.5rem;
      overflow-x: visible;
      background: linear-gradient(180deg, #f8fafc 0%, #fefcfb 50%, #f8fafc 100%);
  }
  
  .about-promise-card-shell {
      position: relative;
      margin: 0 auto;
      padding: 2.5rem 1.25rem;
  }
  
  
  
  /* Colored blur “bloom” behind the card (warm top-left, pink bottom-right) */
  .about-promise-card-shell::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(100%, 52rem);
      height: 78%;
      min-height: 14rem;
      border-radius: 2rem;
      z-index: 0;
      pointer-events: none;
      background:
          radial-gradient(ellipse 85% 70% at 12% 18%, rgba(255, 186, 120, 0.65) 0%, rgba(255, 200, 150, 0.25) 42%, transparent 68%),
          radial-gradient(ellipse 80% 75% at 88% 82%, rgba(251, 113, 133, 0.55) 0%, rgba(244, 114, 182, 0.22) 45%, transparent 70%),
          radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 237, 213, 0.35) 0%, transparent 65%);
      filter: blur(46px);
      opacity: 0.92;
  }
  
  .about-promise-card {
      position: relative;
      z-index: 1;
      margin: 0 auto;
      padding: 3rem 1.75rem 3.25rem;
      border-radius: 1.75rem;
      overflow: hidden;
      background: linear-gradient(
          145deg,
          #fff9f4 0%,
          #fff5f5 45%,
          #fffcf8 100%
      );
      border: 1px solid rgba(254, 215, 170, 0.45);
      box-shadow:
          /* warm glow — top / left */
          -28px -32px 80px -10px rgba(255, 170, 80, 0.38),
          -12px -14px 48px -6px rgba(255, 210, 140, 0.32),
          /* pink glow — bottom / right */
          32px 36px 90px -12px rgba(244, 114, 182, 0.28),
          14px 20px 56px -4px rgba(236, 72, 153, 0.22),
          /* soft lift */
          0 4px 6px -1px rgba(15, 23, 42, 0.06),
          0 22px 44px -14px rgba(180, 83, 9, 0.1);
  }
  
  
  
  .about-promise-card__shape {
      position: absolute;
      pointer-events: none;
      z-index: 0;
  }
  
  .about-promise-card__shape--ring {
      left: -1.5rem;
      top: 18%;
      width: 7.5rem;
      height: 7.5rem;
      border: 1.5px solid rgba(251, 146, 60, 0.28);
      border-radius: 50%;
  }
  
  .about-promise-card__shape--square {
      right: 0.75rem;
      bottom: 18%;
      width: 5.25rem;
      height: 5.25rem;
      border: 1.5px solid rgba(234, 88, 12, 0.22);
      border-radius: 0.85rem;
      transform: rotate(28deg);
  }
  
  .about-promise-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      margin: 0 auto;
  }
  
  .about-promise-title {
      font-family: var(--font-serif);
      font-size: 1.875rem !important;
      line-height: 1.2;
      margin-bottom: 1.25rem;
      background: linear-gradient(90deg, #ea580c 0%, #c2410c 35%, #be123c 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: #c2410c;
  }
  
  
  
  .about-promise-text {
      font-family: var(--font-serif);
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--text-nav);
      margin-bottom: 2rem;
      max-width: 46rem;
      margin-left: auto;
      margin-right: auto;
  }
  
  .about-promise-btn {
      box-shadow:
          0 10px 28px -6px rgba(234, 88, 12, 0.45),
          0 4px 14px -4px rgba(251, 146, 60, 0.35);
  }
  
  .about-promise-btn__chev {
      display: inline-flex;
      transition: transform 0.25s ease;
  }
  
  .about-promise-btn:hover .about-promise-btn__chev,
  .about-promise-btn:focus-visible .about-promise-btn__chev {
      transform: translateX(4px);
  }

/* ─── Services page ─────────────────────────────────────────────── */
.services-hero-kicker {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: -0.5rem 0 1rem;
    line-height: 1.3;
}

.services-page-sec {
    padding: 4rem 0;
    background: #fff;
}

.services-page-sec--muted {
    background: #f8fafc;
}

.services-page-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.services-page-lead--tight {
    margin-bottom: 2rem;
}

.services-publish-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.services-launch-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.services-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.services-card--accent {
    border-color: rgba(254, 215, 170, 0.6);
}

.services-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
}

.services-card__icon--t0 { background: linear-gradient(135deg, #ff8c00, #f97316); }
.services-card__icon--t1 { background: linear-gradient(135deg, #ea580c, #fb7185); }
.services-card__icon--t2 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.services-card__icon--t3 { background: linear-gradient(135deg, #ec4899, #f97316); }
.services-card__icon--t4 { background: linear-gradient(135deg, #f28200, #dc2626); }

.services-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.services-card__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.services-card-list {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.services-card-list li {
    margin-bottom: 0.35rem;
}

.services-card__more {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-card__more:hover {
    color: var(--primary-700);
}

.services-consult-sec {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.services-consult-shell {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 0.75rem;
}

.services-consult-shell::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 72rem);
    height: 88%;
    border-radius: 1.5rem;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(255, 160, 80, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 65% 60% at 85% 75%, rgba(251, 113, 133, 0.4) 0%, transparent 55%);
    filter: blur(42px);
    opacity: 0.9;
}

.services-consult {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        -28px -28px 80px -12px rgba(255, 150, 70, 0.35),
        28px 32px 90px -14px rgba(244, 114, 182, 0.3),
        0 20px 50px rgba(15, 23, 42, 0.1);
}

.services-consult__promo {
    padding: 2.5rem 2rem 2.25rem;
    background: linear-gradient(165deg, #ff8c00 0%, #f97316 38%, #e11d48 55%, #be185d 100%);
    color: #fff;
}

.services-consult__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.55rem;
    margin-bottom: 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.services-consult__badge-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.services-consult__heading {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}

.services-consult__lead {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    line-height: 1.65;
    opacity: 0.95;
    margin-bottom: 1.75rem;
    max-width: 26rem;
}

.services-consult__features {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.services-consult__feature {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.services-consult__feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.services-consult__feature-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.services-consult__feature-text {
    font-size: 0.875rem;
    line-height: 1.45;
    opacity: 0.92;
    margin: 0;
}

.services-consult__callbox {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0.85rem;
    padding: 1.1rem 1.25rem;
    backdrop-filter: blur(6px);
}

.services-consult__callbox-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.95;
    margin: 0 0 0.5rem;
}

.services-consult__callbox-phone {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.services-consult__callbox-phone a {
    color: #fff;
    text-decoration: none;
}

.services-consult__callbox-phone a:hover {
    text-decoration: underline;
}

.services-consult__form-wrap {
    background: #faf6ef;
    padding: 2.25rem 1.75rem 2.5rem;
}

.services-consult__form-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.services-consult__form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.services-consult-form__row {
    margin-bottom: 1rem;
}

.services-consult-form__grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.services-consult-form__grid--3 {
    grid-template-columns: 1fr;
}

.services-consult-form__grid--2 {
    grid-template-columns: 1fr;
}

.services-consult-form__cell {
    min-width: 0;
}

.services-consult-form__select {
    appearance: none;
    background-color: #fff;
    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='%23475569' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    padding-right: 2.25rem;
}

.services-consult-form__req {
    color: var(--primary-600);
}

.services-consult-form__counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.services-consult-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-nav);
    margin-bottom: 0.35rem;
}

.services-consult-form__input,
.services-consult-form__textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.services-consult-form__input:focus,
.services-consult-form__textarea:focus {
    outline: 2px solid rgba(242, 130, 0, 0.35);
    border-color: var(--primary-400);
}

.services-consult-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.services-consult-form__submit {
    width: 100%;
    height: 48px;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.services-faq-sec {
    padding: 4rem 0 5rem;
    background: #fff;
}

.services-faq-sec .faq-item--active .faq-answer {
    background: #fff4e5;
    margin: 0 0.5rem 0.5rem;
    border-radius: 0 0 0.75rem 0.75rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.writing-faq-sec .faq-item--active .faq-answer {
    background: #fff4e5;
    margin: 0 0.5rem 0.5rem;
    border-radius: 0 0 0.75rem 0.75rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

/* ─── Writing Assistance page ───────────────────────────────────── */
.writing-page-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-600);
    margin-bottom: 0.75rem;
}

.writing-page-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin: -0.35rem 0 1.25rem;
}

.writing-page-sec {
    padding: 3.5rem 0 4rem;
    background: #fff;
}

.writing-page-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 40rem;
    margin: -0.25rem auto 2.5rem;
    line-height: 1.65;
}

.writing-page-lead--center {
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

/* Seamless path: centered headline block + 2×2 feature cards */
.writing-seamless {
    background: linear-gradient(180deg, #fffdfb 0%, #f8fafc 55%, #f1f5f9 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.writing-seamless__head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 3rem;
}

.writing-seamless__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-600);
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--primary-400);
}

.writing-seamless__title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.writing-seamless__lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.writing-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 72rem;
    margin: 0 auto;
}

.writing-pillar {
    position: relative;
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px -18px rgba(15, 23, 42, 0.12);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.writing-pillar:hover {
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.16);
    transform: translateY(-2px);
}

.writing-pillar__accent {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--primary-400) 0%, var(--primary-600) 100%);
}

.writing-pillar__inner {
    padding: 1.35rem 1.35rem 1.45rem 1.25rem;
    min-width: 0;
}

.writing-pillar__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.writing-pillar__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* 5-step process: section header + split (sticky visual + scroll timeline) */
.writing-process {
    background: #f8fafc;
    overflow: visible;
}

.writing-process__split {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.writing-process__aside {
    min-width: 0;
    /* Grid row stretch (≥900px) must be tall so inner position:sticky has room to ride */
    align-self: stretch;
}

.writing-process__sticky {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
}

.writing-process__figure {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: 460px;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 18px 50px -24px rgba(15, 23, 42, 0.22);
}

.writing-process__cta {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: 48px;
    padding-left: 1.5rem;
    padding-right: 1.35rem;
    border-radius: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 28px -8px rgba(242, 130, 0, 0.45);
}

.writing-process__cta-icon {
    display: inline-flex;
    transition: transform 0.25s ease;
}

.writing-process__cta:hover .writing-process__cta-icon,
.writing-process__cta:focus-visible .writing-process__cta-icon {
    transform: translateX(4px);
}

.writing-process__main {
    min-width: 0;
}

.writing-process__head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.75rem;
}

.writing-process__title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.writing-process__subtitle {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.writing-timeline {
    max-width: 52rem;
    margin: 0 auto;
}

.writing-process__main .writing-timeline {
    max-width: none;
    margin: 0;
}

.writing-timeline__item {
    display: grid;
    grid-template-columns: 3.75rem minmax(0, 1fr);
    column-gap: 0.25rem;
    align-items: stretch;
    padding-bottom: 0.25rem;
}

.writing-timeline__item:last-child {
    padding-bottom: 0;
}

.writing-timeline__track {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.35rem;
}

/* Connector line between steps (light rail like reference) */
.writing-timeline__item:not(:last-child) .writing-timeline__track::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 3.5rem;
    bottom: -0.5rem;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #cbd5e1 0%, #e2e8f0 100%);
    border-radius: 1px;
}

.writing-timeline__n {
    position: relative;
    z-index: 1;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: var(--primary-500);
    border: 3px solid var(--primary-500);
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(242, 130, 0, 0.35);
}

.writing-timeline__panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem 1.35rem 1.5rem 1.4rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 14px 45px -22px rgba(15, 23, 42, 0.14);
}

.writing-timeline__item:last-child .writing-timeline__panel {
    margin-bottom: 0;
}

.writing-timeline__heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.85rem;
    line-height: 1.3;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #f1f5f9;
}

.writing-timeline__p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.writing-timeline__note {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-nav);
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 0.65rem;
    padding: 0.75rem 0.9rem;
    margin-top: 0.65rem;
}

.writing-timeline__note strong {
    color: var(--text-dark);
    font-weight: 700;
}

.writing-timeline__note--example {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: var(--text-muted);
}

.writing-timeline__note--example strong {
    color: var(--primary-600);
}

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

.writing-guarantee {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.35rem 1.25rem;
}

.writing-guarantee__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.writing-guarantee__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.writing-page-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff4e5 0%, #fefbf7 45%, #f8fafc 100%);
    border-top: 1px solid #fde8cc;
    border-bottom: 1px solid #fde8cc;
}

.writing-page-cta__inner {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.writing-page-cta__title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.writing-page-cta__sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.writing-page-cta__btn {
    height: 48px;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ═══ Consolidated responsive: one @media block per breakpoint ═══ */

@media (min-width: 640px) {
.footer__grid { grid-template-columns: repeat(2, 1fr); }

      .pathway__grid { grid-template-columns: repeat(3, 1fr); }

      .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

      .about-team-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .services-publish-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .writing-pillars {
          grid-template-columns: repeat(2, 1fr);
      }
}

@media (min-width: 768px) {
.header {
      top: 1.75rem;
    }
    .header__inner {
      flex-direction: row;
      align-items: center;
      padding: 0.75rem 1.5rem;
    }

    .nav {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .mobile-toggle {
      display: none;
    }

      .hero__title { font-size: 3rem; }
 .hero__book { margin-left: -2%; }

      .stats__grid {
          grid-template-columns: 1fr auto 1fr auto 1fr;
      }

      .stats__item {
          flex-direction: row;
          align-items: flex-start;
          text-align: left;
      }

      .stats__item > div:last-child {
          margin-left: 1rem;
          margin-top: 0;
      }
 .stats__number { font-size: 3rem; }
 .stats__divider { display: block; }
 .pricing-path { padding: 8rem 0; }
 .pricing-path__header h2 { font-size: 3rem; }
 .pricing-path__header p { font-size: 1.25rem; }
 .pricing-card__title h3 { font-size: 2.25rem; }

      .wwa__sticky-container {
          padding: 6rem 0;
      }

      .wwa__title { font-size: 2.5rem; }

      .wwa__subtitle { font-size: 1.125rem; }

      .wwa__steps { padding-left: 2rem; }

      .step-indicator {
          left: -3.25rem;
      }

      .step-title { font-size: 1.5rem; }

      .footer__bottom-inner {
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
      }

      .footer__bottom-right { align-items: flex-end; }

      .pathway__title { font-size: 2.25rem; }

      .legal-hero__title { font-size: 2.75rem; }

      .special-care__grid {
          grid-template-columns: 1fr 1fr 1fr 1fr;
      }

      .about-page-hero__title {
          font-size: 2.75rem;
      }

      .about-section-title {
          font-size: 2.5rem !important;
      }

      .about-values-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .about-promise-card-shell {
          padding: 3rem 1.5rem;
      }

      .about-promise-card {
          padding: 3.5rem 3rem 3.75rem;
      }

      .about-promise-title {
          font-size: 3rem !important;
      }

      .services-launch-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .services-consult {
          grid-template-columns: 1fr 1fr;
      }

      .services-consult-form__grid--3 {
          grid-template-columns: repeat(3, 1fr);
      }

      .services-consult-form__grid--2 {
          grid-template-columns: repeat(2, 1fr);
      }

      .services-consult__heading {
          font-size: 2.1rem;
      }

}

@media (min-width: 900px) {
.pathway__grid { grid-template-columns: repeat(4, 1fr); }

      .writing-process__split {
          display: grid;
          grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
          gap: 2rem 2.25rem;
          /* stretch = both columns match tall column; start breaks sticky (short left track) */
          align-items: stretch;
      }

      .writing-process__sticky {
          position: sticky;
          top: 6.75rem;
      }

      .writing-process__figure {
          max-width: none;
          margin: 0;
      }

      .writing-process__cta {
          max-width: none;
          margin: 0;
      }
}

@media (min-width: 1024px) {
.header__logo img {
      height: 3.5rem;
    }

      .hero {
          padding-top: 11rem;
          padding-bottom: 8rem;
      }

      .hero__title { font-size: 3.75rem; }
 .hero__laptop img { width: 32rem; }
 .hero__books-row { width: 28rem; }

      .pricing-path__bg { width: 24rem; height: 24rem; }
 .pricing-path__header h2 { font-size: 3.75rem; }
 .pricing-path__grid { grid-template-columns: repeat(3, 1fr); }

      .pricing-card--featured { transform: scale(1.05); }

      .who-we-are { height: 300vh; }
      .wwa__sticky-container {
          position: sticky;
          top: 0;
          height: 100vh;
          display: flex;
          align-items: center;
          overflow: hidden;
      }

      .wwa__grid {
          flex-direction: row;
          gap: 3rem;
      }

      .wwa__image-wrapper {
          flex: 1;
          max-width: none;
      }

      .wwa__content {
          padding-left: 2rem;
      }

      .footer__grid { grid-template-columns: 1.6fr 0.9fr 1.8fr 1.3fr; gap: 3rem; }

      .child-hero__title { font-size: 3.5rem; }

      .workflow-grid { grid-template-columns: 1fr 1fr; }

      .testimonial-grid { grid-template-columns: repeat(4, 1fr); }

      .about-page-hero {
          padding: 11rem 0 4.5rem;
      }

      .about-page-hero__inner {
          grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
          gap: 2rem 3rem;
          align-items: center;
      }

      .about-page-hero__title {
          font-size: 3.25rem;
      }

      .about-page-hero__visual img {
          max-width: 100%;
      }

      .about-team-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .services-publish-grid {
          grid-template-columns: repeat(4, 1fr);
      }

      .writing-guarantees {
          grid-template-columns: repeat(3, 1fr);
      }

      .writing-page-cta__title {
          font-size: 2.15rem;
      }

      .writing-process__split {
          grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
          gap: 2.5rem 3rem;
      }

      .writing-process__sticky {
          top: 9rem;
      }
}

@media (min-width: 1100px) {
.pathway__grid {
          grid-template-columns: repeat(4, 1fr);
          grid-template-rows: auto auto auto;
      }
      /* Last row: 3 items centered across 4 columns */
      .pathway__card:nth-child(9)  { grid-column: 1; }
      .pathway__card:nth-child(10) { grid-column: 2; }
}

@media (min-width: 1200px) {
.about-values-grid {
          grid-template-columns: repeat(3, 1fr);
      }
}

@media (min-width: 1280px) {
.btn-large { font-size: 1.25rem; }
 .hero__laptop img { width: 620px; }
 .hero__books-row { width: 36rem; }

      .stats__item > div:last-child { margin-left: 1.5rem; }
 .stats__text { font-size: 1.125rem; }
}

@media (max-width: 767px) {
.header__actions .btn {
      display: none;
    }
}

@media (max-width: 768px) {
.illustration-swiper .swiper-slide {
          width: 100%;
          padding: 0 20px;
      }
      .illustration-swiper .swiper-slide img {
          height: auto;
          max-height: 400px;
      }
}

