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

    :root {
      --green:          #00C853;
      --green-dark:     #00A844;
      --green-light:    #E8FBEF;
      --orange:         #FF9800;
      --orange-dark:    #F57C00;
      --text:           #111827;
      --text-muted:     #6B7280;
      --border:         #E5E7EB;
      --bg:             #F9FAFB;
      --surface:        #FFFFFF;
      --dark:           #060d0d;
      --dark-mid:       #0d1a1a;
      --dark-border:    rgba(255,255,255,0.07);
      --nav-h:          68px;
      --radius:         16px;
      --font-display:   'Google Sans Flex', sans-serif;
      --font-body:      'DM Sans', sans-serif;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 12px);
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--surface);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a   { text-decoration: none; color: inherit; }

    /* Accesibilidad: skip link + focus visible */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 2000;
      background: var(--green);
      color: #060d0d;
      font-weight: 700;
      padding: 12px 20px;
      border-radius: 0 0 10px 0;
    }
    .skip-link:focus { left: 0; }

    a:focus-visible, button:focus-visible, summary:focus-visible,
    input:focus-visible, select:focus-visible {
      outline: 3px solid var(--orange);
      outline-offset: 2px;
    }

    .section-inner { max-width: 1120px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
    }

    .section-head    { text-align: center; margin-bottom: 56px; }

    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-top: 10px;
      color: var(--text);
    }

    .section-subtitle {
      margin-top: 14px;
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      padding: 0 32px;
      transition: background 0.35s, box-shadow 0.35s;
    }

    .navbar.scrolled {
      background: rgba(6,13,13,0.94);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 var(--dark-border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .nav-logo {
      display: block;
      overflow: hidden;
      flex-shrink: 0;        /* no dejar que el flex apriete/aplaste el logo */
      height: 54px;          /* ventana visible — solo el contenido del logo */
      text-decoration: none;
      line-height: 0;
    }
    .nav-logo img {
      height: 116px;         /* imagen escalada para que el logo llene la ventana */
      width: auto;
      margin-top: -31px;     /* desplaza hacia arriba para centrar el contenido real */
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 4px;
      margin-left: auto;
      list-style: none;
    }

    .nav-links a {
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 500;
      white-space: nowrap;
      color: rgba(255,255,255,0.72);
      transition: color 0.2s, background 0.2s;
    }

    .nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }

    .nav-cta {
      background: var(--orange) !important;
      color: white !important;
      font-weight: 600 !important;
      padding: 10px 20px !important;
      border-radius: 10px !important;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--orange-dark) !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 6px 20px rgba(255,152,0,0.35) !important;
    }

    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: white;
      margin-left: auto;
      flex-direction: column;
      gap: 5px;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(6,13,13,0.97);
      backdrop-filter: blur(18px);
      padding: 20px 24px 28px;
      z-index: 999;
      border-bottom: 1px solid var(--dark-border);
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      padding: 12px 16px;
      border-radius: 10px;
      color: rgba(255,255,255,0.78);
      font-size: 1rem;
      font-weight: 500;
      transition: background 0.2s;
    }

    .mobile-menu a:hover { background: rgba(255,255,255,0.08); }

    .mobile-cta {
      background: var(--orange) !important;
      color: white !important;
      text-align: center;
      margin-top: 8px;
      border-radius: 10px !important;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--dark);
      padding: 0 24px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-orb-1 {
      position: absolute;
      width: 900px; height: 900px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,200,83,0.14) 0%, transparent 65%);
      top: -300px; left: -200px;
      animation: orb-drift 14s ease-in-out infinite alternate;
    }

    .hero-orb-2 {
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,168,68,0.09) 0%, transparent 65%);
      bottom: -200px; right: 5%;
      animation: orb-drift 18s ease-in-out infinite alternate-reverse;
    }

    @keyframes orb-drift {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(50px,35px) scale(1.12); }
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      grid-template-areas:
        "copy visual"
        "more visual";
      column-gap: 72px;
      row-gap: 0;
      align-items: center;
      padding: calc(var(--nav-h) + 56px) 0 88px;
      position: relative;
      z-index: 1;
    }

    .hero-copy   { grid-area: copy; }
    .hero-more   { grid-area: more; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      vertical-align: middle;
      gap: 8px;
      background: rgba(0,200,83,0.1);
      border: 1px solid rgba(0,200,83,0.22);
      border-radius: 100px;
      padding: 6px 16px 6px 10px;
      margin-bottom: 28px;
    }

    .badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse-dot 2.2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.45; transform: scale(0.75); }
    }

    .hero-badge span {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--green);
      letter-spacing: 0.04em;
    }

    /* Badge oficial: Proveedor de Tecnología de Meta */
    .meta-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 100px;
      padding: 7px 16px 7px 12px;
      margin: 0 0 28px 10px;
      vertical-align: middle;
    }

    .meta-badge svg { flex-shrink: 0; }

    .meta-badge span {
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255,255,255,0.82);
      letter-spacing: 0.02em;
      line-height: 1.2;
    }

    .meta-badge span b { color: #0866FF; font-weight: 700; }

    @media (max-width: 720px) {
      .meta-badge { margin-left: 0; }
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.4rem, 4.8vw, 3.8rem);
      line-height: 1.06;
      letter-spacing: -0.03em;
      color: white;
      margin-bottom: 22px;
    }

    .hero-title em { font-style: normal; color: var(--green); }

    .hero-sub {
      font-size: 1.08rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 520px;
    }

    .hero-features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      max-width: 520px;
      margin-bottom: 34px;
    }

    .hero-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255,255,255,0.75);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .hero-feature::before {
      content: '•';
      color: var(--green);
      font-size: 1.3rem;
      line-height: 1;
      margin-top: 3px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-orange {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: white;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 14px 28px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .btn-orange:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(255,152,0,0.38);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.65);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 14px 20px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.14);
      transition: all 0.2s;
    }

    .btn-ghost:hover {
      color: white;
      border-color: rgba(255,255,255,0.28);
      background: rgba(255,255,255,0.05);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 42px;
    }

    .stat-card {
      padding: 20px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      min-width: 0;
    }

    .stat-value {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.7rem;
      color: white;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.5;
    }

    /* Dashboard Mockup */
    .hero-visual { grid-area: visual; position: relative; display: flex; justify-content: center; }

    .mockup-wrap { position: relative; width: 100%; max-width: 540px; }

    .mockup-glow {
      position: absolute;
      inset: -50px;
      background: radial-gradient(ellipse at center, rgba(0,200,83,0.22) 0%, transparent 62%);
      filter: blur(24px);
      z-index: 0;
    }

    .dashboard-mock {
      background: #0d1a1a;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.07);
      overflow: hidden;
      box-shadow: 0 28px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,200,83,0.08);
      position: relative;
      z-index: 1;
      animation: mock-float 7s ease-in-out infinite;
    }

    @keyframes mock-float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    .mock-bar {
      background: #111f1f;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot.r { background: #FF5F57; }
    .dot.y { background: #FEBC2E; }
    .dot.g { background: #28C840; }

    .mock-url-bar {
      flex: 1; height: 20px;
      background: rgba(255,255,255,0.05);
      border-radius: 5px;
      margin: 0 10px;
    }

    .mock-body { display: flex; height: 264px; }

    .ms {
      width: 100px;
      background: #0d1a1a;
      border-right: 1px solid rgba(255,255,255,0.04);
      padding: 10px 7px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .ms-logo {
      height: 20px;
      background: linear-gradient(90deg, var(--green), rgba(0,200,83,0.25));
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .ms-nav { height: 26px; border-radius: 6px; display: flex; align-items: center; padding: 0 7px; gap: 5px; }
    .ms-nav.active { background: rgba(0,200,83,0.14); }

    .ms-icon { width: 11px; height: 11px; border-radius: 3px; }
    .ms-icon.g { background: var(--green); }
    .ms-icon.m { background: rgba(255,255,255,0.18); }

    .ms-text { flex: 1; height: 7px; border-radius: 4px; }
    .ms-text.g { background: rgba(0,200,83,0.45); }
    .ms-text.m { background: rgba(255,255,255,0.09); }

    .mc { flex: 1; background: #131f1f; display: flex; flex-direction: column; }

    .mc-toolbar {
      height: 34px;
      background: #0d1a1a;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      padding: 0 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mc-title { height: 9px; width: 75px; background: rgba(255,255,255,0.48); border-radius: 5px; }
    .mc-chip  { height: 17px; width: 55px; border-radius: 20px; background: rgba(0,200,83,0.22); margin-left: auto; }

    .mc-kanban { flex: 1; display: flex; gap: 8px; padding: 9px; }

    .kc {
      flex: 1;
      border-radius: 7px;
      background: rgba(255,255,255,0.025);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .kc-head { height: 26px; display: flex; align-items: center; padding: 0 7px; }
    .kc-head.red    { background: rgba(198,40,40,0.72); }
    .kc-head.orange { background: rgba(230,81,0,0.72); }
    .kc-head.green  { background: rgba(46,125,50,0.72); }
    .kc-head.blue   { background: rgba(21,101,192,0.72); }
    .kc-title { height: 6px; width: 45px; border-radius: 3px; background: rgba(255,255,255,0.65); }

    .kc-body { padding: 5px; display: flex; flex-direction: column; gap: 4px; }

    .kcard {
      background: rgba(255,255,255,0.055);
      border-radius: 5px;
      padding: 5px;
      border: 1px solid rgba(255,255,255,0.035);
    }

    .kline { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.18); margin-bottom: 3px; }
    .kline.s { width: 58%; }
    .kline.g { background: rgba(0,200,83,0.42); width: 38%; }

    .wsp-bubble {
      position: absolute;
      bottom: -18px; left: -28px;
      background: #25D366;
      color: white;
      padding: 8px 14px;
      border-radius: 16px 16px 16px 3px;
      font-size: 0.7rem;
      font-weight: 600;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(37,211,102,0.45);
      animation: wsp-pop 3.5s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes wsp-pop {
      0%,65%,100% { transform: translateY(0); }
      80%          { transform: translateY(-7px); }
    }

    .notif-dot {
      position: absolute;
      top: 48px; right: -14px;
      background: var(--orange);
      color: white;
      font-size: 0.62rem;
      font-weight: 700;
      width: 30px; height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(255,152,0,0.5);
      animation: notif-pulse 2.2s ease-in-out infinite 0.8s;
      z-index: 2;
    }

    @keyframes notif-pulse {
      0%,100% { transform: scale(1); }
      50%      { transform: scale(1.18); }
    }

    /* BENEFITS */
    .benefits { padding: 100px 24px; background: var(--surface); }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .benefit-card {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 32px 28px;
      border: 1px solid var(--border);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    /* Acento superior que se dibuja al pasar el mouse */
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), #7ee2b8);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .benefit-card:hover::before { transform: scaleX(1); }

    /* Brillo suave en la esquina */
    .benefit-card::after {
      content: '';
      position: absolute;
      top: -70px; right: -70px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,200,83,0.12), transparent 70%);
      opacity: 0;
      transition: opacity 0.35s;
      pointer-events: none;
    }

    .benefit-card:hover::after { opacity: 1; }

    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 48px rgba(0,0,0,0.1);
      border-color: rgba(0,200,83,0.28);
    }

    .benefit-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    }

    /* Cada tarjeta con su propio color de ícono */
    .benefit-card:nth-child(2) .benefit-icon { background: #FFF3E0; }
    .benefit-card:nth-child(3) .benefit-icon { background: #E3F2FD; }
    .benefit-card:nth-child(4) .benefit-icon { background: #F3E8FF; }
    .benefit-card:nth-child(5) .benefit-icon { background: #FFF8E1; }
    .benefit-card:nth-child(6) .benefit-icon { background: #E0F7FA; }
    .benefit-card:nth-child(7) .benefit-icon { background: #FCE4EC; }
    .benefit-card:nth-child(8) .benefit-icon { background: #E8EAF6; }

    .benefit-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 10px;
    }

    .benefit-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.68; }

    /* USE CASES */
    .usecases { padding: 100px 24px; background: var(--bg); }

    .uc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 22px;
    }

    .uc-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 30px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .uc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), #7ee2b8);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .uc-card:hover::before { transform: scaleX(1); }

    .uc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      border-color: rgba(0,200,83,0.28);
    }

    .uc-icon {
      width: 54px; height: 54px;
      border-radius: 15px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
      transition: transform 0.25s;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    }

    .uc-card:hover .uc-icon { transform: scale(1.1) rotate(-4deg); }

    .uc-card:nth-child(2) .uc-icon { background: #F3E8FF; }
    .uc-card:nth-child(3) .uc-icon { background: #E3F2FD; }
    .uc-card:nth-child(4) .uc-icon { background: #FFF8E1; }
    .uc-card:nth-child(5) .uc-icon { background: #FFF3E0; }
    .uc-card:nth-child(6) .uc-icon { background: #E0F7FA; }

    /* Mini-etiquetas: qué hace el bot en ese rubro */
    .uc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 14px; }

    .uc-tag {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      background: var(--green-light);
      color: var(--green-dark);
      letter-spacing: 0.02em;
    }

    .uc-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.06rem;
      color: var(--text);
      margin-bottom: 9px;
    }

    .uc-desc { font-size: 0.89rem; color: var(--text-muted); line-height: 1.65; }

    .uc-note {
      text-align: center;
      margin-top: 36px;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .uc-note strong { color: var(--green); }

    /* RESPONSIBLE USE */
    .responsible { padding: 88px 24px; background: var(--surface); }

    .resp-card {
      max-width: 760px;
      margin: 0 auto;
      background: var(--green-light);
      border: 1px solid rgba(0,200,83,0.22);
      border-radius: 20px;
      padding: 40px 40px;
    }

    .resp-card .section-label { display: block; margin-bottom: 10px; }

    .resp-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 14px;
    }

    .resp-desc { font-size: 0.95rem; color: #14532d; line-height: 1.7; margin-bottom: 22px; }

    .resp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }

    .resp-col h4 {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .resp-col.ok h4 { color: var(--green-dark); }
    .resp-col.no h4 { color: #B91C1C; }

    .resp-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .resp-col li { font-size: 0.85rem; color: #1f2937; line-height: 1.55; padding-left: 18px; position: relative; }
    .resp-col.ok li::before { content: '✓'; position: absolute; left: 0; color: var(--green-dark); font-weight: 700; }
    .resp-col.no li::before { content: '✕'; position: absolute; left: 0; color: #B91C1C; font-weight: 700; }

    .resp-link { font-size: 0.88rem; font-weight: 600; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; }
    .resp-link:hover { text-decoration: underline; }

    /* HOW IT WORKS */
    .how { padding: 100px 24px; background: var(--bg); }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
      margin-top: 14px;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 42px 26px 32px;
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 44px rgba(0,0,0,0.09);
      border-color: rgba(0,200,83,0.3);
    }

    /* Píldora "Paso N" montada sobre el borde superior */
    .step-badge {
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: #04150c;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 6px 16px rgba(0,200,83,0.35);
    }

    /* Flecha conectora entre pasos */
    .step:not(:last-child)::after {
      content: '\2192';
      position: absolute;
      top: 50%; right: -32px;
      transform: translateY(-50%);
      color: var(--green);
      font-size: 1.6rem;
      font-weight: 700;
      opacity: 0.8;
      animation: arrow-nudge 1.8s ease-in-out infinite;
    }

    @keyframes arrow-nudge {
      0%, 100% { transform: translateY(-50%) translateX(0); }
      50%      { transform: translateY(-50%) translateX(4px); }
    }

    .step-num {
      width: 66px; height: 66px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
      box-shadow: 0 10px 24px rgba(0,200,83,0.28), 0 0 0 7px var(--green-light);
      transition: transform 0.25s;
    }

    .step:hover .step-num { transform: scale(1.08) rotate(-4deg); }

    .step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--text); margin-bottom: 10px; }
    .step-desc  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; max-width: 240px; }

    /* PLANS */
    .plans { padding: 100px 24px; background: var(--dark); }
    .plans .section-title    { color: white; }
    .plans .section-subtitle { color: rgba(255,255,255,0.4); }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .plan-card {
      background: var(--dark-mid);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, border-color 0.25s;
      position: relative;
    }

    .plan-card:hover { transform: translateY(-4px); border-color: rgba(0,200,83,0.3); }

    .plan-card.featured {
      border-color: var(--green);
      background: linear-gradient(160deg, rgba(0,200,83,0.09) 0%, var(--dark-mid) 60%);
      transform: translateY(-10px);
    }

    .plan-card.featured:hover { transform: translateY(-14px); }

    .plan-badge {
      position: absolute;
      top: -14px; left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: #060d0d;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 5px 16px;
      border-radius: 100px;
      white-space: nowrap;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .plan-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.62);
      margin-bottom: 16px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 24px; }

    .price-cur    { font-size: 1.2rem; font-weight: 600; color: white; }
    .price-amt    { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: white; line-height: 1; }
    .price-period { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

    .plan-hr { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 24px; }

    .plan-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
      margin-bottom: 28px;
    }

    .plan-feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.87rem;
      color: rgba(255,255,255,0.62);
    }

    .feat-check {
      flex-shrink: 0;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(0,200,83,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 10px;
      margin-top: 1px;
    }

    .plan-feat.off    { color: rgba(255,255,255,0.32); }
    .feat-check.off   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.32); }

    .btn-plan {
      width: 100%;
      padding: 13px 24px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.88rem;
      cursor: pointer;
      border: none;
      font-family: var(--font-body);
      transition: all 0.2s;
    }

    .btn-plan.primary { background: var(--orange); color: white; }
    .btn-plan.primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,152,0,0.38); }
    .btn-plan.outline { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.14); }
    .btn-plan.outline:hover { border-color: rgba(255,255,255,0.28); color: white; background: rgba(255,255,255,0.05); }

    /* FAQ */
    .faq { padding: 100px 24px; background: var(--surface); }

    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .faq-item[open] {
      border-color: rgba(0,200,83,0.35);
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.96rem;
      color: var(--text);
      user-select: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-chevron {
      flex-shrink: 0;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 700;
      transition: transform 0.25s;
    }

    .faq-item[open] .faq-chevron { transform: rotate(45deg); }

    .faq-answer {
      padding: 0 22px 20px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
    }

    /* TRIAL FORM */
    .trial { padding: 100px 24px; background: var(--bg); }

    .form-card {
      max-width: 620px;
      margin: 0 auto;
      background: var(--surface);
      border-radius: 20px;
      padding: 48px 44px;
      box-shadow: 0 14px 56px rgba(0,0,0,0.1);
      border: 1px solid var(--border);
    }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1 / -1; }

    .form-label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
    .form-label .req { color: var(--green); }

    .form-input, .form-select {
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 0.9rem;
      font-family: var(--font-body);
      color: var(--text);
      background: var(--surface);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      width: 100%;
      appearance: auto;
    }

    .form-input:focus, .form-select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(0,200,83,0.1);
    }

    .form-input.error, .form-select.error { border-color: #DC2626; }

    .form-error { font-size: 0.77rem; color: #DC2626; display: none; }
    .form-error.show { display: block; }

    .btn-submit {
      width: 100%;
      margin-top: 8px;
      padding: 15px 24px;
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      font-family: var(--font-body);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-submit:hover:not(:disabled) {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(255,152,0,0.38);
    }

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

    .form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 16px; }

    .form-feedback { display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 16px 0; }
    .form-feedback.show { display: flex; }
    .fb-icon { font-size: 3rem; }

    .fb-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); }
    .fb-desc  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; max-width: 360px; }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 52px 24px;
      border-top: 1px solid var(--dark-border);
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      text-align: center;
    }

    .footer-logo img {
      height: 80px;
      width: auto;
      /* El canvas tiene padding transparente; 80px hace el logo visible */
    }

    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.36); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.65); }

    .footer-social { display: flex; gap: 14px; justify-content: center; }

    .footer-social a {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.55);
      transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
    }

    .footer-social a:hover {
      color: white;
      background: rgba(0,200,83,0.18);
      border-color: rgba(0,200,83,0.4);
      transform: translateY(-2px);
    }

    .footer-social svg { width: 20px; height: 20px; fill: currentColor; }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

    /* WHATSAPP FLOAT */
    .wsp-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 900;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 22px rgba(37,211,102,0.48);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .wsp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.58); }
    .wsp-float svg { width: 28px; height: 28px; fill: white; }

    /* PHONE CHAT DEMO (hero) */
    .phone-chat {
      position: absolute;
      bottom: -36px; left: -46px;
      width: 244px;
      background: #0b141a;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(37,211,102,0.12);
      z-index: 2;
      overflow: hidden;
      animation: mock-float 7s ease-in-out infinite 1.4s;
    }

    .pc-head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      background: #111f1f;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .pc-avatar {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      flex-shrink: 0;
    }

    .pc-id     { display: flex; flex-direction: column; line-height: 1.25; }
    .pc-name   { font-size: 0.68rem; font-weight: 700; color: white; }
    .pc-status { font-size: 0.58rem; color: var(--green); }

    .pc-body {
      padding: 10px 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .pc-msg {
      max-width: 90%;
      padding: 6px 9px;
      border-radius: 10px;
      font-size: 0.63rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.92);
      opacity: 0;
      animation: pc-in 16s ease infinite;
    }

    .pc-msg.in  { background: #1f2c33; border-top-left-radius: 3px;  align-self: flex-start; }
    .pc-msg.out { background: #005c4b; border-top-right-radius: 3px; align-self: flex-end; }

    .pc-m1 { animation-delay: 0.5s; }
    .pc-m2 { animation-delay: 2.3s; }
    .pc-m3 { animation-delay: 4.4s; }
    .pc-m4 { animation-delay: 6.6s; }
    .pc-m5 { animation-delay: 9.0s; }

    @keyframes pc-in {
      0%        { opacity: 0; transform: translateY(9px) scale(0.97); }
      2.5%      { opacity: 1; transform: translateY(0) scale(1); }
      82%       { opacity: 1; }
      88%, 100% { opacity: 0; }
    }

    /* Nota de voz simulada */
    .pc-voice { display: flex; align-items: center; gap: 6px; min-width: 120px; }

    .pc-play {
      width: 16px; height: 16px;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7px;
      flex-shrink: 0;
    }

    .pc-wave { display: flex; align-items: center; gap: 2px; height: 14px; }

    .pc-wave i {
      width: 2px;
      border-radius: 2px;
      background: rgba(255,255,255,0.55);
      animation: pc-wave 1.1s ease-in-out infinite;
    }

    .pc-wave i:nth-child(1) { height: 5px; }
    .pc-wave i:nth-child(2) { height: 10px; animation-delay: 0.1s; }
    .pc-wave i:nth-child(3) { height: 7px;  animation-delay: 0.2s; }
    .pc-wave i:nth-child(4) { height: 12px; animation-delay: 0.3s; }
    .pc-wave i:nth-child(5) { height: 6px;  animation-delay: 0.4s; }
    .pc-wave i:nth-child(6) { height: 9px;  animation-delay: 0.5s; }
    .pc-wave i:nth-child(7) { height: 4px;  animation-delay: 0.6s; }

    @keyframes pc-wave {
      0%, 100% { transform: scaleY(0.7); }
      50%      { transform: scaleY(1.25); }
    }

    .pc-paybtn {
      display: block;
      margin-top: 5px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 7px;
      text-align: center;
      padding: 4px 8px;
      font-weight: 700;
      color: #7ee2b8;
    }

    /* MARQUEE DE RUBROS */
    .marquee-strip {
      background: var(--dark);
      padding: 4px 0 30px;
      overflow: hidden;
      position: relative;
    }

    .marquee-strip::before,
    .marquee-strip::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 90px;
      z-index: 1;
      pointer-events: none;
    }

    .marquee-strip::before { left: 0;  background: linear-gradient(90deg, var(--dark), transparent); }
    .marquee-strip::after  { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }

    .marquee-track {
      display: flex;
      gap: 44px;
      width: max-content;
      padding-right: 44px;
      animation: marquee 36s linear infinite;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      color: rgba(255,255,255,0.38);
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .marquee-item::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
      opacity: 0.55;
    }

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

    /* FEATURES (tabs) */
    .features { padding: 100px 24px; background: var(--bg); }

    .feat-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
    }

    .feat-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--surface);
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.22s;
    }

    .feat-tab:hover { border-color: rgba(0,200,83,0.4); color: var(--text); transform: translateY(-1px); }

    .feat-tab.active {
      background: var(--green);
      border-color: var(--green);
      color: #04150c;
      box-shadow: 0 8px 24px rgba(0,200,83,0.28);
    }

    .feat-panel { display: none; }

    .feat-panel.active {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      animation: panel-in 0.45s ease;
    }

    @keyframes panel-in {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .feat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 26px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    /* Acento superior que se dibuja al pasar el mouse */
    .feat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), #7ee2b8);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .feat-card:hover::before { transform: scaleX(1); }

    /* Brillo suave en la esquina */
    .feat-card::after {
      content: '';
      position: absolute;
      top: -70px; right: -70px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,200,83,0.12), transparent 70%);
      opacity: 0;
      transition: opacity 0.35s;
      pointer-events: none;
    }

    .feat-card:hover::after { opacity: 1; }

    .feat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 44px rgba(0,0,0,0.09);
      border-color: rgba(0,200,83,0.3);
    }

    .feat-emoji {
      width: 54px; height: 54px;
      border-radius: 15px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
      transition: transform 0.25s;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    }

    .feat-card:hover .feat-emoji { transform: scale(1.12) rotate(-4deg); }

    /* Cada card del panel con su propio color de ícono */
    .feat-panel .feat-card:nth-child(2) .feat-emoji { background: #FFF3E0; }
    .feat-panel .feat-card:nth-child(3) .feat-emoji { background: #E3F2FD; }
    .feat-panel .feat-card:nth-child(4) .feat-emoji { background: #F3E8FF; }
    .feat-panel .feat-card:nth-child(5) .feat-emoji { background: #FFF8E1; }
    .feat-panel .feat-card:nth-child(6) .feat-emoji { background: #E0F7FA; }

    .feat-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 8px;
    }

    .feat-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

    .feat-note {
      text-align: center;
      margin-top: 34px;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .feat-note strong { color: var(--green-dark); }

    /* Glow sutil del CTA principal */
    .btn-orange.pulse { animation: cta-glow 3.2s ease-in-out infinite; }

    @keyframes cta-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,152,0,0.42); }
      50%      { box-shadow: 0 0 0 9px rgba(255,152,0,0); }
    }

    /* Ícono de beneficio con vida al pasar el mouse */
    .benefit-card:hover .benefit-icon { transform: scale(1.1) rotate(-5deg); }
    .benefit-icon { transition: transform 0.25s; }

    /* SCROLL REVEAL */
    .reveal { opacity: 0; transform: translateY(22px) scale(0.985); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .dashboard-mock, .wsp-bubble, .notif-dot, .hero-orb-1, .hero-orb-2, .badge-dot,
      .phone-chat, .marquee-track, .pc-wave i, .btn-orange.pulse,
      .step:not(:last-child)::after { animation: none; }
      .pc-msg { animation: none; opacity: 1; }
      .feat-panel.active { animation: none; }
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      /* Móvil: primero el mensaje (badge + título + intro), después el chat animado */
      .hero-inner    {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "copy" "visual" "more";
        text-align: center;
        row-gap: 44px;
      }
      .hero-sub      { margin: 0 auto; }
      .hero-actions  { justify-content: center; }
      .hero-stats    { justify-content: center; }
      .mockup-wrap   { max-width: 400px; }
      .phone-chat    { left: -10px; bottom: -26px; width: 205px; }
      .pc-msg        { font-size: 0.58rem; }
      .plans-grid    { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
      .plan-card.featured { transform: none; }
      .plan-card.featured:hover { transform: translateY(-4px); }
      .steps         { grid-template-columns: 1fr; gap: 40px; }
      .step:not(:last-child)::after { display: none; }
      .form-grid     { grid-template-columns: 1fr; }
      .form-card     { padding: 36px 28px; }
      .resp-cols     { grid-template-columns: 1fr; }
      .resp-card     { padding: 32px 26px; }
    }

    @media (max-width: 900px) {
      .nav-links    { display: none; }
      .nav-hamburger{ display: flex; }
    }

    @media (max-width: 640px) {
      .hero-title   { font-size: clamp(1.6rem, 7.2vw, 2.4rem); }
      .benefits, .how, .plans, .faq, .trial { padding: 72px 20px; }
      .form-card    { padding: 28px 20px; }
      .faq-item summary { padding: 16px 18px; font-size: 0.92rem; }
      .faq-answer   { padding: 0 18px 18px; }
    }
