  :root{
    --gold-deep:#D9A544;
    --gold:#F0B429;
    --gold-light:#F5C242;
    --gold-pale:#F8D889;
    --cream:#FBEDCB;
    --paper:#FFFDF6;
    --sage:#7C917B;
    --green:#4E6B4F;
    --green-deep:#2F3E2B;
    --brown:#3A2B20;
    --olive:#8A7A3E;
    --ink:#241A12;
    --muted:#6B6152;
    --line:rgba(58,43,32,0.12);
    --red-x:#C0392B;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}

  /* Títulos: Garet, peso 600 (no negrita pesada) */
  h1,h2,h3,h4{ font-family:'Plus Jakarta Sans', sans-serif; font-weight:600; letter-spacing:-0.01em; color:var(--brown); }

  .wrap{max-width:1180px; margin:0 auto; padding:20px 32px;}
  .eyebrow{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:12.5px; font-weight:600; letter-spacing:0.10em; text-transform:uppercase;
    color:var(--gold-deep);
    display:inline-flex; align-items:center; gap:10px;
  }
  .eyebrow::before{ content:''; width:16px; height:2px; background:var(--gold); border-radius:2px; }
  ::selection{ background:var(--gold-pale); color:var(--brown); }
  a:focus-visible, button:focus-visible{ outline:2px solid var(--green); outline-offset:3px; border-radius:4px; }
  .highlight{ color:var(--gold-deep); }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,253,246,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav{ max-width:1180px; margin:0 auto; padding:22px 32px; display:flex; align-items:center; justify-content:space-between; }
  .logo{ display:flex; align-items:center; gap:10px; }
  .logo-badge{
    width:36px; height:36px; border-radius:9px;
    display:flex; align-items:center; justify-content:center;
    flex:none; overflow:hidden;
  }
  .logo-text{ display:flex; flex-direction:column; line-height:1; }
  .logo-word{ font-family:'Plus Jakarta Sans', sans-serif; font-weight:700; font-size:18px; color:var(--brown); letter-spacing:-0.01em; }
  .logo-sub{ font-family:'Plus Jakarta Sans', sans-serif; font-weight:600; font-size:9.5px; letter-spacing:0.16em; color:var(--gold-deep); margin-top:2px; }
  .nav-links{ display:flex; align-items:center; gap:34px; font-size:14px; font-weight:500; color:var(--brown); font-family:'Open Sans',sans-serif; }
  .nav-links a{ opacity:0.7; transition:opacity .2s; }
  .nav-links a:hover{ opacity:1; }
  .nav-cta-group{ display:flex; align-items:center; gap:18px; }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family:'Plus Jakarta Sans', sans-serif; font-weight:600; font-size:14px;
    padding:12px 22px; border-radius:10px; cursor:pointer; border:1px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease; white-space:nowrap;
  }
  .btn-primary{ background:var(--green-deep); color:var(--paper); }
  .btn-primary:hover{ transform:translateY(-1px); box-shadow:0 10px 24px -8px rgba(47,62,43,0.45); }
  .btn-gold{ background:var(--gold); color:var(--brown); }
  .btn-gold:hover{ background:var(--gold-light); transform:translateY(-1px); }
  .btn-ghost{ font-weight:500; font-size:14px; color:var(--brown); opacity:0.75; font-family:'Open Sans',sans-serif; }
  .btn-ghost:hover{ opacity:1; }
  .btn-nav{ background:var(--green-deep); color:var(--paper); padding:6px 16px; font-size:13px; border-radius:8px; }
  .btn-lg{ padding:15px 28px; font-size:15px; }

  /* ---------- HERO ---------- */
  .hero{ position:relative; padding:120px 0 60px; }
  .hero-grid{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:56px; align-items:center; }
  .hero h1{ font-size:clamp(30px,3.8vw,46px); line-height:1.1; margin:18px 0 20px; font-weight:600; }
  .hero p.lead{ font-size:17px; color:var(--muted); max-width:480px; margin-bottom:30px; line-height:1.65; }
  .hero-ctas{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
  .trust-line{ margin-top:34px; display:flex; align-items:center; gap:10px; font-size:13px; color:var(--muted); font-weight:500; }
  .trust-dot{ width:6px; height:6px; border-radius:50%; background:var(--green); flex:none; }

  /* App mockup — fiel al screenshot real */
  .chat-stage{
    position:relative; border-radius:20px; overflow:hidden;
    background:linear-gradient(135deg, var(--green-deep) 0%, var(--olive) 55%, var(--gold) 100%);
    padding:18px;
    box-shadow:0 40px 70px -30px rgba(47,62,43,0.5);
  }
  .chat-window{
    background:#FAFAF7; border-radius:12px; overflow:hidden;
    display:grid; grid-template-columns:180px 1fr; min-height:380px;
  }
  .mockup-features{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; padding:0 4px; }
  .mf-chip{
    display:inline-flex; align-items:center; gap:6px;
    font-family:'Open Sans',sans-serif; font-size:12px; font-weight:500; color:var(--muted);
    background:rgba(58,43,32,0.05); border-radius:20px; padding:6px 12px 6px 10px;
  }
  .mf-chip svg{ width:13px; height:13px; color:var(--gold-deep); flex:none; }
  .chat-sidebar{
    background:#F5F3EE; border-right:1px solid rgba(0,0,0,0.07);
    padding:16px 12px; display:flex; flex-direction:column; gap:2px;
  }
  .sidebar-new{
    background:var(--gold); color:var(--brown);
    font-family:'Garet',sans-serif; font-weight:600;
    font-size:11px; text-align:center; padding:9px 8px; border-radius:8px; margin-bottom:14px;
    letter-spacing:0.03em;
  }
  .sidebar-item{
    font-size:12px; color:#6B6558; font-weight:500;
    padding:7px 8px; border-radius:6px; display:flex; align-items:center; gap:8px;
    transition:background .15s;
  }
  .sidebar-item:hover{ background:rgba(0,0,0,0.04); }
  .sidebar-icon{ width:14px; height:14px; opacity:0.55; flex:none; }
  .sidebar-divider{ height:1px; background:rgba(0,0,0,0.07); margin:10px 0; }
  .sidebar-project{ font-size:11px; color:#aaa; padding:6px 8px; font-style:italic; }

  /* Main chat area — greeting style */
  .chat-main-wrap{ display:flex; flex-direction:column; height:100%; }
  .chat-greeting{
    flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
    padding:28px 24px 16px; gap:16px;
  }
  .greeting-logo{
    width:44px; height:44px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
  }
  .greeting-text{
    font-family:'Garet',sans-serif; font-size:18px; font-weight:600;
    color:var(--ink); letter-spacing:-0.01em;
  }
  .suggestion-box{
    background:#F0EDE5; border-radius:10px; padding:14px 16px;
    width:100%; max-width:320px;
  }
  .suggestion-label{
    display:flex; align-items:center; gap:6px;
    font-size:10px; font-weight:600; color:var(--gold-deep);
    font-family:'Garet',sans-serif; letter-spacing:0.04em;
    margin-bottom:6px;
  }
  .suggestion-label-dot{
    width:14px; height:14px; border-radius:4px;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
  }
  .suggestion-text{ font-size:12px; color:var(--muted); line-height:1.5; }

  .chat-input-bar{
    border-top:1px solid rgba(0,0,0,0.07); padding:10px 14px;
    display:flex; align-items:center; gap:10px; background:#F5F3EE;
    position:relative;
  }
  .input-icon{
    width:26px; height:26px; border-radius:50%; border:1px solid rgba(0,0,0,0.12);
    display:flex; align-items:center; justify-content:center; flex:none;
  }
  .input-fake{ flex:1; font-size:11.5px; color:#bbb; font-family:'Open Sans',sans-serif; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; }
  .input-brand{ font-size:10px; color:var(--gold-deep); font-family:'Garet',sans-serif; font-weight:600; white-space:nowrap; }
  .send-pill{
    background:var(--gold); color:var(--brown);
    font-family:'Garet',sans-serif; font-weight:600; font-size:11px;
    padding:7px 16px; border-radius:8px; white-space:nowrap;
  }

  /* ---------- SECTION SHARED ---------- */
  section{ padding:96px 0; }
  .section-head{ max-width:640px; margin-bottom:52px; }
  .section-head h2{ font-size:clamp(24px,3vw,36px); margin:14px 0 12px; font-weight:600; }
  .section-head p{ font-size:16px; color:var(--muted); line-height:1.7; }
  .center{ text-align:center; margin-left:auto; margin-right:auto; }

  .reveal{ opacity:0; transform:translateY(16px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.is-visible{ opacity:1; transform:translateY(0); }

  /* ---------- QUE ES ---------- */
  .que-es{ background:var(--cream); }
  .que-es .section-head{ max-width:760px; }
  .que-es .section-head p{ font-size:16px; color:var(--ink); line-height:1.75; }
  .que-es-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
  .que-card{ background:var(--paper); border-radius:14px; padding:32px 28px; border:1px solid var(--line); }
  .que-card .icon{
    width:42px; height:42px; border-radius:10px; background:var(--gold);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .que-card h3{ font-size:18px; margin-bottom:10px; font-weight:600; }
  .que-card p{ font-size:14px; color:var(--muted); line-height:1.75; }

  /* ---------- BENEFICIOS ---------- */
  .beneficios{ background:var(--paper); }
  .benefit-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .benefit-card{
    background:var(--cream); border:1px solid var(--line);
    border-radius:14px; padding:26px 22px;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .benefit-card:hover{ transform:translateY(-3px); box-shadow:0 10px 28px -10px rgba(58,43,32,0.14); }
  /* Icono SVG minimalista */
  .benefit-icon-wrap{
    width:36px; height:36px; margin-bottom:14px;
    color:var(--gold-deep);
  }
  .benefit-icon-wrap svg{ width:100%; height:100%; }
  .benefit-card h4{
    font-family:'Plus Jakarta Sans', sans-serif; font-size:14.5px; font-weight:600;
    color:var(--brown); margin-bottom:7px;
  }
  .benefit-card p{ font-size:13px; color:var(--muted); line-height:1.65; }

  /* ---------- FUNNEL ---------- */
  .funnel-section{ background:var(--paper); }
  .funnel-step{
    display:grid; grid-template-columns:1fr auto; align-items:center; gap:20px;
    padding:24px 28px; border-radius:12px; margin-bottom:12px;
    color:var(--paper);
  }
  .funnel-step h3{ color:var(--paper); font-size:18px; margin-bottom:4px; font-weight:600; }
  .funnel-step p{ font-size:13.5px; opacity:0.8; }
  .funnel-tag{
    font-family:'Garet',sans-serif; font-weight:600; font-size:11px;
    letter-spacing:0.06em; text-transform:uppercase; text-align:right; opacity:0.8;
  }
  .funnel-step.s1{ background:var(--green-deep); }
  .funnel-step.s2{ background:#3E5741; }
  .funnel-step.s3{ background:var(--olive); }
  .funnel-step.s4{ background:var(--gold-deep); color:var(--brown); }
  .funnel-step.s4 h3,.funnel-step.s4 p,.funnel-step.s4 .funnel-tag{ color:var(--brown); }
  .funnel-step.s5{ background:var(--gold); color:var(--brown); }
  .funnel-step.s5 h3,.funnel-step.s5 p,.funnel-step.s5 .funnel-tag{ color:var(--brown); }
  .funnel-arrow{ text-align:center; font-size:13px; color:var(--gold-deep); margin:-2px 0 8px; }

  /* ---------- VS ---------- */
  .vs-section{ background:var(--cream); }
  .vs-header-row{ display:grid; grid-template-columns:1fr 1fr; gap:0; margin-bottom:0; }
  .vs-head{
    font-family:'Garet',sans-serif; font-weight:600; font-size:12.5px; letter-spacing:0.04em;
    padding:12px 18px; border-radius:10px 10px 0 0;
  }
  .vs-head.bad{ background:#EDEAE2; color:var(--muted); border-right:1px solid rgba(0,0,0,.07); }
  .vs-head.good{ background:var(--green-deep); color:var(--paper); }
  .vs-rows{ background:var(--paper); border-radius:0 0 12px 12px; border:1px solid var(--line); border-top:none; overflow:hidden; }
  .vs-row{ display:grid; grid-template-columns:1fr 1fr; gap:0; }
  .vs-row + .vs-row .vs-cell{ border-top:1px solid var(--line); }
  .vs-cell{
    background:var(--paper); padding:13px 18px;
    display:flex; align-items:flex-start; gap:9px;
    font-size:13px; color:var(--muted); line-height:1.5;
  }
  .vs-cell.good{ color:var(--brown); }
  .vs-cell:first-child{ border-right:1px solid var(--line); }
  .xmark{ color:var(--red-x); font-size:11px; font-weight:700; margin-top:2px; flex:none; }
  .cmark{ color:var(--green); font-size:11px; font-weight:700; margin-top:2px; flex:none; }

  /* ---------- FAQ ---------- */
  .faq-section{ background:var(--paper); }
  .faq-list{ display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start; }
  .faq-item{
    border:1px solid var(--line); border-radius:12px;
    padding:18px 22px; background:var(--cream);
  }
  .faq-item summary{
    cursor:pointer; list-style:none;
    font-family:'Plus Jakarta Sans', sans-serif; font-weight:600; font-size:15.5px;
    color:var(--brown); display:flex; align-items:center; justify-content:space-between; gap:12px;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content:'+'; font-size:20px; color:var(--gold-deep); flex:none; transition:transform .2s ease;
  }
  .faq-item[open] summary::after{ transform:rotate(45deg); }
  .faq-content p{ font-size:14px; color:var(--muted); line-height:1.7; margin-top:12px; }

  /* ---------- FINAL CTA — más chico y proporcionado ---------- */
  .final-cta{
    background:linear-gradient(135deg, var(--green-deep) 0%, var(--olive) 55%, var(--gold) 100%);
    border-radius:18px; padding:56px 48px; text-align:center;
    max-width:1116px; margin:0 auto;
  }
  .final-cta h2{
    color:var(--paper); font-size:clamp(22px,2.8vw,34px);
    margin-bottom:12px; font-weight:600;
  }
  .final-cta .highlight{ color:var(--gold-pale); }
  .final-cta p{ color:rgba(255,253,246,0.78); font-size:15px; margin-bottom:26px; }
  .cta-note{ font-size:11px; color:rgba(255,253,246,0.38); margin-top:18px; }

  /* ---------- FOOTER ---------- */
  footer{ padding:60px 0 36px; }
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
    padding-bottom:36px; border-bottom:1px solid var(--line); margin-bottom:22px;
  }
  .footer-brand p{ font-size:13px; color:var(--muted); margin-top:14px; max-width:260px; line-height:1.65; }
  .footer-col h4{
    font-family:'Garet',sans-serif; font-weight:600; font-size:10.5px;
    letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:14px;
  }
  .footer-col a{ display:block; font-size:13.5px; color:var(--brown); opacity:0.7; margin-bottom:9px; }
  .footer-col a:hover{ opacity:1; }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; font-size:11.5px; color:var(--muted); flex-wrap:wrap; gap:10px; }

  @media (prefers-reduced-motion: reduce){ * { animation:none !important; transition:none !important; } }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    .nav-links{ display:none; }
    .hero-grid{ grid-template-columns:1fr; }
    .que-es-grid{ grid-template-columns:1fr; }
    .faq-list{ grid-template-columns:1fr; }
    .benefit-grid{ grid-template-columns:1fr 1fr; }
    .funnel-step{ grid-template-columns:1fr; gap:6px; }
    .funnel-tag{ text-align:left; }
    .vs-header-row{ display:none; }
    .vs-rows{ border-radius:12px; border-top:1px solid var(--line); }
    .vs-row{ grid-template-columns:1fr; }
    .vs-cell:first-child{ border-right:none; border-bottom:1px solid var(--line); }
    .vs-cell{ flex-wrap:wrap; row-gap:4px; background:rgba(192,57,43,0.05); }
    .vs-cell.good{ background:rgba(78,107,79,0.07); }
    .vs-cell::before{
      content:'IA genérica'; flex:0 0 100%; order:-1;
      font-family:'Plus Jakarta Sans', sans-serif; font-size:10px; font-weight:700;
      text-transform:uppercase; letter-spacing:0.06em; color:var(--muted);
    }
    .vs-cell.good::before{ content:'iNOTARY Express'; color:var(--green); }
    .footer-grid{ grid-template-columns:1fr 1fr; gap:28px; }
    .final-cta{ padding:44px 28px; margin:0 20px; }
  }
  @media (max-width:560px){
    .wrap{ padding:20px 20px; }
    .footer-grid{ grid-template-columns:1fr; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; }
    section{ padding:64px 0; }
    .chat-window{ grid-template-columns:1fr; }
    .chat-sidebar{ display:none; }
    .benefit-grid{ grid-template-columns:1fr; }
  }
