.elementor-16299 .elementor-element.elementor-element-632e834e{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-16299 .elementor-element.elementor-element-6cd3d25 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-6cd3d25 */:root {
      --pink: #db235a;
      --pink-dark: #b81e4c;
      --pink-soft: #f5d9e4;
      --pink-pale: #fdf0f4;
      --teal: #2ea5ae;
      --teal-dark: #247f87;
      --teal-soft: #d6eae8;
      --teal-pale: #eef7f7;
      --white: #ffffff;
      --black: #0f0f0f;
      --ink: #1a1a1a;
      --ink-soft: #4a4a4a;
      --ink-mute: #888;
      --line: rgba(0, 0, 0, 0.1);
      --line-strong: rgba(0, 0, 0, 0.18);
      --font-display: "Playfair Display", Georgia, serif;
      --font-body: "DM Sans", system-ui, sans-serif;
      --max-w: 1200px;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --radius-pill: 999px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
      --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
      --shadow-xl: 0 28px 70px rgba(0, 0, 0, 0.16);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--ink);
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    /* TYPOGRAPHY */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

    h1 {
      font-size: clamp(2.4rem, 6vw, 4.4rem);
      font-weight: 900;
    }

    h2 {
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      font-weight: 700;
    }

    h3 {
      font-size: clamp(1.3rem, 2.4vw, 1.9rem);
      font-weight: 700;
    }

    h4 {
      font-size: 1.1rem;
      font-weight: 600;
      font-family: var(--font-body);
    }

    .eyebrow {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--teal);
      flex-shrink: 0;
    }

    .eyebrow.center {
      justify-content: center;
    }

    .eyebrow.pink {
      color: var(--pink);
    }

    .eyebrow.pink::before {
      background: var(--pink);
    }

    .eyebrow.on-dark {
      color: var(--teal-soft);
    }

    .eyebrow.on-dark::before {
      background: var(--teal-soft);
    }

    .lead {
      font-size: clamp(1.05rem, 1.5vw, 1.2rem);
      line-height: 1.65;
      color: var(--ink-soft);
      max-width: 58ch;
    }

    /* LAYOUT */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
      position: relative;
      z-index: 2;
    }

    section {
      position: relative;
      padding: clamp(60px, 9vw, 110px) 0;
    }
    
    

    /* ANNOUNCE BAR */
    .announce {
      background: var(--ink);
      color: var(--white);
      padding: 11px 0;
      text-align: center;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      position: relative;
      z-index: 100;
      border-bottom: 3px solid var(--pink);
    }

    .announce strong {
      color: var(--pink);
      font-weight: 700;
    }

    .announce .teal-accent {
      color: #5ecfd6;
      font-weight: 600;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      z-index: 99;
      padding: 14px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 52px;
      width: auto;
      display: block;
    }

    .header-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 0.85rem;
      color: var(--ink-soft);
    }

    .header-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 14px;
      border: 1.5px solid var(--line-strong);
      border-radius: var(--radius-pill);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .header-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
    }

    @media (max-width: 680px) {
      .header-meta {
        display: none;
      }
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 30px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: var(--radius-pill);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.22s ease;
      text-align: center;
      line-height: 1.2;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--pink);
      color: var(--white);
      box-shadow: 0 6px 22px rgba(219, 35, 90, 0.3);
    }

    .btn-primary:hover {
      background: var(--pink-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(219, 35, 90, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn-secondary:hover {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    .btn-teal {
      background: var(--teal);
      color: var(--white);
      box-shadow: 0 6px 22px rgba(46, 165, 174, 0.28);
    }

    .btn-teal:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(46, 165, 174, 0.38);
    }

    .btn-large {
      padding: 20px 40px;
      font-size: 1.05rem;
    }

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

    .btn .arrow {
      transition: transform 0.2s;
    }

    .btn:hover .arrow {
      transform: translateX(5px);
    }

    /* HERO */
    .hero {
      padding: clamp(50px, 8vw, 90px) 0 clamp(60px, 9vw, 100px);
      background: var(--white);
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: -180px;
      right: -220px;
      width: 640px;
      height: 640px;
      background: radial-gradient(circle, rgba(214, 234, 232, 0.6), transparent 68%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 64px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }
    }

    .hero-eyebrow {
      margin-bottom: 1.4rem;
    }

    .hero h1 {
      margin-bottom: 1.3rem;
    }

    .hero h1 .highlight {
      font-style: italic;
      font-weight: 700;
      color: var(--pink);
    }

    .hero h1 .underline-wrap {
      position: relative;
      display: inline-block;
    }

    .hero h1 .underline-wrap::after {
      content: "";
      position: absolute;
      bottom: 3px;
      left: 0;
      right: 0;
      height: 9px;
      background: var(--teal-soft);
      z-index: -1;
      border-radius: 4px;
    }

    .hero-sub {
      margin-bottom: 2rem;
      max-width: 54ch;
    }

    .hero-cta-row {
      display: flex;
      gap: 14px;
      margin-bottom: 2.4rem;
      flex-wrap: wrap;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 26px;
      padding-top: 1.6rem;
      border-top: 1px solid var(--line);
      font-size: 0.87rem;
      color: var(--ink-soft);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .trust-item::before {
      content: "✓";
      color: var(--teal);
      font-weight: 700;
      font-size: 0.9rem;
    }

    .hero-visual {
      position: relative;
    }

    .hero-image-wrap {
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      background: var(--teal-soft);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-image-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      gap: 16px;
      color: var(--teal-dark);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-align: center;
      padding: 40px;
    }

    .hero-image-placeholder svg {
      opacity: 0.4;
      width: 60px;
      height: 60px;
    }

    .hero-badge {
      position: absolute;
      background: var(--white);
      padding: 16px 20px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 3;
    }

    .hero-badge.badge-1 {
      top: 28px;
      left: -18px;
      transform: rotate(-3deg);
    }

    .hero-badge.badge-2 {
      bottom: 32px;
      right: -22px;
      transform: rotate(2deg);
      background: var(--ink);
      color: var(--white);
    }

    .hero-badge .num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
      color: var(--pink);
      font-style: italic;
    }

    .hero-badge.badge-2 .num {
      color: var(--teal-soft);
    }

    .hero-badge .lbl {
      font-size: 0.72rem;
      line-height: 1.25;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ink-soft);
    }

    .hero-badge.badge-2 .lbl {
      color: rgba(214, 234, 232, 0.8);
    }

    @media (max-width: 600px) {
      .hero-badge.badge-1 {
        left: 10px;
        top: 10px;
        padding: 10px 14px;
      }

      .hero-badge.badge-2 {
        right: 10px;
        bottom: 10px;
        padding: 10px 14px;
      }

      .hero-badge .num {
        font-size: 1.5rem;
      }
    }

    /* VALUE BREAKDOWN &middot; moved up */
    .value-breakdown {
      background: var(--teal-soft);
      position: relative;
      overflow: hidden;
    }

    .value-breakdown::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -120px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(46, 165, 174, 0.18), transparent 70%);
      border-radius: 50%;
    }

    .value-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .value-intro h2 {
      margin-bottom: 1rem;
    }

    .value-card {
      max-width: 800px;
      margin: 0 auto;
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .value-card-header {
      background: var(--ink);
      color: var(--white);
      padding: 28px 36px;
      text-align: center;
    }

    .value-card-header h3 {
      color: var(--white);
      margin-bottom: 4px;
    }

    .value-card-header p {
      color: rgba(214, 234, 232, 0.75);
      font-size: 0.9rem;
    }

    .value-list {
      list-style: none;
      padding: 28px 36px;
      display: grid;
      gap: 14px;
    }

    .value-list li {
      display: grid;
      grid-template-columns: 22px 1fr auto;
      gap: 14px;
      align-items: baseline;
      font-size: 0.95rem;
      padding-bottom: 14px;
      border-bottom: 1px dotted var(--line);
    }

    .value-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .value-check {
      color: var(--teal);
      font-size: 1.1rem;
      line-height: 1;
    }

    .value-desc strong {
      display: block;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .value-desc span {
      font-size: 0.82rem;
      color: var(--ink-mute);
    }

    .value-price {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--ink-mute);
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .value-total-row {
      background: var(--teal-soft);
      margin: 0 36px 28px;
      padding: 18px 22px;
      border-radius: var(--radius-md);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .value-total-row span {
      font-size: 0.9rem;
      color: var(--ink-soft);
      font-weight: 500;
    }

    .value-total-row strong {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--teal-dark);
    }

    /* PROBLEM */
    .problem {
      background: var(--white);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .problem-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .problem-list li {
      background: var(--pink-pale);
      padding: 16px 20px;
      border-radius: var(--radius-md);
      border-left: 3px solid var(--pink);
      display: flex;
      align-items: flex-start;
      gap: 13px;
      font-size: 1rem;
      color: var(--ink);
      line-height: 1.5;
    }

    .problem-list li .icon {
      color: var(--pink);
      flex-shrink: 0;
      margin-top: 2px;
      font-size: 1.1rem;
    }

    .problem-pull {
      margin-top: 32px;
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 1.8vw, 1.4rem);
      font-style: italic;
      line-height: 1.4;
      color: var(--ink);
      padding-left: 22px;
      border-left: 2px solid var(--pink);
    }

    /* SOLUTION */
    .solution {
      background: var(--ink);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .solution::before {
      content: "";
      position: absolute;
      top: -80px;
      left: -80px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(214, 234, 232, 0.14), transparent 70%);
      border-radius: 50%;
    }

    .solution h2 {
      color: var(--white);
    }

    .solution h2 em {
      color: var(--teal-soft);
      font-style: italic;
      font-weight: 700;
    }

    .solution .lead {
      color: rgba(255, 255, 255, 0.7);
    }

    .solution-intro {
      max-width: 680px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .solution-intro h2 {
      margin-bottom: 1.2rem;
    }

    .modules-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 44px;
    }

    @media (max-width: 900px) {
      .modules-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .modules-grid {
        grid-template-columns: 1fr;
      }
    }

    .module-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      padding: 24px;
      transition: all 0.28s;
    }

    .module-card:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(214, 234, 232, 0.35);
      transform: translateY(-3px);
    }

    .module-num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal-soft);
      margin-bottom: 10px;
      display: block;
    }

    .module-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .module-desc {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.58);
      line-height: 1.5;
    }

    /* BENEFITS */
    .benefits {
      background: var(--pink-pale);
    }

    .benefits-header {
      max-width: 640px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .benefits-header h2 {
      margin-bottom: 1rem;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    @media (max-width: 780px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }
    }

    .benefit-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 34px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .benefit-icon {
      width: 54px;
      height: 54px;
      background: var(--pink);
      color: var(--white);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 900;
      font-style: italic;
    }

    .benefit-card h3 {
      font-size: 1.3rem;
      margin-bottom: 2px;
    }

    .benefit-card p {
      color: var(--ink-soft);
      font-size: 0.97rem;
      line-height: 1.6;
    }

    /* ABOUT */
    .about {
      background: var(--teal-soft);
      position: relative;
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }
    }

    .about-image {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: rgba(46, 165, 174, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      color: var(--teal-dark);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-align: center;
      padding: 40px;
      opacity: 0.7;
    }

    .about-stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 32px;
      border-top: 1px solid rgba(46, 165, 174, 0.3);
      padding-top: 24px;
    }

    .about-stat .num {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--pink);
      font-style: italic;
      line-height: 1;
      display: block;
      margin-bottom: 5px;
    }

    .about-stat .lbl {
      font-size: 0.8rem;
      color: var(--teal-dark);
      letter-spacing: 0.03em;
      font-weight: 500;
    }

    .credentials-list {
      list-style: none;
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .credentials-list li {
      background: var(--white);
      border: 1px solid rgba(46, 165, 174, 0.3);
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--teal-dark);
    }

    /* FEATURES CAROUSEL */
    .features {
      background: var(--white);
      padding: 50px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

    .features-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 28px;
    }

    .carousel-track-wrap {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      gap: 48px;
      animation: scrollCarousel 22s linear infinite;
      width: max-content;
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    .carousel-item {
      font-family: var(--font-display);
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      font-weight: 700;
      color: var(--ink);
      opacity: 0.55;
      white-space: nowrap;
      transition: opacity 0.2s;
      letter-spacing: -0.01em;
      cursor: default;
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .carousel-item:hover {
      opacity: 1;
    }

    .carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--pink);
      opacity: 0.5;
      display: inline-block;
    }

    @keyframes scrollCarousel {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--white);
    }

    .testimonials-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .testimonials-header h2 {
      margin-bottom: 1rem;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 48px;
    }

    @media (max-width: 900px) {
      .testimonial-grid {
        grid-template-columns: 1fr;
      }
    }

    .testimonial-card {
      background: var(--teal-pale);
      border-radius: var(--radius-lg);
      padding: 30px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      border: 1px solid rgba(46, 165, 174, 0.15);
    }

    .testimonial-card::before {
      content: "C";
      position: absolute;
      top: 6px;
      left: 22px;
      font-family: var(--font-display);
      font-size: 5rem;
      color: var(--teal);
      opacity: 0.14;
      line-height: 1;
      font-style: italic;
    }

    .testimonial-card.placeholder {
      background: var(--pink-pale);
      border-color: rgba(219, 35, 90, 0.12);
      min-height: 200px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .testimonial-card.placeholder::before {
      display: none;
    }

    .placeholder-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color: var(--pink);
      opacity: 0.55;
    }

    .placeholder-inner svg {
      width: 36px;
      height: 36px;
    }

    .placeholder-inner span {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .stars {
      display: flex;
      gap: 2px;
      color: var(--pink);
      font-size: 0.95rem;
    }

    .testimonial-quote {
      font-size: 0.97rem;
      line-height: 1.65;
      color: var(--ink);
      flex-grow: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid rgba(46, 165, 174, 0.2);
      padding-top: 16px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--white);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--ink);
      display: block;
    }

    .author-meta {
      font-size: 0.76rem;
      color: var(--ink-mute);
    }

    /* VIDEO REVIEW PLACEHOLDER */
    .video-review-placeholder {
      max-width: 700px;
      margin: 0 auto;
      background: var(--ink);
      border-radius: var(--radius-lg);
      aspect-ratio: 16/9;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .video-review-placeholder::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(219, 35, 90, 0.15), rgba(46, 165, 174, 0.15));
    }

    .play-btn {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--pink);
      display: grid;
      place-items: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 8px 24px rgba(219, 35, 90, 0.4);
    }

    .play-btn svg {
      width: 28px;
      height: 28px;
    }

    .video-label {
      position: relative;
      z-index: 1;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.65;
    }

    /* PRICING */
    .pricing {
      background: var(--ink);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .pricing::before {
      content: "";
      position: absolute;
      bottom: -140px;
      right: -140px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(219, 35, 90, 0.2), transparent 70%);
      border-radius: 50%;
    }

    .pricing-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 52px;
    }

    .pricing-intro h2 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .pricing-intro h2 em {
      color: var(--teal-soft);
      font-style: italic;
    }

    .pricing-intro .lead {
      color: rgba(255, 255, 255, 0.65);
      margin: 0 auto;
    }

    .pricing-card {
      max-width: 760px;
      margin: 0 auto;
      background: var(--white);
      color: var(--ink);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      position: relative;
      z-index: 2;
    }

    .pricing-card-header {
      padding: 34px 40px 26px;
      text-align: center;
      border-bottom: 1px dashed var(--line-strong);
      background: var(--pink-pale);
    }

    .pricing-card-name {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .pricing-card-name em {
      font-style: italic;
      color: var(--pink);
      font-weight: 700;
    }

    .pricing-card-sub {
      font-size: 0.84rem;
      color: var(--ink-mute);
      letter-spacing: 0.03em;
    }

    .pricing-card-body {
      padding: 28px 40px 38px;
    }

    .price-display {
      text-align: center;
      margin-bottom: 24px;
    }

    .early-bird-pill {
      display: inline-block;
      background: var(--pink);
      color: var(--white);
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .price-strike {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--ink-mute);
      text-decoration: line-through;
      margin-right: 12px;
      font-style: italic;
    }

    .price-now {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6.5vw, 4.2rem);
      font-weight: 900;
      color: var(--pink);
      line-height: 1;
      display: inline-block;
    }

    .price-meta {
      display: block;
      font-size: 0.83rem;
      color: var(--ink-mute);
      margin-top: 6px;
      letter-spacing: 0.02em;
    }

    .discount-section {
      background: var(--teal-soft);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      margin-bottom: 24px;
      text-align: center;
    }

    .discount-section p {
      font-size: 0.9rem;
      color: var(--teal-dark);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .discount-input-wrap {
      display: flex;
      gap: 10px;
      max-width: 360px;
      margin: 0 auto;
    }

    .discount-input {
      flex: 1;
      padding: 11px 16px;
      border: 2px solid rgba(46, 165, 174, 0.4);
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal-dark);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }

    .discount-input::placeholder {
      color: var(--ink-mute);
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: none;
    }

    .discount-input:focus {
      border-color: var(--teal);
    }

    .discount-apply {
      padding: 11px 20px;
      background: var(--teal);
      color: var(--white);
      border: none;
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .discount-apply:hover {
      background: var(--teal-dark);
    }

    .payment-plan {
      text-align: center;
      font-size: 0.84rem;
      color: var(--ink-soft);
      margin-top: 14px;
    }

    .payment-plan strong {
      color: var(--ink);
    }

    .no-refund-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--ink-mute);
      margin-top: 16px;
      line-height: 1.5;
    }

    /* FAQ */
    .faq {
      background: var(--white);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-header h2 {
      margin-bottom: 0.6rem;
    }

    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: grid;
      gap: 10px;
    }

    .faq-item {
      background: var(--teal-pale);
      border-radius: var(--radius-md);
      border: 1px solid rgba(46, 165, 174, 0.15);
      overflow: hidden;
    }

    .faq-question {
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
      user-select: none;
      transition: background 0.2s;
      gap: 16px;
    }

    .faq-question:hover {
      background: rgba(46, 165, 174, 0.08);
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--teal);
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      transition: transform 0.3s;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 24px;
    }

    .faq-item.open .faq-answer {
      max-height: 400px;
      padding: 0 24px 22px;
    }

    .faq-answer p {
      color: var(--ink-soft);
      line-height: 1.65;
      font-size: 0.95rem;
    }

    /* FINAL CTA */
    .final-cta {
      background: var(--pink);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: "";
      position: absolute;
      top: -160px;
      left: -160px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
      border-radius: 50%;
    }

    .final-cta::after {
      content: "";
      position: absolute;
      bottom: -160px;
      right: -160px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(46, 165, 174, 0.2), transparent 70%);
      border-radius: 50%;
    }

    .final-cta-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .final-cta h2 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .final-cta h2 em {
      font-style: italic;
      color: var(--teal-soft);
    }

    .final-cta p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.1rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .btn-white {
      background: var(--white);
      color: var(--pink);
      font-weight: 700;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .btn-white:hover {
      background: var(--teal-soft);
      color: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }

    .final-micro {
      margin-top: 22px;
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.65);
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.65);
      padding: 40px 0 28px;
      border-top: 3px solid var(--pink);
      font-size: 0.84rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo img {
      height: 36px;
      width: auto;
      opacity: 0.85;
    }

    .footer-text {
      font-size: 0.78rem;
      line-height: 1.6;
      max-width: 44ch;
    }

    .footer-bottom {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      opacity: 0.5;
      font-size: 0.76rem;
    }

    /* DIVIDER */
    .section-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: var(--pink);
      font-style: italic;
      font-family: var(--font-display);
      font-size: 0.9rem;
      margin: 28px auto;
      max-width: 300px;
    }

    .section-divider::before,
    .section-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
    }

    /* ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* MOCKUP BANNER */
    .mockup-banner {
      background: #1a1a1a;
      color: #fff;
      padding: 7px 0;
      font-size: 0.72rem;
      text-align: center;
      letter-spacing: 0.06em;
      font-weight: 500;
      border-bottom: 2px solid var(--teal);
    }

    .mockup-banner span {
      color: var(--teal);
      font-weight: 700;
    }/* End custom CSS */