:root {
      --bg: #0b1220;
      --bg-soft: #111b2f;
      --surface: #17243d;
      --surface-2: #1b2c49;
      --text: #e8eefc;
      --muted: #a5b6d6;
      --brand: #22c55e;
      --brand-strong: #16a34a;
      --accent: #38bdf8;
      --line: #2b3d5e;
      --shadow: 0 18px 40px rgba(2, 8, 23, 0.35);
      --glow: 0 0 0 1px rgba(109, 146, 206, 0.22), 0 14px 32px rgba(4, 13, 29, 0.45);
      --radius: 16px;
      --radius-sm: 12px;
      --max: 1140px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Segoe UI", "Calibri", "Trebuchet MS", sans-serif;
      color: var(--text);
      background:
        radial-gradient(1000px 500px at 80% -10%, rgba(56, 189, 248, 0.14), transparent 60%),
        radial-gradient(900px 420px at -10% 0%, rgba(34, 197, 94, 0.1), transparent 65%),
        linear-gradient(180deg, #0b1220 0%, #0f182b 100%);
      line-height: 1.55;
    }

    .container {
      width: min(var(--max), calc(100% - 2.2rem));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, rgba(11, 18, 32, 0.88), rgba(11, 18, 32, 0.74));
      border-bottom: 1px solid rgba(82, 116, 174, 0.16);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
    }

    .brand {
      color: var(--text);
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(125, 211, 252, 0.28);
      background: rgba(17, 27, 47, 0.88);
      cursor: pointer;
      padding: 0.55rem 0.5rem;
      gap: 4px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: #d9e8ff;
      border-radius: 2px;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.93rem;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-links a.active {
      color: #dcfce7;
      text-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
    }

    .skip-link {
      position: absolute;
      left: 0.75rem;
      top: -40px;
      z-index: 80;
      background: #22c55e;
      color: #042012;
      border-radius: 8px;
      padding: 0.45rem 0.65rem;
      font-weight: 700;
      text-decoration: none;
    }

    .skip-link:focus { top: 0.6rem; }

    .hero {
      padding: 5.2rem 0 3.4rem;
      position: relative;
      background:
        radial-gradient(900px 380px at 10% 8%, rgba(56, 189, 248, 0.16), transparent 60%),
        radial-gradient(900px 360px at 88% 10%, rgba(34, 197, 94, 0.13), transparent 62%);
    }

    .hero-card {
      background: linear-gradient(155deg, rgba(23, 36, 61, 0.94), rgba(15, 24, 43, 0.96));
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 4px);
      padding: clamp(1.4rem, 2.5vw, 2.6rem);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      animation: heroFade 850ms ease-out both;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1rem;
      align-items: center;
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-visual {
      border: 1px solid rgba(125, 211, 252, 0.24);
      border-radius: 14px;
      background: linear-gradient(160deg, rgba(14, 27, 47, 0.9), rgba(10, 20, 35, 0.95));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 16px 30px rgba(2, 8, 23, 0.38);
      padding: 0.8rem;
      min-height: 250px;
      position: relative;
      overflow: hidden;
    }

    .hero-sticker {
      position: absolute;
      z-index: 2;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.4px;
      padding: 0.26rem 0.52rem;
      border: 1px solid rgba(125, 211, 252, 0.38);
      color: #e8f7ff;
      box-shadow: 0 8px 22px rgba(2, 8, 23, 0.42);
      backdrop-filter: blur(3px);
      animation: stickerFloat 3.6s ease-in-out infinite;
      transform-origin: center;
    }

    .sticker-boom {
      top: 12px;
      right: 14px;
      background: linear-gradient(120deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.92));
      color: #032015;
      border-color: rgba(74, 222, 128, 0.6);
      --r: 8deg;
      animation-delay: 0.1s;
    }

    .sticker-web {
      top: 54px;
      left: 14px;
      background: linear-gradient(120deg, rgba(56, 189, 248, 0.92), rgba(14, 165, 233, 0.94));
      --r: -10deg;
      animation-delay: 0.45s;
    }

    .sticker-api {
      bottom: 14px;
      right: 26px;
      background: linear-gradient(120deg, rgba(30, 64, 175, 0.94), rgba(37, 99, 235, 0.92));
      --r: -7deg;
      animation-delay: 0.75s;
    }

    .sticker-app {
      bottom: 42px;
      left: 22px;
      background: linear-gradient(120deg, rgba(15, 118, 110, 0.94), rgba(20, 184, 166, 0.9));
      --r: 7deg;
      animation-delay: 1.1s;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 18%, rgba(34, 197, 94, 0.2), transparent 45%);
      pointer-events: none;
    }

    .mockup-bar {
      height: 10px;
      width: 68%;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(125, 211, 252, 0.45), rgba(34, 197, 94, 0.35));
      margin-bottom: 0.75rem;
      position: relative;
      z-index: 1;
    }

    .mockup-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
      position: relative;
      z-index: 1;
    }

    .mockup-box {
      border: 1px solid rgba(125, 211, 252, 0.2);
      border-radius: 10px;
      background: rgba(17, 32, 54, 0.8);
      padding: 0.55rem;
      min-height: 80px;
    }

    .mockup-line {
      height: 7px;
      border-radius: 999px;
      background: rgba(190, 220, 255, 0.28);
      margin-bottom: 0.45rem;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: auto -12% -48% auto;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(34, 197, 94, 0.16), transparent 68%);
      pointer-events: none;
    }

    h1 {
      margin: 0 0 0.9rem;
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.18;
      letter-spacing: 0.2px;
      text-wrap: balance;
    }

    .lead {
      margin: 0;
      max-width: 70ch;
      color: #c5d4ee;
      font-size: clamp(1rem, 2vw, 1.2rem);
      text-wrap: pretty;
    }

    .hero-actions {
      margin-top: 1.5rem;
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      border-radius: 999px;
      padding: 0.75rem 1.2rem;
      text-decoration: none;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn:active { transform: translateY(0); }

    .btn:disabled {
      opacity: 0.72;
      cursor: not-allowed;
      transform: none;
    }

    .btn-primary {
      color: #07131f;
      background: linear-gradient(90deg, #22c55e, #4ade80);
    }

    .btn-highlight {
      animation: ctaPulse 4.8s ease-in-out infinite;
      will-change: transform, box-shadow;
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(56, 189, 248, 0.14);
      border-color: rgba(56, 189, 248, 0.35);
    }

    .trust-line {
      margin-top: 1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .trust-stats {
      margin-top: 1.05rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(120px, 1fr));
      gap: 0.65rem;
      max-width: 700px;
    }

    .stat-item {
      background: rgba(18, 31, 52, 0.72);
      border: 1px solid rgba(125, 211, 252, 0.2);
      border-radius: 12px;
      padding: 0.55rem 0.65rem;
      display: grid;
      gap: 0.1rem;
    }

    .stat-number {
      font-size: 1.22rem;
      color: #d5ffe8;
      line-height: 1.1;
      letter-spacing: 0.2px;
    }

    .stat-item span {
      font-size: 0.8rem;
      color: #c5d4ee;
    }

    section {
      padding: 2.6rem 0;
      position: relative;
    }

    section + section {
      margin-top: 0.15rem;
    }

    section:nth-of-type(even):not(.hero):not(.about) {
      background:
        linear-gradient(180deg, rgba(22, 35, 59, 0.48), rgba(16, 26, 44, 0.36));
      border-block: 1px solid rgba(138, 161, 202, 0.12);
    }

    section:not(.hero)::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(82, 116, 174, 0.35), transparent);
      pointer-events: none;
    }

    .section-title {
      margin: 0 0 0.65rem;
      font-size: clamp(1.45rem, 2.8vw, 2rem);
      background: linear-gradient(90deg, #e8eefc 0%, #a7f3d0 52%, #7dd3fc 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-wrap: balance;
    }

    .section-sub {
      margin: 0 0 1.15rem;
      color: var(--muted);
      max-width: 72ch;
      text-wrap: pretty;
    }

    .grid {
      display: grid;
      gap: 0.9rem;
    }

    .services {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
    }

    .compare-card h3 {
      margin-bottom: 0.5rem;
    }

    .card {
      background: linear-gradient(165deg, rgba(23, 36, 61, 0.9), rgba(14, 23, 40, 0.95));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0.95rem;
      box-shadow: var(--glow);
      display: grid;
      gap: 0.55rem;
      transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(125, 211, 252, 0.08), rgba(34, 197, 94, 0.03) 35%, transparent 60%);
      opacity: 0.9;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: #5e8bcc;
      box-shadow: 0 24px 46px rgba(2, 8, 23, 0.55), 0 0 0 1px rgba(125, 211, 252, 0.28);
    }

    .card h3 {
      margin: 0;
      font-size: 1.05rem;
    }

    .card-head {
      display: flex;
      align-items: center;
      gap: 0.62rem;
      margin-bottom: 0.12rem;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .mini-tag {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.25px;
      color: #052013;
      background: linear-gradient(120deg, #86efac, #4ade80);
      border: 1px solid rgba(74, 222, 128, 0.65);
      border-radius: 999px;
      padding: 0.2rem 0.48rem;
      white-space: nowrap;
    }

    .mini-tag-corner {
      position: absolute;
      top: 0.95rem;
      left: 3.45rem;
      z-index: 2;
      margin-left: 0;
    }

    .mini-tag-accent {
      color: #062038;
      background: linear-gradient(120deg, #7dd3fc, #38bdf8);
      border-color: rgba(125, 211, 252, 0.65);
    }

    .icon-badge {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(125, 211, 252, 0.24), rgba(34, 197, 94, 0.2));
      border: 1px solid rgba(125, 211, 252, 0.34);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
      flex: 0 0 auto;
    }

    .icon-badge svg {
      width: 18px;
      height: 18px;
      stroke: #d8f5ff;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card p {
      margin: 0;
      color: #bfd0ec;
      font-size: 0.94rem;
      position: relative;
      z-index: 1;
      text-wrap: pretty;
    }

    .prices {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      align-items: stretch;
    }

    .price-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 0.95rem;
    }

    .price-card {
      position: relative;
      padding: 1.05rem;
    }

    .price-card .btn {
      margin-top: 0.8rem;
      width: 100%;
    }

    .price-card.featured {
      border-color: rgba(34, 197, 94, 0.55);
      transform: translateY(-3px);
      background: linear-gradient(165deg, rgba(30, 53, 74, 0.94), rgba(15, 29, 46, 0.98));
    }

    .price-card.featured::after {
      content: "Recomendado";
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2px;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.2);
      border: 1px solid rgba(34, 197, 94, 0.45);
      color: #d8ffe8;
    }

    .price {
      font-size: 1.75rem;
      margin: 0.2rem 0 0.5rem;
      font-weight: 800;
      color: #caffdf;
    }

    .price-value {
      display: inline-block;
      min-width: 2ch;
    }

    ul {
      margin: 0;
      padding-left: 1rem;
      color: #cbdaef;
      display: grid;
      gap: 0.33rem;
      font-size: 0.93rem;
    }

    .price-note {
      margin-top: 0.95rem;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .cv-prices .price {
      font-size: 1.5rem;
      color: #d8f1ff;
    }

    .cv-flow {
      margin-top: 0.9rem;
      padding: 1rem;
    }

    .cv-flow h3 {
      margin: 0 0 0.7rem;
    }

    .cv-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0.65rem;
    }

    .cv-step {
      border: 1px solid rgba(82, 116, 174, 0.3);
      border-radius: 10px;
      padding: 0.65rem 0.7rem;
      background: rgba(13, 23, 39, 0.48);
      display: grid;
      gap: 0.25rem;
    }

    .cv-step strong {
      color: #d5ffe8;
      font-size: 0.95rem;
    }

    .cv-step span {
      color: #bfd0ec;
      font-size: 0.88rem;
    }

    .cv-cta {
      margin-top: 0.75rem;
      width: fit-content;
    }

    .cv-cta-group {
      margin-top: 0.75rem;
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .cv-cta-group .cv-cta {
      margin-top: 0;
    }

    .process {
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }

    .step {
      padding: 0.95rem;
      border-radius: var(--radius-sm);
      border: 1px dashed #3b557f;
      background: linear-gradient(155deg, rgba(31, 49, 78, 0.72), rgba(20, 32, 54, 0.72));
      box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.08);
      display: grid;
      gap: 0.35rem;
    }

    .step-head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .step .icon-badge {
      width: 30px;
      height: 30px;
      border-radius: 9px;
    }

    .step strong {
      color: #c8f9dc;
      display: block;
      margin-bottom: 0.25rem;
    }

    .process-panel {
      margin-top: 0.75rem;
      padding: 1rem;
    }

    .process-panel h3 {
      margin: 0 0 0.55rem;
    }

    .process-includes {
      display: grid;
      gap: 0.55rem;
      margin-bottom: 0.75rem;
    }

    .process-include-item {
      border: 1px solid rgba(82, 116, 174, 0.3);
      border-radius: 10px;
      padding: 0.6rem 0.65rem;
      background: rgba(13, 23, 39, 0.48);
      display: grid;
      gap: 0.2rem;
    }

    .process-include-item strong {
      color: #d5ffe8;
      font-size: 0.93rem;
    }

    .process-include-item span {
      color: #bfd0ec;
      font-size: 0.86rem;
    }

    .process-mini {
      margin: 0;
      color: #d7ffeb;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .process-cta {
      margin-top: 0.7rem;
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .why {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .why .card { padding: 0.95rem; }

    .about {
      background: linear-gradient(180deg, rgba(17, 27, 47, 0.62), rgba(17, 27, 47, 0.2));
      border-block: 1px solid rgba(165, 182, 214, 0.15);
    }

    .chips {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .chip {
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      border: 1px solid #3a567f;
      background: rgba(20, 33, 57, 0.86);
      color: #d1def3;
      font-size: 0.88rem;
      white-space: nowrap;
      transition: transform 200ms ease, border-color 200ms ease;
    }

    .chip:hover {
      transform: translateY(-2px);
      border-color: #5a83bf;
      box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.18);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 1rem;
    }

    .faq-list {
      display: grid;
      gap: 0.8rem;
    }

    .faq-item {
      padding: 0.75rem 0.9rem;
    }

    .faq-toggle {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      color: var(--text);
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      padding: 0;
      position: relative;
      padding-right: 1.5rem;
    }

    .faq-toggle::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 0;
      color: #9dd8ff;
      font-weight: 700;
      transition: transform 180ms ease;
    }

    .faq-toggle[aria-expanded="true"]::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      margin-top: 0.5rem;
      color: #bfd0ec;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 260ms ease, opacity 220ms ease;
      text-wrap: pretty;
    }

    .faq-item.open .faq-answer {
      max-height: 160px;
      opacity: 1;
    }

    form {
      display: grid;
      gap: 0.72rem;
      background: rgba(16, 25, 44, 0.92);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1rem;
      box-shadow: var(--glow);
    }

    label {
      font-size: 0.9rem;
      color: #c6d5ed;
      display: grid;
      gap: 0.34rem;
    }

    input, select, textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #3d577f;
      background: #101c31;
      color: var(--text);
      padding: 0.67rem 0.72rem;
      font: inherit;
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #5cc7ff;
      box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
    }

    textarea { min-height: 120px; resize: vertical; }

    .field-help {
      font-size: 0.8rem;
      color: #a9c0e0;
    }

    .consent-line {
      display: flex;
      gap: 0.45rem;
      align-items: flex-start;
      font-size: 0.84rem;
      color: #c6d5ed;
    }

    .consent-line input {
      width: auto;
      margin-top: 0.2rem;
    }

    .contact-panel {
      background: rgba(16, 25, 44, 0.92);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1rem;
      display: grid;
      gap: 0.7rem;
      align-content: start;
      box-shadow: var(--glow);
    }

    .contact-panel a {
      color: #bde8ff;
      text-decoration: none;
    }

    .contact-hours {
      margin: 0.15rem 0 0.2rem;
      color: #c8d9f2;
      font-size: 0.88rem;
      line-height: 1.45;
      border-left: 2px solid rgba(125, 211, 252, 0.45);
      padding-left: 0.55rem;
    }

    .fast-response {
      margin: 0.2rem 0 0.35rem;
      color: #d7ffeb;
      font-weight: 700;
      background: rgba(34, 197, 94, 0.14);
      border: 1px solid rgba(34, 197, 94, 0.28);
      border-radius: 10px;
      padding: 0.5rem 0.65rem;
      font-size: 0.9rem;
    }

    .contact-cta {
      display: grid;
      gap: 0.5rem;
      margin-top: 0.3rem;
    }

    .contact-cta .btn { width: 100%; }

    footer {
      border-top: 1px solid rgba(165, 182, 214, 0.2);
      padding: 1.2rem 0 1.7rem;
      color: var(--muted);
      font-size: 0.9rem;
      text-align: center;
    }

    footer a {
      color: #bde8ff;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .mobile-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 40;
      display: none;
      gap: 0.65rem;
      padding: 0.75rem 0.75rem 1.15rem;
      background: linear-gradient(180deg, rgba(11, 18, 32, 0.2), rgba(11, 18, 32, 0.92));
      border-top: 1px solid rgba(82, 116, 174, 0.28);
      backdrop-filter: blur(10px);
    }

    @supports (padding: max(0px)) {
      .mobile-cta {
        padding-bottom: max(1.15rem, calc(env(safe-area-inset-bottom) + 0.75rem));
      }
    }

    .mobile-cta .btn {
      flex: 1;
      width: 100%;
      font-size: 0.93rem;
      padding: 0.72rem 0.9rem;
    }

    .toast {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 60;
      background: linear-gradient(145deg, rgba(16, 185, 129, 0.95), rgba(22, 163, 74, 0.95));
      color: #052012;
      border-radius: 10px;
      padding: 0.7rem 0.9rem;
      font-weight: 700;
      box-shadow: 0 16px 34px rgba(2, 8, 23, 0.45);
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity 220ms ease, transform 220ms ease;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    .back-top {
      position: fixed;
      right: 1rem;
      bottom: 4.3rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(125, 211, 252, 0.35);
      background: rgba(17, 27, 47, 0.92);
      color: #d7e7ff;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity 220ms ease, transform 220ms ease;
      z-index: 55;
    }

    .back-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .testimonials {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 0.4rem;
      position: relative;
      z-index: 1;
    }

    .avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(125, 211, 252, 0.5), rgba(34, 197, 94, 0.4));
      border: 1px solid rgba(125, 211, 252, 0.38);
      color: #061322;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      flex: 0 0 auto;
    }

    .role {
      color: var(--muted);
      font-size: 0.85rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 650ms ease, transform 650ms ease;
      transition-delay: var(--delay, 0ms);
    }

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

    @keyframes heroFade {
      from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes stickerFloat {
      0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
      50% { transform: translateY(-4px) rotate(var(--r, 0deg)); }
    }

    @keyframes ctaPulse {
      0%, 82%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
      }
      86% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.34);
      }
      92% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }

      .btn-highlight {
        animation: none !important;
      }
    }

    @media (max-width: 920px) {
      .contact-wrap { grid-template-columns: 1fr; }
    }

    @media (max-width: 680px) {
      .nav {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr auto;
      }
      .container {
        width: min(var(--max), calc(100% - 1.2rem));
      }
      .menu-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0.45rem;
        flex-direction: column;
        gap: 0.25rem;
        background: rgba(12, 21, 37, 0.94);
        border: 1px solid rgba(82, 116, 174, 0.24);
        border-radius: 10px;
        padding: 0.45rem;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        padding: 0.5rem 0.45rem;
        border-radius: 8px;
      }
      .nav-links a:hover,
      .nav-links a.active {
        background: rgba(125, 211, 252, 0.12);
      }
      .hero { padding-top: 4.3rem; }
      .hero { padding-bottom: 2.5rem; }
      h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
      .lead { font-size: 1rem; }
      .hero-actions .btn { width: 100%; }
      .hero-card { grid-template-columns: 1fr; }
      .hero-visual { min-height: 190px; }
      .hero-sticker { font-size: 0.64rem; }
      .sticker-web { top: 12px; }
      .sticker-app { bottom: 12px; }
      .trust-stats { grid-template-columns: 1fr; }
      .section-title { font-size: clamp(1.3rem, 7vw, 1.55rem); }
      .section-sub { font-size: 0.95rem; }
      .price { font-size: 1.45rem; }
      .card p { font-size: 0.92rem; }
      .card { padding: 0.82rem; gap: 0.45rem; }
      .price-card { padding: 0.9rem; }
      .card h3 { font-size: 1rem; }
      ul { gap: 0.25rem; font-size: 0.9rem; }
      .icon-badge { width: 30px; height: 30px; }
      .icon-badge svg { width: 16px; height: 16px; }
      .mini-tag-corner {
        position: static;
        display: inline-flex;
        width: fit-content;
        margin-top: 0.12rem;
      }
      .step { padding: 0.78rem; }
      .faq-item { padding: 0.65rem 0.75rem; }
      .chips { gap: 0.45rem; }
      .chip { font-size: 0.82rem; padding: 0.4rem 0.65rem; }
      .process { grid-template-columns: 1fr; }
      .cv-steps { grid-template-columns: 1fr; }
      .compare-grid { grid-template-columns: 1fr; }
      .contact-panel p { font-size: 0.92rem; }
      .faq-toggle { font-size: 0.95rem; }
      body { padding-bottom: 4.8rem; }
      .mobile-cta { display: flex; }
      .toast {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 5.3rem;
      }
      .back-top {
        bottom: 9.6rem;
      }
    }
