    :root {
      --ink: #1a1610;
      --cream: #FAF7F2;
      --parchment: #F2EDE4;
      --gold: #C8993E;
      --gold-light: #E8C97A;
      --gold-dark: #9A7530;
      --rust: #B85C3A;
      --forest: #2F4F3A;
      --charcoal: #3A3530;
      --warm-gray: #8A8279;
      --light-gray: #D5CFCA;
      --white: #FFFFFF;
      --shadow-sm: 0 1px 3px rgba(26, 22, 16, 0.08);
      --shadow-md: 0 4px 20px rgba(26, 22, 16, 0.10);
      --shadow-lg: 0 12px 40px rgba(26, 22, 16, 0.14);
      --radius: 6px;
      --green: #2E7D4F;
      --green-light: #E8F5EE
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.2
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      letter-spacing: -0.02em
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      letter-spacing: -0.015em
    }

    h3 {
      font-size: clamp(1.2rem, 2vw, 1.5rem)
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 14px;
      padding: 16px 36px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      text-decoration: none;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      box-shadow: 0 4px 16px rgba(200, 153, 62, .3)
    }

    .btn-primary::after {
      content: '→';
      transition: transform .3s ease
    }

    .btn-primary:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200, 153, 62, .4)
    }

    .btn-primary:hover::after {
      transform: translateX(4px)
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--gold-dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      padding: 14px 28px;
      border: 2px solid var(--gold);
      border-radius: var(--radius);
      cursor: pointer;
      text-decoration: none;
      transition: all .3s ease
    }

    .btn-secondary:hover {
      background: var(--gold);
      color: var(--white);
      transform: translateY(-1px)
    }

    /* NAV */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(250, 247, 242, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(200, 153, 62, .15);
      transition: all .3s ease
    }

    body.ad-traffic .nav-links {
      display: none !important
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 14px 24px
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--ink);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .nav-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: white
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px
    }

    .nav-links a {
      font-size: .9rem;
      color: var(--charcoal);
      text-decoration: none;
      font-weight: 500;
      transition: color .2s
    }

    .nav-links a:hover {
      color: var(--gold-dark)
    }

    .nav-cta {
      background: var(--gold);
      color: var(--white);
      padding: 10px 24px;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
      transition: all .3s ease;
      border: none;
      cursor: pointer
    }

    .nav-cta:hover {
      background: var(--gold-dark);
      transform: translateY(-1px)
    }

    .nav-cta-mobile {
      display: none;
      align-items: center;
      gap: 8px;
      padding: 9px 18px;
      border-radius: 100px;
      font-size: .82rem;
      letter-spacing: .02em
    }

    .nav-cta-mobile .nav-phone-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      flex-shrink: 0
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      padding-top: 80px;
      position: relative;
      background: linear-gradient(165deg, var(--cream) 0%, var(--parchment) 40%, #EDE5D8 100%);
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -200px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 153, 62, .08) 0%, transparent 70%);
      pointer-events: none
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent)
    }

    /* Decorative book spines behind hero content */
    .hero-deco {
      position: absolute;
      top: 50%;
      right: -40px;
      transform: translateY(-50%);
      display: flex;
      gap: 6px;
      opacity: .12;
      pointer-events: none;
      z-index: 0
    }

    .hero-spine {
      width: 28px;
      border-radius: 4px;
      background: var(--gold-dark)
    }

    .hero-spine:nth-child(1) {
      height: 320px
    }

    .hero-spine:nth-child(2) {
      height: 280px;
      margin-top: 20px
    }

    .hero-spine:nth-child(3) {
      height: 350px;
      margin-top: -10px
    }

    .hero-spine:nth-child(4) {
      height: 260px;
      margin-top: 30px
    }

    .hero-spine:nth-child(5) {
      height: 310px;
      margin-top: 5px
    }

    /* Floating decorative quote mark */
    .hero-content::before {
      content: '"';
      position: absolute;
      top: -30px;
      left: -20px;
      font-family: 'Playfair Display', serif;
      font-size: 12rem;
      color: var(--gold);
      opacity: .1;
      line-height: 1;
      pointer-events: none;
      z-index: 0
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      min-height: calc(100vh - 80px);
      padding: 40px 0 60px
    }

    .hero-content {
      position: relative;
      z-index: 2
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 153, 62, .12);
      color: var(--gold-dark);
      font-size: .82rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: .08em;
      border: 1px solid rgba(200, 153, 62, .2)
    }

    .hero-badge::before {
      content: '✦'
    }

    .hero-badge .expiry {
      font-weight: 400;
      opacity: .8;
      margin-left: 4px
    }

    .hero-title {
      margin-bottom: 20px;
      color: var(--ink)
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-dark);
      position: relative
    }

    .hero-title em::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      opacity: .4;
      border-radius: 2px
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--warm-gray);
      line-height: 1.7;
      margin-bottom: 12px;
      max-width: 480px
    }

    .hero-benefits {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 24px 0 32px;
      padding: 0
    }

    .hero-benefits li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .95rem;
      color: var(--charcoal);
      list-style: none
    }

    .hero-benefits li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      min-width: 22px;
      border-radius: 50%;
      background: var(--forest);
      color: white;
      font-size: .7rem;
      font-weight: 700;
      margin-top: 2px
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap
    }

    .hero-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .95rem;
      color: var(--charcoal);
      text-decoration: none;
      font-weight: 500
    }

    .hero-phone-icon {
      display: inline-block
    }

    .hero-trust-bar {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--light-gray)
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
      color: var(--warm-gray);
      font-weight: 500
    }

    .trust-item strong {
      color: var(--ink);
      font-weight: 700
    }

    .trust-stars {
      color: var(--gold)
    }


    /* PLATFORM BAR */
    .platform-bar {
      padding: 28px 0;
      background: var(--white);
      border-bottom: 1px solid rgba(0, 0, 0, .04)
    }

    .platform-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap
    }

    .platform-bar-label {
      font-size: .78rem;
      font-weight: 600;
      color: var(--warm-gray);
      text-transform: uppercase;
      letter-spacing: .1em;
      white-space: nowrap
    }

    .platform-logos {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center
    }

    .platform-logo {
      font-size: .85rem;
      font-weight: 700;
      color: var(--charcoal);
      opacity: .5;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: opacity .3s
    }

    .platform-logo:hover {
      opacity: .8
    }

    .platform-logo .p-icon {
      font-size: 1.2rem
    }

    /* BOOK COVERS */


    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    /* FORM */
    .hero-form-wrapper {
      background: var(--white);
      border-radius: 12px;
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(200, 153, 62, .12);
      position: relative
    }

    .hero-form-wrapper::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 40px;
      right: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
      border-radius: 0 0 4px 4px
    }

    .form-headline {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
      text-align: center
    }

    .form-sub {
      font-size: .88rem;
      color: var(--warm-gray);
      text-align: center;
      margin-bottom: 20px
    }

    .form-progress {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 22px
    }

    .fp-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      font-weight: 700;
      color: var(--warm-gray);
      transition: all .3s ease
    }

    .fp-circle.active {
      background: var(--gold);
      border-color: var(--gold);
      color: white
    }

    .fp-circle.completed {
      background: var(--green);
      border-color: var(--green);
      color: white
    }

    .fp-label {
      font-size: .72rem;
      font-weight: 600;
      color: var(--warm-gray);
      transition: color .3s
    }

    .fp-label.active {
      color: var(--ink)
    }

    .fp-connector {
      width: 40px;
      height: 2px;
      background: var(--light-gray);
      transition: background .3s
    }

    .fp-connector.active {
      background: var(--gold)
    }

    .form-step {
      display: none
    }

    .form-step.active {
      display: block
    }

    .form-group {
      margin-bottom: 14px
    }

    .form-group label {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 5px
    }

    .form-group .label-optional {
      font-weight: 400;
      color: var(--warm-gray);
      font-size: .75rem
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px 14px;
      font-size: .92rem;
      border: 1.5px solid var(--light-gray);
      border-radius: var(--radius);
      background: var(--cream);
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      transition: all .2s
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200, 153, 62, .12)
    }

    .form-group input::placeholder {
      color: var(--warm-gray)
    }

    .form-group input:invalid:not(:placeholder-shown) {
      border-color: var(--rust)
    }

    .form-group .field-error {
      font-size: .75rem;
      color: var(--rust);
      margin-top: 4px;
      display: none
    }

    .form-group input:invalid:not(:placeholder-shown)~.field-error {
      display: block
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    .form-next,
    .form-submit {
      width: 100%;
      padding: 15px;
      margin-top: 8px;
      background: var(--gold);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all .3s ease;
      box-shadow: 0 4px 16px rgba(200, 153, 62, .3)
    }

    .form-next:hover,
    .form-submit:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200, 153, 62, .4)
    }

    .form-back {
      width: 100%;
      padding: 12px;
      margin-top: 6px;
      background: transparent;
      color: var(--warm-gray);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .88rem;
      border: none;
      cursor: pointer;
      transition: color .2s
    }

    .form-back:hover {
      color: var(--ink)
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0
    }

    .form-privacy {
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
      margin-top: 12px;
      font-size: .78rem;
      color: var(--warm-gray)
    }

    .form-privacy svg {
      width: 14px;
      height: 14px;
      opacity: .6
    }

    .form-social-proof {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 0, 0, .06)
    }

    .avatar-stack {
      display: flex
    }

    .avatar-stack .avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid white;
      margin-left: -8px;
      font-size: .65rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white
    }

    .avatar-stack .avatar:first-child {
      margin-left: 0
    }

    .avatar-stack .a1 {
      background: var(--gold)
    }

    .avatar-stack .a2 {
      background: var(--rust)
    }

    .avatar-stack .a3 {
      background: var(--forest)
    }

    .avatar-stack .a4 {
      background: var(--charcoal)
    }

    .form-social-proof span {
      font-size: .78rem;
      color: var(--warm-gray)
    }

    .form-social-proof strong {
      color: var(--ink)
    }

    .what-next {
      display: flex;
      gap: 12px;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 0, 0, .06)
    }

    .what-next-step {
      flex: 1;
      text-align: center;
      padding: 8px 4px
    }

    .wn-num {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green);
      font-size: .65rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 6px
    }

    .what-next-step .wn-label {
      font-size: .72rem;
      color: var(--warm-gray);
      font-weight: 500;
      line-height: 1.4
    }


    /* PROCESS */
    .process {
      padding: 100px 0;
      position: relative;
      background: var(--white)
    }

    .process::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--light-gray), transparent)
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      font-weight: 700;
      color: var(--gold-dark);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 14px
    }

    .section-label::before {
      content: '—';
      color: var(--gold)
    }

    .section-title {
      margin-bottom: 14px
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--warm-gray);
      max-width: 620px;
      line-height: 1.7
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
      opacity: .3
    }

    .process-step {
      text-align: center;
      padding: 0 16px;
      position: relative
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: white;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 16px rgba(200, 153, 62, .25)
    }

    .step-icon {
      font-size: 1.6rem;
      margin-bottom: 10px
    }

    .process-step h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--ink)
    }

    .process-step p {
      font-size: .85rem;
      color: var(--warm-gray);
      line-height: 1.6
    }

    /* SERVICES */
    .services {
      padding: 100px 0;
      background: var(--cream)
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .service-card {
      background: var(--white);
      border-radius: 10px;
      padding: 36px 28px;
      border: 1px solid rgba(0, 0, 0, .05);
      transition: all .4s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      overflow: hidden
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform .4s ease;
      transform-origin: left
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg)
    }

    .service-card:hover::before {
      transform: scaleX(1)
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(200, 153, 62, .12), rgba(200, 153, 62, .05));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px
    }

    .service-card h3 {
      margin-bottom: 10px;
      font-size: 1.15rem
    }

    .service-card p {
      font-size: .9rem;
      color: var(--warm-gray);
      line-height: 1.7
    }

    /* SOCIAL PROOF */
    .social-proof {
      padding: 100px 0;
      background: var(--ink);
      color: var(--cream);
      position: relative;
      overflow: hidden
    }

    .social-proof::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 153, 62, .06), transparent 70%)
    }

    .social-proof .section-label {
      color: var(--gold-light)
    }

    .social-proof .section-title {
      color: var(--cream)
    }

    .social-proof .section-subtitle {
      color: rgba(250, 247, 242, .55)
    }

    .proof-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-bottom: 64px
    }

    .stat-item {
      text-align: center
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1
    }

    .stat-label {
      font-size: .85rem;
      color: rgba(250, 247, 242, .5);
      margin-top: 8px;
      font-weight: 500
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px
    }

    /* TRUST DIFFERENTIATORS (below services) */
    .trust-diffs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid var(--light-gray)
    }

    .td-item {
      display: flex;
      align-items: flex-start;
      gap: 12px
    }

    .td-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(200, 153, 62, .12), rgba(200, 153, 62, .05));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem
    }

    .td-item strong {
      display: block;
      font-size: .85rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 2px
    }

    .td-item span {
      font-size: .78rem;
      color: var(--warm-gray);
      line-height: 1.4
    }

    .testimonial-card {
      background: rgba(255, 255, 255, .05);
      border-radius: 10px;
      padding: 28px;
      border: 1px solid rgba(200, 153, 62, .12);
      transition: all .3s ease
    }

    .testimonial-card:hover {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(200, 153, 62, .25);
      transform: translateY(-3px)
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: .9rem;
      margin-bottom: 14px;
      letter-spacing: 2px
    }

    .testimonial-text {
      font-size: .92rem;
      line-height: 1.7;
      color: rgba(250, 247, 242, .8);
      margin-bottom: 18px;
      font-style: italic
    }

    .testimonial-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 16px
    }

    .testimonial-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 10px;
      border-radius: 100px;
      font-size: .68rem;
      font-weight: 600;
      background: rgba(200, 153, 62, .1);
      color: var(--gold-light);
      border: 1px solid rgba(200, 153, 62, .15)
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .testimonial-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .75rem;
      color: white
    }

    .testimonial-name {
      font-weight: 600;
      font-size: .88rem;
      color: var(--cream)
    }

    .testimonial-role {
      font-size: .75rem;
      color: rgba(250, 247, 242, .4)
    }

    .social-proof-cta {
      text-align: center;
      margin-top: 48px
    }

    .social-proof-cta p {
      font-size: .82rem;
      color: rgba(250, 247, 242, .4);
      margin-top: 12px
    }

    .social-proof-cta .btn-primary {
      box-shadow: 0 6px 28px rgba(200, 153, 62, .35)
    }

    .testimonial-role {
      font-size: .78rem;
      color: rgba(250, 247, 242, .45)
    }

    .trustpilot-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(200, 153, 62, .12);
      flex-wrap: wrap
    }

    .trustpilot-bar span {
      font-size: .88rem;
      color: rgba(250, 247, 242, .5)
    }

    .trustpilot-bar .tp-stars {
      color: var(--gold);
      font-size: 1.1rem
    }

    .trustpilot-bar strong {
      color: var(--cream)
    }

    .tp-verify {
      font-size: .72rem;
      color: rgba(250, 247, 242, .35);
      text-decoration: underline;
      margin-left: 4px
    }

    /* PRICING */
    .pricing {
      padding: 100px 0;
      background: var(--ink);
      color: var(--cream);
      position: relative;
      overflow: hidden
    }

    .pricing::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 40% at 25% 20%, rgba(200, 153, 62, .06), transparent 60%), radial-gradient(ellipse 60% 40% at 75% 80%, rgba(200, 153, 62, .04), transparent 60%);
      pointer-events: none
    }

    .pricing .section-label {
      color: var(--gold-light)
    }

    .pricing .section-title {
      color: var(--cream)
    }

    .pricing .section-subtitle {
      color: rgba(250, 247, 242, .55)
    }

    .pricing-intro {
      text-align: center;
      max-width: 660px;
      margin: 0 auto 56px
    }

    .prc-tier {
      text-align: center;
      margin-bottom: 16px;
      position: relative;
      z-index: 1
    }

    .prc-tier span {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold)
    }

    .prc-tier-sub {
      text-align: center;
      color: rgba(250, 247, 242, .45);
      font-size: .9rem;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto
    }

    .prc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
      align-items: stretch
    }

    /* Card — flex column for equal height + CTA pinned to bottom */
    .prc-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      padding: 36px 28px;
      position: relative;
      transition: all .5s cubic-bezier(.16, 1, .3, 1);
      overflow: hidden;
      display: flex;
      flex-direction: column
    }

    .prc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      background: radial-gradient(circle at 50% 0%, rgba(200, 153, 62, .08), transparent 60%);
      transition: opacity .5s;
      pointer-events: none
    }

    .prc-card:hover::before {
      opacity: 1
    }

    .prc-card:hover {
      transform: translateY(-8px);
      border-color: rgba(200, 153, 62, .2)
    }

    .prc-card.featured {
      background: rgba(200, 153, 62, .06);
      border-color: rgba(200, 153, 62, .3);
      box-shadow: 0 0 60px rgba(200, 153, 62, .1)
    }

    .prc-card.featured:hover {
      transform: translateY(-8px)
    }

    .prc-badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--white);
      padding: 6px 24px;
      border-radius: 0 0 12px 12px;
      font-size: .68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      z-index: 2
    }

    .prc-head {
      text-align: center;
      margin-bottom: 24px
    }

    .prc-head h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
      margin-bottom: 14px
    }

    .prc-amt {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 8px
    }

    .prc-old {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .35);
      text-decoration: line-through
    }

    .prc-cur {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .prc-per {
      font-size: .82rem;
      color: rgba(255, 255, 255, .4);
      text-align: center;
      margin-top: 2px
    }

    .prc-desc {
      text-align: center;
      font-size: .78rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 6px;
      line-height: 1.4
    }

    .prc-div {
      height: 1px;
      background: rgba(255, 255, 255, .08);
      margin: 24px 0
    }

    .prc-feat {
      list-style: none;
      margin-bottom: auto;
      padding-bottom: 24px
    }

    .prc-feat li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 7px 0;
      color: rgba(255, 255, 255, .7);
      font-size: .85rem;
      line-height: 1.5
    }

    .prc-feat li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: rgba(46, 125, 79, .15);
      color: var(--green);
      font-size: .6rem;
      font-weight: 800;
      margin-top: 2px
    }

    .prc-card-footer {
      margin-top: auto
    }

    .prc-card .btn-primary {
      width: 100%;
      justify-content: center;
      font-size: .9rem;
      padding: 14px 24px
    }

    .prc-card .prc-rights {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: .68rem;
      color: rgba(255, 255, 255, .4);
      text-align: center;
      margin-top: 12px
    }

    .prc-card .prc-rights svg {
      width: 14px;
      height: 14px;
      color: var(--green);
      flex-shrink: 0
    }

    .prc-tagline {
      font-size: .75rem;
      color: rgba(255, 255, 255, .3);
      text-align: center;
      margin-bottom: 16px;
      font-style: italic
    }

    /* Divider between tiers */
    .prc-divider {
      text-align: center;
      margin: 72px 0 0;
      position: relative;
      z-index: 1
    }

    .prc-divider-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 153, 62, .3), transparent);
      margin-bottom: 40px
    }

    .prc-divider h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 700;
      color: white;
      margin-bottom: 10px
    }

    .prc-divider p {
      color: rgba(255, 255, 255, .45);
      font-size: .95rem;
      margin-bottom: 8px
    }

    /* Decision helper */
    .prc-helper {
      position: relative;
      background: linear-gradient(135deg, rgba(200, 153, 62, .08) 0%, rgba(255, 255, 255, .04) 50%, rgba(200, 153, 62, .06) 100%);
      border: 1px solid rgba(200, 153, 62, .18);
      border-radius: 16px;
      padding: 40px 36px;
      max-width: 900px;
      margin: 72px auto 0;
      overflow: hidden;
      z-index: 1
    }

    .prc-helper::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 153, 62, .1), transparent 70%);
      pointer-events: none
    }

    .prc-helper h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: white;
      text-align: center;
      margin-bottom: 6px
    }

    .prc-helper-sub {
      text-align: center;
      font-size: .8rem;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 28px
    }

    .prc-helper-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .prc-helper-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 12px;
      transition: border-color .3s
    }

    .prc-helper-item:hover {
      border-color: rgba(200, 153, 62, .25)
    }

    .prc-helper-item.highlight {
      background: rgba(200, 153, 62, .05);
      border-color: rgba(200, 153, 62, .2)
    }

    .prc-helper-item .phi-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 1px
    }

    .prc-helper-item .phi-name {
      font-size: .85rem;
      color: white;
      font-weight: 700;
      margin-bottom: 3px
    }

    .prc-helper-item .phi-price {
      color: rgba(255, 255, 255, .3);
      font-weight: 500;
      font-size: .72rem
    }

    .prc-helper-item .phi-desc {
      font-size: .75rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.5
    }

    /* OFFER BAND */
    .offer-band {
      padding: 0;
      position: relative;
      overflow: hidden;
      background: #0F0E0B;
      color: white
    }

    .offer-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(200, 153, 62, .08), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(184, 92, 58, .06), transparent 60%);
      pointer-events: none
    }

    .offer-band::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23C8993E' stroke-width='.3' opacity='.04'/%3E%3C/svg%3E");
      pointer-events: none
    }

    .offer-top {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 24px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
      background-size: 200% 100%;
      animation: shimmer-bar 3s ease infinite;
      text-align: center
    }

    @keyframes shimmer-bar {

      0%,
      100% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }
    }

    .offer-top span {
      font-size: .85rem;
      font-weight: 700;
      color: white
    }

    .offer-top .ot-expiry {
      font-weight: 400;
      opacity: .85
    }

    .offer-inner-wrap {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 0;
      max-width: 1100px;
      margin: 0 auto;
      min-height: 420px;
      position: relative;
      z-index: 2
    }

    /* Left panel */
    .offer-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px 36px;
      background: linear-gradient(135deg, rgba(200, 153, 62, .12), rgba(200, 153, 62, .04));
      border-right: 1px solid rgba(200, 153, 62, .1);
      position: relative
    }

    .offer-left::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(200, 153, 62, .06), transparent 70%)
    }

    .offer-discount {
      position: relative;
      z-index: 2;
      text-align: center
    }

    .offer-pct {
      font-family: 'Playfair Display', serif;
      font-size: 7rem;
      font-weight: 800;
      line-height: .85;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), #E8C97A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 4px 24px rgba(200, 153, 62, .3))
    }

    .offer-pct-label {
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: .15em;
      margin-top: 4px
    }

    .offer-pct-off {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1
    }

    .offer-left-sub {
      font-size: .78rem;
      color: rgba(255, 255, 255, .35);
      margin-top: 16px;
      text-align: center;
      line-height: 1.5;
      max-width: 200px
    }

    .offer-left-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(200, 153, 62, .2);
      border-radius: 100px;
      padding: 6px 14px;
      margin-top: 16px;
      font-size: .7rem;
      font-weight: 700;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: .08em
    }

    .offer-left-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse-dot 2s infinite
    }

    /* Right panel */
    .offer-right {
      padding: 48px 48px 48px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .offer-right .offer-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 153, 62, .12);
      color: var(--gold-light);
      font-size: .72rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: .1em;
      border: 1px solid rgba(200, 153, 62, .15);
      width: fit-content
    }

    .offer-right h2 {
      color: white;
      margin-bottom: 12px;
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      line-height: 1.25
    }

    .offer-right h2 em {
      color: var(--gold-light);
      font-style: italic
    }

    .offer-right .or-sub {
      color: rgba(255, 255, 255, .55);
      font-size: .95rem;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 480px
    }

    /* Countdown inline */
    .offer-countdown {
      display: flex;
      gap: 10px;
      margin-bottom: 28px
    }

    .offer-cd-block {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(200, 153, 62, .15);
      border-radius: 10px;
      padding: 12px 14px;
      min-width: 64px;
      text-align: center
    }

    .offer-cd-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1
    }

    .offer-cd-label {
      font-size: .58rem;
      color: rgba(255, 255, 255, .35);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-top: 4px
    }

    /* Dual CTA */
    .offer-dual-cta {
      display: flex;
      gap: 14px;
      margin-bottom: 24px;
      flex-wrap: wrap
    }

    .offer-dual-cta .btn-primary {
      padding: 16px 32px;
      font-size: .95rem;
      box-shadow: 0 6px 24px rgba(200, 153, 62, .35)
    }

    .offer-dual-cta .btn-phone {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, .06);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      padding: 16px 28px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      text-decoration: none;
      transition: all .3s ease
    }

    .offer-dual-cta .btn-phone:hover {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(200, 153, 62, .3)
    }

    .offer-dual-cta .btn-phone .bp-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
      animation: ring-pulse 2s ease infinite
    }

    @keyframes ring-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 79, .4)
      }

      50% {
        box-shadow: 0 0 0 8px rgba(46, 125, 79, 0)
      }
    }

    .offer-dual-cta .btn-phone .bp-number {
      font-size: 1rem;
      font-weight: 700;
      color: white
    }

    /* Terms row */
    .offer-terms-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap
    }

    .offer-terms-row span {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .72rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.4
    }

    .offer-terms-row strong {
      color: var(--gold-light)
    }

    @media(max-width:900px) {
      .offer-inner-wrap {
        grid-template-columns: 1fr
      }

      .offer-left {
        padding: 36px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(200, 153, 62, .1)
      }

      .offer-pct {
        font-size: 5rem
      }

      .offer-pct-off {
        font-size: 2.5rem
      }

      .offer-right {
        padding: 36px 24px;
        text-align: center
      }

      .offer-right .offer-badge {
        margin-left: auto;
        margin-right: auto
      }

      .offer-countdown {
        justify-content: center
      }

      .offer-dual-cta {
        justify-content: center
      }

      .offer-terms-row {
        justify-content: center;
        text-align: center
      }
    }

    /* FAQ */
    .faq {
      padding: 100px 0;
      background: var(--cream)
    }

    .faq-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 760px;
      margin: 0 auto
    }

    .faq-item {
      background: var(--white);
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, .05);
      overflow: hidden;
      transition: all .3s ease
    }

    .faq-item:hover {
      border-color: rgba(200, 153, 62, .2)
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      font-weight: 600;
      font-size: .95rem;
      color: var(--ink);
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: 'DM Sans', sans-serif
    }

    .faq-question:hover {
      color: var(--gold-dark)
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: rgba(200, 153, 62, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--gold-dark);
      transition: transform .3s ease
    }

    .faq-item.active .faq-toggle {
      transform: rotate(45deg)
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease
    }

    .faq-item.active .faq-answer {
      max-height: 300px
    }

    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: .9rem;
      color: var(--warm-gray);
      line-height: 1.7
    }

    /* FINAL PITCH */
    .final-pitch {
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: var(--ink)
    }

    .final-pitch::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 153, 62, .12), transparent 60%);
      pointer-events: none
    }

    .final-inner {
      position: relative;
      z-index: 2;
      max-width: 640px;
      margin: 0 auto
    }

    .final-pitch .section-label {
      color: var(--gold-light)
    }

    .final-pitch h2 {
      margin-bottom: 18px;
      color: var(--cream)
    }

    .final-pitch h2 em {
      color: var(--gold-light);
      font-style: italic
    }

    .final-pitch .final-sub {
      font-size: 1.05rem;
      color: rgba(250, 247, 242, .55);
      line-height: 1.7;
      margin-bottom: 36px
    }

    .final-ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap
    }

    .final-ctas .btn-primary {
      padding: 18px 40px;
      font-size: 1.05rem;
      box-shadow: 0 6px 28px rgba(200, 153, 62, .35)
    }

    .final-ctas .btn-call {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, .06);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      padding: 18px 28px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      text-decoration: none;
      transition: all .3s
    }

    .final-ctas .btn-call:hover {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(200, 153, 62, .3)
    }

    .final-ctas .btn-call .fc-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      flex-shrink: 0
    }

    .final-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 28px;
      flex-wrap: wrap
    }

    .final-trust span {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: rgba(250, 247, 242, .4);
      font-weight: 500
    }

    @media(max-width:768px) {
      .final-pitch {
        padding: 64px 0
      }

      .final-ctas {
        flex-direction: column;
        gap: 12px
      }

      .final-ctas .btn-primary,
      .final-ctas .btn-call {
        width: 100%;
        justify-content: center
      }

      .final-trust {
        gap: 16px
      }
    }

    /* FOOTER */
    .footer {
      padding: 0;
      background: var(--ink);
      color: rgba(250, 247, 242, .5);
      font-size: .85rem;
      border-top: 1px solid rgba(200, 153, 62, .12)
    }

    .footer-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px 0;
      gap: 20px;
      flex-wrap: wrap
    }

    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .footer-brand-logo .fb-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: .9rem;
      color: white
    }

    .footer-brand-logo .fb-name {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--cream)
    }

    .footer-contact {
      display: flex;
      align-items: center;
      gap: 20px
    }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(250, 247, 242, .45);
      text-decoration: none;
      font-size: .84rem;
      transition: color .2s
    }

    .footer-contact a:hover {
      color: var(--gold)
    }

    .footer-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
      flex-wrap: wrap;
      gap: 12px
    }

    .footer-bar-left {
      font-size: .75rem;
      color: rgba(250, 247, 242, .25)
    }

    .footer-bar-left a {
      color: rgba(250, 247, 242, .3);
      text-decoration: none;
      transition: color .2s
    }

    .footer-bar-left a:hover {
      color: var(--gold)
    }

    .footer-badges {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .footer-badge {
      padding: 4px 10px;
      border-radius: 4px;
      font-size: .68rem;
      border: 1px solid rgba(200, 153, 62, .15);
      color: var(--gold-light);
      font-weight: 600;
      letter-spacing: .02em
    }

    @media(max-width:768px) {
      .footer-main {
        flex-direction: column;
        text-align: center
      }

      .footer-contact {
        flex-direction: column;
        gap: 12px
      }

      .footer-bar {
        flex-direction: column;
        text-align: center
      }
    }

    /* SERVICE PILLS */
    .svc-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px
    }

    .svc-pill {
      display: inline-flex;
      align-items: center;
      padding: 7px 14px;
      border: 1.5px solid var(--light-gray);
      border-radius: 100px;
      cursor: pointer;
      font-size: .78rem;
      font-weight: 600;
      color: var(--charcoal);
      transition: all .2s;
      background: var(--cream);
      user-select: none;
      white-space: nowrap
    }

    .svc-pill:hover {
      border-color: var(--gold);
      color: var(--gold-dark)
    }

    .svc-pill input {
      display: none
    }

    .svc-pill:has(input:checked) {
      background: var(--gold);
      border-color: var(--gold);
      color: white
    }

    /* PLAN MODAL */
    .plan-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0, 0, 0, .6);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s
    }

    .plan-modal-overlay.active {
      opacity: 1;
      pointer-events: auto
    }

    .plan-modal {
      background: var(--white);
      border-radius: 16px;
      max-width: 480px;
      width: 100%;
      padding: 0;
      position: relative;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
      overflow: hidden;
      transform: translateY(20px);
      transition: transform .3s
    }

    .plan-modal-overlay.active .plan-modal {
      transform: translateY(0)
    }

    .plan-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: var(--cream);
      color: var(--charcoal);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      z-index: 3
    }

    .plan-modal-close:hover {
      background: var(--light-gray)
    }

    .plan-modal-header {
      padding: 32px 32px 0;
      text-align: center
    }

    .plan-modal-plan {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 153, 62, .1);
      border: 1px solid rgba(200, 153, 62, .2);
      padding: 6px 16px;
      border-radius: 60px;
      font-size: .72rem;
      font-weight: 700;
      color: var(--gold-dark);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 12px
    }

    .plan-modal-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px
    }

    .plan-modal-header p {
      font-size: .85rem;
      color: var(--warm-gray);
      line-height: 1.5
    }

    .plan-modal-body {
      padding: 24px 32px 32px
    }

    .plan-modal-body .form-group {
      margin-bottom: 14px
    }

    .plan-modal-body .form-group label {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 5px
    }

    .plan-modal-body .form-group input,
    .plan-modal-body .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      font-size: .92rem;
      border: 1.5px solid var(--light-gray);
      border-radius: var(--radius);
      background: var(--cream);
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      transition: all .2s
    }

    .plan-modal-body .form-group input:focus,
    .plan-modal-body .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200, 153, 62, .12)
    }

    .plan-modal-body .form-group textarea {
      resize: vertical;
      min-height: 72px
    }

    .plan-modal-body .form-group input::placeholder,
    .plan-modal-body .form-group textarea::placeholder {
      color: var(--warm-gray)
    }

    .plan-modal-submit {
      width: 100%;
      padding: 15px;
      background: var(--gold);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all .3s ease;
      box-shadow: 0 4px 16px rgba(200, 153, 62, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px
    }

    .plan-modal-submit:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200, 153, 62, .4)
    }

    .plan-modal-submit::after {
      content: '→';
      transition: transform .3s
    }

    .plan-modal-submit:hover::after {
      transform: translateX(4px)
    }

    .plan-modal-privacy {
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
      margin-top: 12px;
      font-size: .75rem;
      color: var(--warm-gray)
    }

    @media(max-width:480px) {
      .plan-modal {
        max-width: 100%;
        border-radius: 12px
      }

      .plan-modal-header,
      .plan-modal-body {
        padding-left: 20px;
        padding-right: 20px
      }
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-content {
      animation: fadeInUp .8s ease-out
    }

    .hero-form-wrapper {
      animation: fadeInUp .8s ease-out .15s both
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
      will-change: opacity, transform
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .hero-content {
        text-align: center
      }

      .hero-content::before {
        display: none
      }

      .hero-deco {
        display: none
      }

      .hero-sub {
        margin: 0 auto 12px
      }

      .hero-benefits {
        align-items: center
      }

      .hero-ctas {
        justify-content: center
      }

      .hero-trust-bar {
        justify-content: center
      }

      .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto
      }

      .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
      }

      .process-grid::before {
        display: none
      }

      .offer-countdown {
        gap: 12px
      }

      .offer-terms-grid {
        grid-template-columns: 1fr
      }

      .prc-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 680px;
        margin-left: auto;
        margin-right: auto
      }

      .prc-card.featured {
        box-shadow: 0 0 40px rgba(200, 153, 62, .08)
      }

      .prc-helper-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:768px) {
      .nav-links {
        display: none
      }

      .nav-cta-desktop {
        display: none
      }

      .nav-cta-mobile {
        display: inline-flex
      }

      .hero {
        padding-top: 70px
      }

      .hero-grid {
        padding: 24px 0 40px
      }

      .services-grid {
        grid-template-columns: 1fr
      }

      .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
      }

      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .final-ctas {
        flex-direction: column
      }

      .what-next {
        flex-direction: column;
        gap: 8px
      }

      .offer-contact-row {
        flex-direction: column;
        align-items: center
      }

      .trust-diffs {
        grid-template-columns: 1fr 1fr
      }

      .prc-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto
      }

      .prc-helper {
        padding: 28px 20px;
        margin-top: 48px
      }

      .prc-helper-grid {
        grid-template-columns: 1fr
      }

      .pricing {
        padding: 64px 0
      }

      .prc-divider {
        margin-top: 48px
      }
    }

    @media(max-width:480px) {
      .process-grid {
        grid-template-columns: 1fr
      }

      .proof-stats {
        grid-template-columns: repeat(2, 1fr)
      }

      .hero-trust-bar {
        flex-direction: column;
        gap: 12px
      }

      .platform-logos {
        gap: 16px
      }

      .prc-card {
        padding: 28px 20px
      }

      .prc-helper-item {
        padding: 12px
      }

      .pricing-intro {
        margin-bottom: 36px
      }

      .trust-diffs {
        grid-template-columns: 1fr
      }
    }
a.nav-logo img {
    max-width: 180px;
}
a.footer-brand-logo img {
    filter: invert(1) brightness(100);
    max-width: 225px;
}
.platform-logos img {
    max-width: 105px;
}
#chat-toast {
    position: fixed;
    bottom: 10px;
    left: 15px;
    right: 15px;
    max-width: 380px;
    margin: auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 12px;
    display: none;
    z-index: 999999;
    font-family: Arial;
}
.toast-wrapper{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

#toast-avatar{
  max-width:40px;
  height:30px;
}

.toast-agent{
  font-weight:600;
  font-size:14px;
  margin-bottom:3px;
  color: #000;
}

.toast-message{
  font-size:13px;
  color:#555;
  margin-bottom:8px;
}

.toast-actions{
  display:flex;
  gap:8px;
}

.toast-actions button {
    border: none;
    padding: 4px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
#toast-dismiss {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

#toast-reply{
  background:#128366;
  color:white;
}

#chat-toast.show{
  display:block;
  animation:toastSlide .35s ease;
}

@keyframes toastSlide{
  from{opacity:0;transform:translateY(30px);}
  to{opacity:1;transform:translateY(0);}
}