﻿:root {
      --bg: #FFF8F0;
      --scroll-hue: 195;
      --surface: #ffffff;
      --surface-soft: #f6f1ff;
      --text: #241b38;
      --muted: #6e6681;
      --primary: #6610F2;
      --primary-strong: #4a0db4;
      --secondary: #00A8E8;
      --accent: #FF8811;
      --accent-soft: #F4D06F;
      --line: #eadfce;
      --shadow: 0 20px 45px rgba(56, 29, 106, 0.18);
      --shadow-soft: 0 14px 30px rgba(56, 29, 106, 0.12);
      --radius-lg: 20px;
      --radius-md: 14px;
      --container: 1160px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 74px;
    }
    body {
      margin: 0;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 0%, rgba(146, 218, 255, 0.2) 0, transparent 34%),
        radial-gradient(circle at 92% 10%, rgba(188, 236, 255, 0.24) 0, transparent 32%),
        linear-gradient(
          180deg,
          #f2fbff 0%,
          #ecf8ff 18%,
          #e3f4ff 38%,
          hsl(calc(var(--scroll-hue) + 110) 90% 93%) 58%,
          hsl(calc(var(--scroll-hue) + 180) 92% 92%) 76%,
          hsl(calc(var(--scroll-hue) + 245) 90% 93%) 90%,
          hsl(calc(var(--scroll-hue) + 320) 92% 95%) 100%
        ),
        var(--bg);
      background-size: auto, auto, 300% 300%, auto;
      background-position: 8% 0%, 92% 10%, 0% 50%, 0 0;
      animation: bodyGradientFlow 22s ease infinite;
      line-height: 1.55;
      position: relative;
      overflow-x: hidden;
    }

    .container {
      width: min(var(--container), calc(100% - 2.2rem));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: none;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .nav.scrolled {
      background: rgba(255, 248, 240, 0.7);
      border-bottom-color: rgba(102, 16, 242, 0.18);
      box-shadow: 0 12px 25px rgba(64, 33, 121, 0.12);
      backdrop-filter: blur(10px);
    }

    .nav-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.9rem 0;
      gap: 1rem;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--text);
      line-height: 0;
      flex-shrink: 0;
    }

    .brand img {
      display: block;
      height: 42px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 1.1rem;
      flex-wrap: wrap;
      justify-content: end;
      align-items: center;
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 11px;
      border: 1px solid #d7cbee;
      background: #ffffff;
      color: var(--primary-strong);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 12px rgba(71, 27, 146, 0.14);
      padding: 0;
    }

    .menu-toggle-lines {
      width: 18px;
      display: grid;
      gap: 3px;
    }

    .menu-toggle-lines span {
      display: block;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 600;
      font-size: 0.94rem;
      position: relative;
      transition: color .2s ease;
    }

    .nav-links a:hover {
      color: var(--primary-strong);
    }

    .nav-links a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.24rem;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .nav-links a:not(.btn):hover::after {
      transform: scaleX(1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      border: 0;
      border-radius: 999px;
      padding: 0.76rem 1.2rem;
      text-decoration: none;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 80%);
      transform: translateX(-130%);
      transition: transform .45s ease;
      z-index: -1;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:hover::after {
      transform: translateX(130%);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      box-shadow: 0 12px 24px rgba(102, 16, 242, 0.28);
    }

    .btn-primary:hover { box-shadow: 0 18px 30px rgba(102, 16, 242, 0.35); }

    .nav-links .btn-primary {
      background: #101010;
      color: #ffffff;
      box-shadow: 0 10px 18px rgba(16, 16, 16, 0.28);
    }

    .nav-links .btn-primary:hover {
      background: #000000;
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34);
    }

    .btn-secondary {
      background: #fff;
      color: var(--text);
      border: 1px solid var(--line);
    }

    .hero {
      padding: 4.5rem 0 3.4rem;
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 -25px 0;
      height: 180px;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(255, 248, 240, 0) 0%,
        rgba(102, 16, 242, 0.07) 58%,
        rgba(255, 248, 240, 0) 100%
      );
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
      justify-items: center;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-float-layer {
      display: none;
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .hero-float-item {
      position: absolute;
      opacity: 0.22;
      filter: drop-shadow(0 4px 10px rgba(255, 87, 87, 0.2));
      animation: floatDrift var(--dur, 10s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
      will-change: transform, opacity;
      transform-origin: center;
    }

    .hero-float-item.heart {
      color: var(--accent);
    }

    .hero-float-item.star {
      color: var(--accent-soft);
      filter: drop-shadow(0 4px 10px rgba(244, 208, 111, 0.28));
    }

    .hero-content {
      max-width: 1000px;
      text-align: center;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero-head {
      height: 270px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      display: inline-block;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.7);
      color: var(--primary-strong);
      border: 1px solid rgba(102, 16, 242, 0.26);
      box-shadow: 0 6px 12px rgba(102, 16, 242, 0.14);
      backdrop-filter: blur(2px);
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    h1, h2, h3 {
      font-family: "Sora", sans-serif;
      margin: 0;
      letter-spacing: -0.02em;
      line-height: 1.12;
    }

    h1 {
      margin-top: 0.95rem;
      font-size: clamp(2.15rem, 5vw, 3.5rem);
      max-width: 17ch;
      background: linear-gradient(130deg, var(--text) 0%, var(--primary) 55%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-dynamic {
      transition: opacity .34s ease, transform .34s ease;
      will-change: opacity, transform;
    }

    #heroTitle {
      max-width: 23ch;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0;
    }

    #heroSubtitle {
      margin-top: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: calc(1em * 1.55 * 2);
    }

    .hero-dynamic.is-changing {
      opacity: 0;
      transform: translateY(6px);
    }

    .hero p {
      margin: 0 0 1.7rem;
      max-width: 62ch;
      color: var(--muted);
      font-size: 1.03rem;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      margin-top: 1rem;
      margin-bottom: 1rem;
      justify-content: center;
    }

    .hero-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      margin: 0 0 1rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .hero-rating .stars {
      display: inline-flex;
      align-items: center;
      gap: 0.22rem;
      color: var(--accent);
    }

    .hero-rating .stars i {
      animation: twinkle 2.8s ease-in-out infinite;
    }

    .hero-rating .stars i:nth-child(2) { animation-delay: .2s; }
    .hero-rating .stars i:nth-child(3) { animation-delay: .35s; }
    .hero-rating .stars i:nth-child(4) { animation-delay: .5s; }
    .hero-rating .stars i:nth-child(5) { animation-delay: .65s; }

    .hero-rating strong {
      color: var(--text);
      font-family: "Sora", sans-serif;
      font-size: 0.95rem;
    }

    .spark-row {
      display: flex;
      gap: 0.45rem;
      flex-wrap: wrap;
      margin-bottom: 1.2rem;
      justify-content: center;
    }

    .spark {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.33rem 0.65rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      background: rgba(102, 16, 242, 0.1);
      color: var(--primary-strong);
      border: 1px solid rgba(102, 16, 242, 0.2);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .spark:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(102, 16, 242, 0.16);
    }

    .hero-panel {
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid #d6def0;
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: auto -20% -35% auto;
      width: 270px;
      height: 270px;
      background: radial-gradient(circle, rgba(255, 107, 74, 0.24), transparent 65%);
      pointer-events: none;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      border: 1px solid rgba(255, 255, 255, 0.38);
      mask: linear-gradient(#fff, transparent 70%);
    }

    .panel-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.8rem;
    }

    .panel-title { font-weight: 800; font-family: "Sora", sans-serif; }
    .chip {
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--primary-strong);
      background: rgba(102, 16, 242, 0.12);
      border-radius: 999px;
      padding: 0.25rem 0.58rem;
    }

    .score {
      display: grid;
      gap: 0.55rem;
      margin-bottom: 1rem;
    }

    .bar {
      height: 11px;
      border-radius: 999px;
      background: #e8eefb;
      overflow: hidden;
    }

    .bar > span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
    }

    .panel-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .mini {
      background: var(--surface-soft);
      border: 1px solid #d3def4;
      border-radius: 12px;
      padding: 0.7rem;
    }

    .mini b {
      display: block;
      font-family: "Sora", sans-serif;
      margin-bottom: 0.2rem;
    }

    .mini small { color: var(--muted); }

    .section {
      padding: 3.4rem 0 3.4rem;
    }

    #faq{
      padding-top: 90px;
    }

    .section-head {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0.42rem;
      margin-bottom: 1.4rem;
    }

    .section h2 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); }

    .section-head h2 {
      max-width: 14ch;
    }

    .section p.lead {
      margin: 0;
      color: var(--muted);
      max-width: 64ch;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .benefit-card {
      position: relative;
      border-radius: 14px;
      padding: 1.55rem 1.35rem 1.4rem;
      min-height: 250px;
      border: 1px solid rgba(55, 78, 118, 0.09);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
      box-shadow: 0 10px 20px rgba(18, 38, 80, 0.06);
      overflow: hidden;
    }

    .benefit-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 28px rgba(16, 34, 71, 0.12);
      border-color: rgba(77, 114, 186, 0.22);
    }

    .benefit-card:nth-child(1) { background: #ecf1fb; }
    .benefit-card:nth-child(2) { background: #ecf7f3; }
    .benefit-card:nth-child(3) { background: #f7edf2; }
    .benefit-card:nth-child(4) { background: #f6efeb; }
    .benefit-card:nth-child(5) { background: #efeafb; }
    .benefit-card:nth-child(6) { background: #eaf3f9; }

    .benefit-badge {
      position: absolute;
      right: 1rem;
      top: 0.9rem;
      font-size: 0.7rem;
      font-weight: 800;
      color: #2d3b57;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(112, 127, 170, 0.2);
      padding: 0.33rem 0.58rem;
      border-radius: 999px;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .benefit-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.05rem;
      font-size: 1.35rem;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    }

    .benefit-card:nth-child(1) .benefit-icon {
      color: #2a63c0;
      background: rgba(66, 127, 231, 0.16);
    }

    .benefit-card:nth-child(2) .benefit-icon {
      color: #1aaf8a;
      background: rgba(33, 187, 150, 0.16);
    }

    .benefit-card:nth-child(3) .benefit-icon {
      color: #de4e69;
      background: rgba(233, 93, 125, 0.14);
    }

    .benefit-card:nth-child(4) .benefit-icon {
      color: #e9703f;
      background: rgba(236, 117, 66, 0.14);
    }

    .benefit-card:nth-child(5) .benefit-icon {
      color: #6f4bc9;
      background: rgba(111, 75, 201, 0.14);
    }

    .benefit-card:nth-child(6) .benefit-icon {
      color: #3e9acb;
      background: rgba(73, 170, 214, 0.15);
    }

    .benefit-card h3 {
      margin: 0 0 0.45rem;
      font-size: 1.03rem;
      line-height: 1.25;
      color: #2f3548;
    }

    .benefit-card p {
      margin: 0;
      color: #606f86;
      font-size: 0.94rem;
      max-width: 30ch;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow: 0 8px 18px rgba(25, 48, 97, 0.05);
    }

    .card:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(102, 16, 242, 0.12);
      border-color: #d9c8ff;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 0.45rem;
    }

    .card h3 i {
      color: var(--primary);
      margin-right: 0.35rem;
      font-size: 0.95rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: inline-grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 800;
      margin-bottom: 0.8rem;
      box-shadow: 0 10px 18px rgba(102, 16, 242, 0.28);
    }

    .icon i {
      font-size: 0.95rem;
    }

    .func-slider {
      margin-top: 0;
      position: relative;
    }

    .section-head--func {
      align-items: flex-start;
      text-align: left;
      margin-bottom: 1.15rem;
    }

    .section-head--func h2 {
      max-width: none;
      margin: 0;
    }

    .func-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.4rem 0.82rem;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(22, 29, 50, 0.92), rgba(49, 60, 97, 0.92));
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #f7f9ff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: 0 10px 20px rgba(28, 39, 68, 0.16);
    }

    .func-shell {
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      position: relative;
      overflow: visible;
    }

    .func-slider-controls {
      position: static;
      inset: auto;
      transform: none;
      z-index: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.6rem;
      margin-top: 0.95rem;
      margin-bottom: 0;
      pointer-events: auto;
    }

    .func-nav-btn {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(210, 220, 242, 0.92);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.96);
      color: #263958;
      font-size: 0.92rem;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      backdrop-filter: blur(10px);
      pointer-events: auto;
      box-shadow: 0 12px 24px rgba(23, 39, 71, 0.12);
    }

    #funcPrev {
      transform: none;
    }

    #funcNext {
      transform: none;
    }

    .func-nav-btn:hover {
      transform: translateY(-1px);
      border-color: #b9ccef;
      box-shadow: 0 14px 26px rgba(23, 39, 71, 0.16);
    }

    #funcPrev:hover {
      transform: translateY(-1px);
    }

    #funcNext:hover {
      transform: translateY(-1px);
    }

    .func-slider-viewport {
      overflow: hidden;
      border-radius: 28px;
    }

    .func-slider-track {
      display: flex;
      gap: 1rem;
      will-change: transform;
      transition: transform .5s ease;
      touch-action: pan-y;
    }

    .func-slide {
      min-width: calc(88% - 0.5rem);
      display: grid;
      grid-template-columns: minmax(300px, 1.08fr) minmax(280px, 0.92fr);
      align-items: stretch;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 255, 0.96) 100%);
      box-shadow: 0 18px 34px rgba(7, 15, 31, 0.2);
      overflow: hidden;
    }

    .func-slide-content {
      padding: clamp(1.1rem, 2.2vw, 1.6rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.65rem;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .func-slide-content::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      top: -72px;
      right: -72px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(102, 16, 242, 0.12), rgba(102, 16, 242, 0));
      pointer-events: none;
    }

    .func-slide-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .func-slide-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 44px;
      padding: 0 0.65rem;
      border-radius: 14px;
      background: linear-gradient(135deg, #ff9f43, #ff6f61);
      color: #ffffff;
      font-family: "Sora", sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      box-shadow: 0 10px 24px rgba(255, 111, 97, 0.22);
    }

    .func-slide-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      width: fit-content;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: .04em;
      color: #26446f;
      text-transform: uppercase;
      padding: 0.42rem 0.72rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid #dbe4f5;
    }

    .func-slide h3 {
      margin: 0;
      font-family: "Sora", sans-serif;
      font-size: clamp(1.55rem, 2.5vw, 2.25rem);
      line-height: 1.03;
      color: #252b3f;
      letter-spacing: -0.02em;
      max-width: 12ch;
      position: relative;
      z-index: 1;
    }

    .func-slide p {
      margin: 0;
      max-width: 38ch;
      color: #5c6c84;
      font-size: 0.97rem;
      line-height: 1.55;
      position: relative;
      z-index: 1;
    }

    .func-slide-points {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 0.1rem;
    }

    .func-slide-points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0.42rem 0.72rem;
      border-radius: 999px;
      background: linear-gradient(180deg, #ffffff, #f4f8ff);
      border: 1px solid #dbe3f4;
      color: #3d537d;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .func-slide-link {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      width: fit-content;
      margin-top: 0.25rem;
      padding: 0.7rem 1rem;
      border-radius: 14px;
      text-decoration: none;
      background: linear-gradient(135deg, #651fff, #1da1f2);
      color: #fff;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      box-shadow: 0 12px 24px rgba(101, 31, 255, 0.22);
    }

    .func-slide-link:hover {
      transform: translateY(-1px);
      background: linear-gradient(135deg, #5722d8, #1786cc);
      box-shadow: 0 14px 26px rgba(61, 91, 205, 0.26);
    }

    .func-slide-media {
      position: relative;
      background:
        radial-gradient(circle at 22% 18%, rgba(255, 194, 123, 0.36), transparent 34%),
        radial-gradient(circle at 78% 74%, rgba(77, 169, 255, 0.26), transparent 32%),
        linear-gradient(160deg, #fff8ef 0%, #f4f6ff 52%, #edf5ff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      min-height: 320px;
      overflow: hidden;
    }

    .func-slide-media::before {
      display: none;
    }

    .func-slide-frame {
      width: 100%;
      height: 100%;
      min-height: 320px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      transform: none;
    }

    .func-slide-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      border: 0;
      box-shadow: none;
      display: block;
    }

    .func-slider-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.55rem;
      margin: 0.8rem auto 0;
      padding: 0;
    }

    .func-dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      border: 0;
      padding: 0;
      background: #ffffff;
      cursor: pointer;
      transition: width .25s ease, background .25s ease, transform .2s ease;
    }

    .func-dot.active {
      width: 28px;
      background: linear-gradient(90deg, #ff9f43, #7b61ff);
    }

    .func-dot:hover {
      transform: translateY(-1px);
    }

    .mobile-slider-ui {
      display: none;
    }

    .feature-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .feature-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 0.9rem;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      box-shadow: 0 10px 22px rgba(21, 42, 86, 0.06);
    }

    .feature-item:hover {
      transform: translateY(-3px);
      border-color: #c7d5f8;
      box-shadow: 0 18px 28px rgba(23, 67, 174, 0.14);
    }

    .feature-item h3 {
      font-size: 1rem;
      margin: 0.75rem 0 0.35rem;
    }

    .feature-item p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .feature-image-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #d3def4;
      background: #edf2fb;
    }

    .feature-image {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
      transition: transform .45s ease;
    }

    .feature-item:hover .feature-image {
      transform: scale(1.04);
    }

    .feature-pill {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 0.72rem;
      font-weight: 800;
      color: #f4f8ff;
      padding: 0.28rem 0.58rem;
      border-radius: 999px;
      background: rgba(20, 37, 73, 0.72);
      backdrop-filter: blur(4px);
    }

    .cases {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.15rem;
      align-items: start;
    }

    .case {
      color: #2f3548;
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid #d9e3f4;
      position: relative;
      overflow: hidden;
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
      box-shadow: 0 14px 28px rgba(21, 37, 73, 0.12);
      display: flex;
      flex-direction: column;
      min-height: 335px;
    }

    .case:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 36px rgba(20, 39, 78, 0.18);
      border-color: #c7d5ef;
    }

    .case-media {
      position: relative;
      height: clamp(145px, 12vw, 180px);
      background: #d8dce3;
      overflow: hidden;
    }

    .case-media::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 40%;
      background: linear-gradient(180deg, rgba(15, 27, 45, 0), rgba(15, 27, 45, 0.22));
      pointer-events: none;
    }

    .case-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 24%;
      display: block;
      transition: transform .4s ease;
    }

    .case:hover .case-media img {
      transform: scale(1.04);
    }

    .case-stars {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      align-items: center;
      gap: 0.22rem;
      color: #ffffff;
      font-size: 0.68rem;
      padding: 0.36rem 0.62rem;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 8px 16px rgba(255, 136, 17, 0.35);
      z-index: 1;
    }

    .case-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      background: linear-gradient(180deg, #fffdf8 0%, #f7f1ff 100%);
      border-top: 1px solid var(--line);
      padding: 0.85rem 0.9rem 0.72rem;
    }

    .case-brand {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.45rem;
      width: 100%;
      margin: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      font-family: "Sora", sans-serif;
      font-weight: 800;
      font-size: clamp(0.9rem, 1.5vw, 1.02rem);
      color: var(--primary-strong);
      line-height: 1;
    }

    .case-brand i {
      font-size: 0.86rem;
      color: var(--secondary);
    }

    .case-text {
      margin: 0;
      max-width: 33ch;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.42;
      text-align: left;
    }

    .case-cta {
      margin-top: auto;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      padding: 0.52rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      background: linear-gradient(135deg, var(--primary) 0%, #4b66f0 55%, var(--secondary) 100%);
      color: #ffffff;
      font-size: 0.79rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      box-shadow: 0 10px 18px rgba(67, 36, 154, 0.26);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }

    .case-cta i {
      transition: transform .2s ease;
    }

    .case-cta:hover {
      transform: translateY(-2px);
      filter: saturate(1.06) brightness(1.04);
      box-shadow: 0 16px 28px rgba(58, 32, 138, 0.34);
    }

    .case-cta:hover i {
      transform: translateX(2px);
    }

    .case-footer {
      margin-top: auto;
      padding: 0.6rem 0.65rem;
      border-top: 0;
      text-align: left;
      font-size: 0.74rem;
      font-weight: 800;
      color: #343a4d;
      letter-spacing: .01em;
      border-radius: 10px;
      background: rgba(244, 208, 111, 0.25);
    }

    .case-footer span {
      color: #7a8397;
      font-weight: 700;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
      position: relative;
      padding: 0.4rem 1.1rem 0.4rem;
    }

    .step {
      padding: 0.45rem 0.6rem 3.25rem;
      border: 0;
      border-radius: 0;
      background: transparent;
      position: relative;
      box-shadow: none;
      transition: transform .22s ease;
      text-align: center;
      color: #eef2ff;
    }

    .step:hover {
      transform: translateY(-3px);
    }

    .step::after {
      content: "";
      position: absolute;
      left: calc(50% + 30px);
      right: -12%;
      bottom: 26px;
      height: 1px;
      background: linear-gradient(90deg, rgba(238, 242, 255, 0.34), rgba(238, 242, 255, 0.12));
    }

    .step:last-child::after {
      display: none;
    }

    .step-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 0.7rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #ffffff;
      font-size: 1.3rem;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.24);
      box-shadow: 0 10px 18px rgba(18, 7, 49, 0.24);
    }

    .step-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      font-family: "Sora", sans-serif;
      font-size: 0.98rem;
      font-weight: 700;
      background: rgba(20, 8, 58, 0.42);
      color: #f6f8ff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 16px rgba(16, 6, 45, 0.25);
      margin-bottom: 0;
      z-index: 1;
    }

    .step h3 {
      font-size: 1.03rem;
      margin: 0 0 0.35rem;
      color: #ffffff;
      line-height: 1.2;
    }

    .step p {
      margin: 0;
      color: rgba(230, 236, 255, 0.74);
      font-size: 0.88rem;
      line-height: 1.46;
      max-width: 22ch;
      margin-left: auto;
      margin-right: auto;
    }

    .process-section .section-head {
      margin-bottom: 0.9rem;
      text-align: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
    }

    .process-shell {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      background: linear-gradient(145deg, #5f3cc8 0%, #564ec4 45%, #4f4bbf 100%);
      border-radius: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 20px 40px rgba(47, 26, 104, 0.22);
      padding: 4.2rem 0rem;
      overflow: hidden;
    }

    .process-shell > .section-head,
    .process-shell > .steps {
      width: min(var(--container), calc(100% - 2.2rem));
      margin-left: auto;
      margin-right: auto;
    }

    .process-shell::before,
    .process-shell::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      background: rgba(255, 255, 255, 0.18);
    }

    .process-shell::before {
      width: 10px;
      height: 10px;
      left: 28%;
      top: 18%;
    }

    .process-shell::after {
      width: 14px;
      height: 14px;
      right: 27%;
      bottom: 28%;
    }

    .process-shell .section-head h2 {
      color: #ffffff;
      font-size: clamp(1.45rem, 2.6vw, 2rem);
      font-weight: 600;
      max-width: 18ch;
      margin-left: auto;
      margin-right: auto;
    }

    .process-shell .section-head .lead {
      color: rgba(233, 238, 255, 0.78);
      max-width: 68ch;
      text-align: center;
      font-size: clamp(0.9rem, 1.15vw, 1rem);
    }

    .pricing {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .price-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      min-height: 420px;
      transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
      position: relative;
      overflow: hidden;
    }

    .price-card:hover {
      transform: translateY(-3px);
      border-color: #d9c8ff;
      box-shadow: 0 20px 30px rgba(71, 27, 146, 0.16);
    }

    .price-card.featured {
      border-color: transparent;
      background: linear-gradient(#ffffff, #ffffff) padding-box,
                  linear-gradient(140deg, var(--primary), var(--accent)) border-box;
      box-shadow: var(--shadow);
    }

    .price-card.featured::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -40px;
      top: -70px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(102, 16, 242, 0.2), transparent 70%);
      pointer-events: none;
    }

    .price-card h3 {
      font-size: 1.15rem;
      margin-bottom: 0.2rem;
    }

    .plan-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
      width: fit-content;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--primary-strong);
      background: rgba(102, 16, 242, 0.12);
      border: 1px solid rgba(102, 16, 242, 0.22);
      border-radius: 999px;
      padding: 0.32rem 0.58rem;
      margin-bottom: 0.5rem;
    }

    .price-stars {
      color: var(--accent);
      font-size: 0.86rem;
      margin-bottom: 0.5rem;
    }

    .price-tag {
      font-family: "Sora", sans-serif;
      font-size: 2rem;
      margin: 0.65rem 0 0.2rem;
    }

    .price-tag small {
      font-size: 0.95rem;
      font-family: "Manrope", sans-serif;
      color: var(--muted);
    }

    .price-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .list {
      list-style: none;
      margin: 1rem 0 1.3rem;
      padding: 0;
      display: grid;
      gap: 0.46rem;
    }

    .list li {
      font-size: 0.92rem;
      color: #1c2f4a;
      display: flex;
      gap: 0.5rem;
    }

    .list li::before {
      content: "\2713";
      color: var(--primary);
      font-weight: 800;
    }

    .price-card .btn { margin-top: auto; }

    .faq-wrap {
      margin-top: 0.25rem;
      position: relative;
      border-radius: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      padding: 0;
      display: grid;
      grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.3fr);
      gap: 1.3rem;
      align-items: stretch;
      overflow: visible;
    }

    .faq-phone-float {
      position: absolute;
      left: 32%;
      top: 35%;
      transform: translate3d(-50%, -50%, 0) rotate(-4deg);
      width: clamp(150px, 14vw, 220px);
      max-width: 100%;
      z-index: 5;
      pointer-events: none;
      filter: drop-shadow(0 20px 28px rgba(25, 50, 104, 0.24));
      opacity: 0.98;
      animation: faqPhoneFloat 5.6s ease-in-out infinite;
      will-change: transform;
    }

    .faq-aside {
      position: relative;
      border-radius: 0;
      border: 0;
      background: transparent;
      padding: 1rem 1rem 0.9rem;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: visible;
    }

    .faq-tag {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.76rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .03em;
      color: #1a3d72;
      background: #ffffff;
      border: 1px solid #d2def6;
      border-radius: 999px;
      padding: 0.34rem 0.62rem;
    }

    .faq-title {
      margin-top: 0.7rem;
      font-size: clamp(1.85rem, 4vw, 3rem);
      line-height: 0.98;
      color: #262f43;
      max-width: 10ch;
    }

    .faq-title span {
      position: relative;
      z-index: 0;
    }

    .faq-title span::after {
      content: "";
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 4px;
      height: 11px;
      border-radius: 99px;
      background: rgba(116, 215, 191, 0.56);
      z-index: -1;
    }

    .faq-side-text {
      margin: 0.78rem 0 0.72rem;
      color: #586781;
      font-size: 0.95rem;
      max-width: 33ch;
    }

    .faq-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      width: fit-content;
      text-decoration: none;
      color: #ffffff;
      font-weight: 800;
      font-size: 0.86rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #1ebf69, #0ca962);
      border: 1px solid rgba(255, 255, 255, 0.45);
      padding: 0.52rem 0.78rem;
      box-shadow: 0 10px 20px rgba(18, 146, 85, 0.22);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .faq-whatsapp:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 24px rgba(17, 138, 81, 0.3);
    }

    .faq-whatsapp i {
      font-size: 0.95rem;
    }

    .faq-accordion {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0.2rem 0.05rem;
    }

    .faq-accordion details {
      border-bottom: 1px solid #cfd9ec;
      padding: 0.68rem 0 0.86rem;
      overflow: hidden;
      transition: border-color .28s ease;
    }

    .faq-accordion details:first-child {
      padding-top: 0.2rem;
    }

    .faq-accordion summary {
      cursor: pointer;
      font-weight: 700;
      font-family: "Sora", sans-serif;
      list-style: none;
      color: #2f3443;
      font-size: clamp(1.02rem, 1.5vw, 1.16rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.9rem;
      transition: color .24s ease;
    }

    .faq-accordion summary::-webkit-details-marker { display: none; }

    .faq-accordion summary::after {
      content: "+";
      font-size: 1.7rem;
      line-height: 1;
      color: #3d465c;
      font-weight: 400;
      margin-top: -2px;
      transition: transform .28s ease, color .24s ease;
    }

    .faq-accordion details[open] summary::after {
      content: "-";
      transform: rotate(180deg);
      color: var(--primary);
    }

    .faq-accordion details p {
      margin: 0;
      color: #5d6d84;
      font-size: 1.07rem;
      max-width: 66ch;
      line-height: 1.68;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity .22s ease, transform .28s ease, margin .28s ease;
    }

    .faq-accordion details[open] p {
      margin: 0.64rem 0 0;
      opacity: 1;
      transform: translateY(0);
    }

    .faq-accordion details.is-collapsing p {
      margin: 0;
      opacity: 0;
      transform: translateY(-6px);
    }

    .cta {
      margin: 3rem 0 3.7rem;
      border-radius: 24px;
      background: linear-gradient(130deg, #172f5f, #1d4f9a 60%, #2a6fbd);
      color: #f4f8ff;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 1.2rem;
      align-items: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      right: -120px;
      top: -140px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
      pointer-events: none;
    }

    .cta h2 {
      font-size: clamp(1.7rem, 3vw, 2.45rem);
      margin-bottom: 0.65rem;
    }

    .cta p {
      margin: 0;
      color: rgba(244, 248, 255, 0.86);
      max-width: 58ch;
    }

    .cta-points {
      margin-top: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .cta-points span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: #f4f8ff;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      padding: 0.3rem 0.58rem;
    }

    .cta-box {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 16px;
      padding: 1rem;
      backdrop-filter: blur(6px);
    }

    .cta-box ul {
      margin: 0 0 0.9rem;
      padding-left: 1rem;
    }

    .cta-box li { margin-bottom: 0.3rem; }

    footer {
      padding: 1.6rem 0 1.9rem;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .footer-wrap {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.9fr));
      gap: 1.3rem;
      padding: 1.1rem 0 0.35rem;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: hidden;
    }

    .footer-wrap::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 52%, var(--accent) 100%);
      opacity: 0.4;
    }

    .footer-block {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: start;
      gap: 0.5rem;
    }

    .footer-brand {
      max-width: 36ch;
      padding-right: 0.4rem;
    }

    .footer-brand-logo {
      display: block;
      height: 36px;
      width: auto;
      margin-bottom: 0.1rem;
    }

    .footer-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      width: fit-content;
      font-family: "Sora", sans-serif;
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .footer-label i {
      color: var(--primary);
      font-size: 0.84rem;
    }

    .footer-block p,
    .footer-meta {
      margin: 0;
    }

    .footer-meta {
      font-size: 0.8rem;
      color: #857e98;
    }

    .footer-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link i {
      width: 18px;
      color: var(--secondary);
      text-align: center;
      font-size: 0.88rem;
    }

    .footer-link:hover {
      color: var(--primary-strong);
      transform: translateX(2px);
    }

    .footer-foot {
      position: relative;
      z-index: 1;
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.9rem;
      padding-top: 0.95rem;
      margin-top: 0.15rem;
      border-top: 1px solid rgba(147, 158, 199, 0.2);
    }

    .footer-copy {
      margin: 0;
      font-size: 0.79rem;
      color: #877f98;
    }

    .footer-dev {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      text-decoration: none;
      font-weight: 700;
    }

    .footer-dev:hover {
      color: var(--primary-strong);
    }

    .footer-dev-mark {
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 0.14rem 0.55rem;
      border-radius: 999px;
      background: rgba(102, 16, 242, 0.08);
      color: var(--primary-strong);
      font-size: 0.76rem;
      line-height: 1;
    }

    .wa-float {
      position: fixed;
      right: 12px;
      bottom: 86px;
      z-index: 55;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      width: 58px;
      height: 58px;
      text-decoration: none;
      color: #ffffff;
      background: linear-gradient(135deg, #21c667, #11a759);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 50%;
      padding: 0;
      box-shadow: 0 14px 24px rgba(17, 138, 81, 0.35);
      transition: transform .2s ease, box-shadow .2s ease;
      animation: waPulse 2.2s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(17, 138, 81, 0.42);
    }

    .wa-float i {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: transparent;
      font-size: 1.32rem;
    }

    .wa-float span {
      display: none;
    }

    .lead-popup {
      position: fixed;
      inset: 0;
      z-index: 85;
      display: grid;
      place-items: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .24s ease, visibility .24s ease;
    }

    body.lead-popup-open {
      overflow: hidden;
    }

    .lead-popup.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .lead-popup-backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      padding: 0;
      background: rgba(13, 20, 39, 0.48);
      backdrop-filter: blur(2px);
    }

    .lead-popup-card {
      width: min(408px, calc(100% - 1rem));
      position: relative;
      z-index: 1;
      background: #ffffff;
      border: 1px solid #e0e6f4;
      border-radius: 16px;
      padding: 1.1rem 1.05rem 1.32rem;
      box-shadow: 0 24px 48px rgba(14, 22, 44, 0.35);
      transform: translateY(10px) scale(0.98);
      transition: transform .28s ease;
    }

    .lead-popup.is-open .lead-popup-card {
      transform: translateY(0) scale(1);
    }

    .lead-popup-close {
      position: absolute;
      right: 0.65rem;
      top: 0.62rem;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 10px;
      background: #f5f8ff;
      color: #303a55;
      cursor: pointer;
      font-size: 1.02rem;
      line-height: 1;
      transition: transform .2s ease, background .2s ease;
      z-index: 2;
    }

    .lead-popup-close:hover {
      transform: rotate(90deg) scale(1.02);
      background: #ebf1ff;
    }

    .lead-popup-intro {
      display: grid;
      gap: 0.72rem;
      text-align: center;
      padding: 0.22rem 0.1rem 0.08rem;
    }

    .lead-popup-intro[hidden] {
      display: none;
    }

    .lead-popup-form-panel[hidden] {
      display: none;
    }

    .lead-popup-icon {
      width: 86px;
      height: 86px;
      margin: 0.18rem auto 0.06rem;
      display: grid;
      place-items: center;
      color: #2c3251;
      border-radius: 50%;
      background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
      border: 1px solid #dde7fb;
      box-shadow: 0 10px 24px rgba(62, 95, 170, 0.14);
    }

    .lead-popup-icon i {
      font-size: 2.25rem;
      line-height: 1;
      color: #3a61ce;
    }

    .lead-popup-icon img {
      width: 72%;
      height: 72%;
      object-fit: contain;
      display: block;
    }

    .lead-popup-head h3 {
      margin: 0;
      font-size: clamp(1.42rem, 3.2vw, 1.72rem);
      font-family: "Sora", sans-serif;
      color: #2d3350;
      line-height: 1.06;
      letter-spacing: -0.02em;
    }

    .lead-popup-head h3 strong {
      font-weight: 800;
    }

    .lead-popup-head p {
      margin: 0.26rem auto 0;
      font-size: 0.88rem;
      line-height: 1.4;
      color: #59627d;
      width: min(92%, 320px);
    }

    .lead-popup-benefits {
      margin: 0.72rem 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.5rem;
      color: #4a526d;
      font-size: 0.93rem;
      text-align: left;
      width: min(84%, 328px);
      margin-left: auto;
      margin-right: auto;
    }

    .lead-popup-benefits li {
      display: flex;
      align-items: center;
      gap: 0.48rem;
    }

    .lead-popup-benefits i {
      width: 20px;
      color: #2d6de2;
      font-size: 1rem;
    }

    .lead-popup-cta {
      width: min(84%, 328px);
      margin: 0.2rem auto 0;
      border: none;
      outline: none;
      border-radius: 999px;
      padding: 1rem 1.3rem;
      color: #ffffff;
      font-size: 0.96rem;
      font-family: "Sora", sans-serif;
      font-weight: 700;
      cursor: pointer;
      background: linear-gradient(90deg, #195fcf 0%, #2d5bc3 38%, #d83f57 100%);
      box-shadow: 0 14px 24px rgba(37, 63, 143, 0.3);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .lead-popup-cta i {
      margin-left: 0.35rem;
      font-size: 0.95em;
    }

    .lead-popup-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 28px rgba(37, 63, 143, 0.38);
    }

    .lead-popup-form-panel {
      display: grid;
      gap: 0.72rem;
      padding: 0.12rem 1.5rem 0.05rem;
    }

    .lead-popup-form-panel .lead-popup-icon {
      width: 74px;
      height: 74px;
      margin: 0.1rem auto 0.04rem;
    }

    .lead-popup-form-panel h4 {
      margin: 0.06rem 0 0;
      font-family: "Sora", sans-serif;
      font-size: 1.1rem;
      color: #2d3350;
      text-align: center;
    }

    .lead-popup-form-info {
      margin: -0.1rem auto 0.1rem;
      width: min(92%, 316px);
      font-size: 0.82rem;
      line-height: 1.45;
      color: #5d6784;
      text-align: center;
    }

    .lead-popup-form {
      display: grid;
      gap: 0.64rem;
    }

    .lead-popup-form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.54rem;
    }

    .lead-popup-form label {
      display: grid;
      gap: 0.26rem;
      font-size: 0.7rem;
      color: #435070;
      font-weight: 700;
    }

    .lead-popup-form input {
      border: 1px solid #d8e0f2;
      border-radius: 11px;
      padding: 0.66rem 0.74rem;
      font: inherit;
      font-size: 0.9rem;
      color: #2f3552;
      outline: none;
      background: #fbfdff;
    }

    .lead-popup-form input:focus {
      border-color: #5b8fea;
      box-shadow: 0 0 0 3px rgba(84, 131, 232, 0.18);
    }

    .lead-popup-form .btn {
      width: 100%;
      margin-top: 0.15rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(90deg, #195fcf 0%, #2d5bc3 38%, #d83f57 100%);
      color: #ffffff;
      box-shadow: 0 14px 24px rgba(37, 63, 143, 0.3);
      font-size: 0.92rem;
      padding: 0.88rem 1rem;
    }

    .lead-popup-form .btn:hover {
      box-shadow: 0 18px 28px rgba(37, 63, 143, 0.38);
    }

    .lead-popup-back {
      border: 0;
      background: transparent;
      color: #4a516c;
      font-weight: 700;
      font-size: 0.82rem;
      margin: 0 auto;
      cursor: pointer;
      padding: 0;
      text-decoration: underline;
      text-decoration-color: rgba(74, 81, 108, 0.35);
      text-underline-offset: 4px;
    }

    .lead-popup-dismiss {
      border: 0;
      background: transparent;
      color: #4a516c;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 0.08rem 0.55rem 0.12rem;
      margin: 0 auto;
      cursor: pointer;
      display: block;
      transition: color .2s ease, transform .2s ease;
    }

    .lead-popup-dismiss:hover {
      color: #2f3140;
      transform: translateY(-1px);
    }

    .lead-popup-note {
      margin: 0.16rem 0 0;
      font-size: 0.66rem;
      color: #77829b;
      text-align: center;
    }

    .lead-popup-success {
      margin: 0.52rem 0 0;
      font-size: 0.74rem;
      font-weight: 700;
      color: #108a57;
      text-align: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px) scale(.99);
      transition: opacity .65s ease, transform .65s ease;
      will-change: opacity, transform;
    }

    .reveal.in-view {
      opacity: 1;
      transform: none;
    }

    @keyframes twinkle {
      0%,
      100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.12); opacity: .78; }
    }

    @keyframes floatDrift {
      0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        opacity: 0.16;
      }
      30% {
        opacity: 0.45;
      }
      60% {
        transform: translate3d(var(--dx, 14px), calc(var(--dy, 26px) * -1), 0) scale(1.09) rotate(6deg);
        opacity: 0.62;
      }
      100% {
        transform: translate3d(calc(var(--dx, 14px) * -0.35), 0, 0) scale(1) rotate(-4deg);
        opacity: 0.16;
      }
    }

    @keyframes bodyGradientFlow {
      0% {
        background-position: 8% 0%, 92% 10%, 0% 50%, 0 0;
      }
      50% {
        background-position: 14% 3%, 86% 12%, 100% 50%, 0 0;
      }
      100% {
        background-position: 8% 0%, 92% 10%, 0% 50%, 0 0;
      }
    }

    @keyframes faqPhoneFloat {
      0%,
      100% {
        transform: translate3d(-50%, -50%, 0) rotate(-4deg);
      }
      25% {
        transform: translate3d(-50%, calc(-50% - 7px), 0) rotate(-3.5deg);
      }
      75% {
        transform: translate3d(-50%, calc(-50% + 7px), 0) rotate(-4.6deg);
      }
    }

    @keyframes waPulse {
      0%,
      100% {
        box-shadow: 0 14px 24px rgba(17, 138, 81, 0.35);
      }
      50% {
        box-shadow: 0 18px 30px rgba(17, 138, 81, 0.5);
      }
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .cta {
        grid-template-columns: 1fr;
      }

      .footer-wrap {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand,
      .footer-foot {
        grid-column: 1 / -1;
      }

      .grid-3,
      .benefit-grid,
      .pricing,
      .cases,
      .steps {
        grid-template-columns: 1fr 1fr;
      }

      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .process-shell {
        padding: 1.9rem 0.8rem 1.7rem;
      }

      .step::after {
        display: none;
      }

      .case {
        min-height: 430px;
      }

      .faq-phone-float {
        display: none;
      }

      .faq-aside {
        min-height: 0;
      }

      .func-slide {
        min-width: calc(92% - 0.5rem);
        grid-template-columns: 1fr;
      }

      .func-shell {
        padding: 0;
      }

      .func-slide p {
        max-width: 100%;
      }
    }

    @media (max-width: 720px) {
      .hero {
        padding-top: 3.2rem;
        min-height: 560px;
      }
      .footer-wrap {
        grid-template-columns: 1fr;
        padding: 1.15rem 1rem 1rem;
      }
      .footer-foot {
        flex-direction: column;
        align-items: flex-start;
      }
      .hero-head { height: 270px; }
      .nav-wrap { align-items: center; }
      .menu-toggle {
        display: inline-flex;
      }
      .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.45rem);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.7rem;
        border: 1px solid #d7e2f6;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 16px 28px rgba(17, 44, 92, 0.14);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height .25s ease, opacity .2s ease, transform .25s ease;
      }
      .nav-links a {
        padding: 0.62rem 0.72rem;
        border-radius: 10px;
        background: #f6f9ff;
      }
      .nav-links a:not(.btn)::after {
        display: none;
      }
      .nav-links .btn {
        width: 100%;
        margin-top: 0.15rem;
      }
      .nav.nav-menu-open .nav-links {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav.nav-menu-open .menu-toggle-lines span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
      }
      .nav.nav-menu-open .menu-toggle-lines span:nth-child(2) {
        opacity: 0;
      }
      .nav.nav-menu-open .menu-toggle-lines span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
      }
      .grid-3,
      .benefit-grid,
      .feature-gallery,
      .pricing,
      .cases,
      .steps,
      .panel-cards {
        grid-template-columns: 1fr;
      }

      #casos .cases,
      #precios .pricing {
        display: flex;
        gap: 0.8rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scrollbar-width: none;
        scroll-behavior: smooth;
        padding-bottom: 0.2rem;
      }

      #casos .cases::-webkit-scrollbar,
      #precios .pricing::-webkit-scrollbar {
        display: none;
      }

      #casos .case,
      #precios .price-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
      }

      .mobile-slider-ui {
        display: block;
        margin-top: 0.75rem;
      }

      .mobile-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .mobile-slider-btn {
        width: 40px;
        height: 40px;
        border: 1px solid #cfdcf8;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.92);
        color: #244b86;
        font-size: 0.9rem;
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      }

      .mobile-slider-btn:hover {
        transform: translateY(-1px);
        border-color: #b1c7f5;
        box-shadow: 0 10px 18px rgba(102, 16, 242, 0.14);
      }

      .mobile-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 0.62rem;
      }

      .mobile-slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 0;
        padding: 0;
        background: #becbe9;
        cursor: pointer;
        transition: width .25s ease, background .25s ease;
      }

      .mobile-slider-dot.active {
        width: 26px;
        background: #2e64ea;
      }

      .hero-rating {
        align-items: start;
        flex-direction: column;
        gap: 0.25rem;
      }

      .section { padding-bottom: 2.6rem; }
      .cta { margin: 2rem 0 2.8rem; padding: 1.3rem; }
      .func-slider-controls {
        position: static;
        inset: auto;
        transform: none;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.85rem;
        margin-bottom: 0;
        pointer-events: auto;
      }
      .func-slide {
        min-width: 100%;
      }

      .section-head--func {
        margin-bottom: 0.85rem;
      }

      .func-shell {
        padding: 0;
        border-radius: 0;
      }
      #funcPrev,
      #funcNext {
        transform: none;
      }
      #funcPrev:hover,
      #funcNext:hover {
        transform: translateY(-1px);
      }
      .func-slide-content {
        padding: 1rem 1rem 0.9rem;
      }
      .func-slide-meta {
        gap: 0.55rem;
      }
      .func-slide h3 {
        font-size: clamp(1.28rem, 5.5vw, 1.7rem);
        max-width: none;
      }
      .func-slide-points {
        gap: 0.45rem;
      }
      .func-slide-media {
        min-height: 220px;
        padding: 0;
      }
      .func-slide-frame {
        width: 100%;
        height: 100%;
        min-height: 220px;
      }
      .faq-wrap {
        padding: 0.8rem;
        gap: 0.95rem;
      }
      .faq-aside {
        padding: 0.9rem 0.9rem 0.55rem;
      }
      .faq-title {
        max-width: 100%;
        font-size: clamp(1.65rem, 8vw, 2.15rem);
      }
      .faq-side-text {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
      }
      .faq-accordion {
        padding: 0.1rem 0.1rem 0.3rem;
      }
      .faq-accordion summary {
        font-size: 0.98rem;
      }
      .faq-accordion details p {
        font-size: 1rem;
        line-height: 1.62;
      }
      .process-shell {
        border-radius: 0;
        padding: 4.35rem 0.7rem 4.2rem;
      }
      .process-shell .section-head {
        margin-bottom: 0.55rem;
      }
      .process-shell .section-head h2 {
        font-size: clamp(1.5rem, 6.4vw, 1.9rem);
      }
      .steps {
        gap: 0.7rem;
        padding: 0.1rem 0.3rem 0.25rem;
      }
      .step {
        padding: 0.55rem 0.45rem 0.78rem;
        display: grid;
        grid-template-columns: 50px 1fr;
        grid-template-areas:
          "icon title"
          "icon text";
        align-items: start;
        justify-items: start;
        column-gap: 0.62rem;
        row-gap: 0.25rem;
        position: relative;
        overflow: hidden;
        text-align: left;
      }
      .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin: 0;
        grid-area: icon;
        align-self: start;
      }
      .step h3 {
        font-size: 0.96rem;
        grid-area: title;
        margin: 0.05rem 0 0;
        max-width: 100%;
        position: relative;
        z-index: 1;
      }
      .step p {
        font-size: 0.82rem;
        grid-area: text;
        margin: 0;
        max-width: 100%;
        position: relative;
        z-index: 1;
      }
      .step-num {
        width: auto;
        height: auto;
        font-size: clamp(3.2rem, 17vw, 4.9rem);
        position: absolute;
        right: 0.22rem;
        top: 50%;
        transform: translateY(-46%);
        margin: 0;
        line-height: 0.9;
        font-weight: 800;
        background: none;
        border: 0;
        box-shadow: none;
        color: rgba(255, 255, 255, 0.2);
        z-index: 0;
        pointer-events: none;
      }
      .wa-float {
        right: 10px;
        bottom: 74px;
        width: 52px;
        height: 52px;
        padding: 0;
      }
      .wa-float i {
        font-size: 1.2rem;
      }
      .lead-popup {
        padding: 0.62rem;
      }
      .lead-popup-card {
        width: 100%;
        border-radius: 16px;
        padding: 0.92rem 0.78rem 1.04rem;
      }
      .lead-popup-icon {
        width: 76px;
        height: 76px;
      }
      .lead-popup-head h3 {
        font-size: 1.38rem;
        padding-right: 1.8rem;
      }
      .lead-popup-head p {
        font-size: 0.82rem;
        width: min(96%, 290px);
      }
      .lead-popup-form-panel {
        padding: 0.08rem 0.35rem 0.04rem;
      }
      .lead-popup-benefits {
        font-size: 0.84rem;
        gap: 0.34rem;
        width: min(92%, 330px);
      }
      .lead-popup-cta {
        width: min(92%, 330px);
        font-size: 0.88rem;
        padding: 0.82rem 0.92rem;
      }
      .lead-popup-dismiss {
        font-size: 0.82rem;
      }
      .case {
        min-height: 0;
      }
      .case-media {
        height: 140px;
      }
      .case-body {
        padding: 0.75rem 0.78rem 0.68rem;
      }
      .case-brand {
        font-size: clamp(0.84rem, 4.3vw, 0.98rem);
      }
      .case-text {
        font-size: 0.8rem;
      }
      .case-cta {
        font-size: 0.74rem;
        padding: 0.45rem 0.68rem;
      }

      #beneficios .benefit-card {
        min-height: 0;
        padding: 0.9rem 0.95rem;
        display: grid;
        grid-template-columns: 42px 1fr;
        align-items: center;
        column-gap: 0.72rem;
        row-gap: 0;
        cursor: pointer;
        position: relative;
      }

      #beneficios .benefit-card .benefit-icon {
        width: 42px;
        height: 42px;
        margin: 0;
        border-radius: 12px;
        font-size: 1.08rem;
        grid-column: 1;
        grid-row: 1;
      }

      #beneficios .benefit-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding-right: 1.4rem;
        font-size: 0.95rem;
        line-height: 1.22;
      }

      #beneficios .benefit-card p {
        grid-column: 1 / -1;
        margin: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        font-size: 0.88rem;
        line-height: 1.5;
        transform: translateY(-4px);
        transition: max-height .34s cubic-bezier(0.22, 1, 0.36, 1), opacity .24s ease, transform .28s ease, margin .28s ease;
      }

      #beneficios .benefit-card::after {
        content: "+";
        position: absolute;
        right: 0.85rem;
        top: 1.05rem;
        color: #354260;
        font-size: 1.22rem;
        line-height: 1;
        font-weight: 600;
        transition: transform .24s ease, color .24s ease;
      }

      #beneficios .benefit-card.is-open::after {
        content: "−";
        color: var(--primary-strong);
        transform: translateY(-1px);
      }

      #beneficios .benefit-card.is-open p {
        margin-top: 0.62rem;
        max-height: 210px;
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
/* Page specific overrides */
body.page-legal {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  background: linear-gradient(180deg, #f3fbff 0%, #f7f0ff 100%);
}

body.page-legal .shell {
  width: min(920px, 100%);
  margin: 3.2rem auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(56, 29, 106, 0.16);
  overflow: hidden;
}

body.page-legal .accent {
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

body.page-legal .content {
  padding: 2rem;
  display: grid;
  gap: 1.15rem;
}

body.page-legal .content h1,
body.page-legal .content h2 {
  font-family: "Sora", sans-serif;
  margin: 0;
}

body.page-legal .content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

body.page-legal .content h2 {
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

body.page-legal .content p,
body.page-legal .content li {
  color: var(--muted);
  line-height: 1.7;
}

body.page-legal .content ul {
  margin: 0;
  padding-left: 1.15rem;
}

body.page-legal .back {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

body.page-gracias {
  margin: 0;
  min-height: 100vh;
  padding: 0.8rem 1rem 1rem;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 168, 232, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 136, 17, 0.18), transparent 26%),
    linear-gradient(180deg, #f3fbff 0%, #edf7ff 32%, #f8f0ff 72%, #fff8f0 100%);
}

body.page-gracias .shell {
  width: min(760px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(56, 29, 106, 0.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

body.page-gracias .accent-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

body.page-gracias .content {
  padding: 1.65rem 1.7rem 1.5rem;
  display: grid;
  gap: 1rem;
}

body.page-gracias .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

body.page-gracias .brand img {
  display: block;
  width: auto;
  height: 28px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

body.page-gracias .hero {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.15rem 0 0.1rem;
}

body.page-gracias .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(102, 16, 242, 0.12), rgba(0, 168, 232, 0.12));
  border: 1px solid rgba(102, 16, 242, 0.12);
}

body.page-gracias .icon-wrap i {
  font-size: 1.85rem;
  color: var(--primary-strong);
}

body.page-gracias h1 {
  margin: 0 0 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4.8vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

body.page-gracias .lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 52ch;
}

body.page-gracias .notice {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(102, 16, 242, 0.06), rgba(0, 168, 232, 0.05));
  border: 1px solid rgba(102, 16, 242, 0.12);
}

body.page-gracias .notice strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

body.page-gracias .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

body.page-gracias .btn {
  min-height: 50px;
  padding: 0.85rem 1.2rem;
}

body.page-gracias .btn:hover {
  transform: translateY(-2px);
}

body.page-gracias .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 16px 30px rgba(72, 39, 157, 0.24);
}

body.page-gracias .btn-secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(102, 16, 242, 0.14);
  box-shadow: 0 12px 24px rgba(50, 33, 101, 0.08);
}

body.page-gracias .back-link {
  width: fit-content;
  color: var(--primary-strong);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 720px) {
  body.page-legal {
    padding: 0 0.75rem 1rem;
  }
}

@media (max-width: 640px) {
  body.page-gracias .content {
    padding: 1.2rem;
  }

  body.page-gracias .brand img {
    height: 24px;
    max-width: 120px;
  }

  body.page-gracias .hero {
    grid-template-columns: 1fr;
  }

  body.page-gracias .icon-wrap {
    width: 72px;
    height: 72px;
  }

  body.page-gracias .actions {
    flex-direction: column;
  }

  body.page-gracias .btn {
    width: 100%;
  }
}
