  :root {
    --white:   #ffffff;
    --off:     #f7f8fc;
    --light:   #eef1f8;
    --blue:    #1a3a6b;
    --blue-mid:#2d5faa;
    --blue-lt: #dce8f8;
    --accent:  #2563eb;
    --accent-h:#1d4ed8;
    --orange:  #f97316;
    --orange-h:#ea580c;
    --ink:     #0f1c35;
    --ink-mid: #3d4f6e;
    --ink-lt:  #7a8aa8;
    --border:  #e2e8f4;
    --shadow:  0 2px 20px rgba(26,58,107,0.08);
    --shadow-lg: 0 12px 48px rgba(26,58,107,0.14);
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; font-size:16px; }

  body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── IMAGE PLACEHOLDERS ────────────────────────────── */
  .img-ph {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dce8f8 0%, #eef1f8 100%);
  }
  .img-ph::before {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-mid);
    border: 2px dashed #b3c9e8;
    padding: 1rem;
    text-align: center;
    z-index: 0;
  }
  .img-ph img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* ── NAV ─────────────────────────────────────────── */
  nav {
    position: fixed; top:0; left:0; right:0; z-index:200;
    display:flex; align-items:center; justify-content:space-between;
    padding: 1.5rem 5rem;
    transition: all 0.35s ease;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    padding: 1rem 5rem;
    box-shadow: 0 1px 0 var(--border), var(--shadow);
  }
  .nav-logo {
    font-family:'Cormorant Garamond',serif;
    font-size:1.35rem; font-weight:700;
    color:var(--blue); text-decoration:none;
  }
  .nav-logo span { color:var(--accent); }
  .nav-links { display:flex; gap:2.5rem; list-style:none; }
  .nav-links a {
    color:var(--ink-mid); text-decoration:none;
    font-size:0.875rem; font-weight:400;
    transition:color 0.2s; position:relative;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:-3px; left:0;
    width:0; height:2px; background:var(--accent); border-radius:2px;
    transition:width 0.3s;
  }
  .nav-links a:hover { color:var(--accent); }
  .nav-links a:hover::after { width:100%; }
  .nav-cta {
    background:var(--orange) !important; color:var(--white) !important;
    padding:0.55rem 1.4rem; border-radius:6px; font-weight:500 !important;
    transition:background 0.25s,transform 0.2s !important;
  }
  .nav-cta:hover { background:var(--orange-h) !important; transform:translateY(-1px); }
  .nav-cta::after { display:none !important; }
  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:300; }
  .hamburger span { width:26px; height:1.5px; background:var(--blue); transition:all 0.3s; }

  /* ── HERO ─────────────────────────────────────────── */
  #inicio {
    min-height:100vh;
    display:grid; grid-template-columns:1fr 1fr;
    align-items:center; gap:4rem;
    padding:8rem 5rem 5rem;
    position:relative; overflow:hidden;
    background:var(--white);
  }
  .hero-stripe {
    position:absolute; top:0; right:0;
    width:48%; height:100%;
    background:linear-gradient(160deg,var(--blue-lt) 0%,var(--light) 100%);
    clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);
    z-index:0;
  }
  .hero-dots {
    position:absolute; top:10%; right:5%;
    width:200px; height:200px;
    background-image:radial-gradient(circle,var(--blue-mid) 1.5px,transparent 1.5px);
    background-size:20px 20px; opacity:0.12; z-index:0;
  }
  .hero-content { position:relative; z-index:1; }
  .hero-tag {
    display:inline-flex; align-items:center; gap:0.6rem;
    background:var(--blue-lt); color:var(--blue);
    font-size:0.72rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
    padding:0.45rem 1rem; border-radius:100px; margin-bottom:2rem;
    opacity:0; animation:fadeUp 0.7s ease 0.1s forwards;
  }
  .hero-tag::before { content:'●'; font-size:0.5rem; color:var(--orange); }
  h1.hero-title {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(3.2rem,5vw,5.2rem); font-weight:700;
    line-height:1.08; letter-spacing:-0.02em; color:var(--ink);
    margin-bottom:1.75rem;
    opacity:0; animation:fadeUp 0.7s ease 0.25s forwards;
  }
  h1.hero-title em { font-style:italic; color:var(--orange); }
  .hero-body {
    font-size:1.05rem; line-height:1.8; color:var(--ink-mid);
    max-width:460px; margin-bottom:2.75rem;
    opacity:0; animation:fadeUp 0.7s ease 0.4s forwards;
  }
  .hero-actions {
    display:flex; gap:1rem; align-items:center; flex-wrap:wrap;
    opacity:0; animation:fadeUp 0.7s ease 0.55s forwards;
  }
  .btn-primary {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:var(--accent); color:var(--white); text-decoration:none;
    padding:0.9rem 2rem; font-size:0.875rem; font-weight:500; letter-spacing:0.04em;
    border-radius:8px; transition:all 0.25s;
    box-shadow:0 4px 14px rgba(37,99,235,0.3);
  }
  .btn-primary:hover { background:var(--accent-h); transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,99,235,0.35); }
  .btn-ghost {
    display:inline-flex; align-items:center; gap:0.5rem;
    color:var(--blue); text-decoration:none;
    font-size:0.875rem; font-weight:500;
    padding:0.9rem 1.5rem; border:1.5px solid var(--border); border-radius:8px;
    transition:all 0.25s;
  }
  .btn-ghost:hover { border-color:var(--accent); color:var(--accent); background:var(--blue-lt); }

  .hero-visual {
    position:relative; z-index:1;
    opacity:0; animation:fadeLeft 0.8s ease 0.4s forwards;
  }
  .hero-img-wrap {
    border-radius:16px; overflow:hidden;
    box-shadow:var(--shadow-lg); aspect-ratio:4/3;
  }
  .hero-img-wrap .img-ph { width:100%; height:100%; }
  .hero-badge {
    position:absolute; bottom:-1.5rem; left:-1.5rem;
    background:var(--white); border-radius:12px; padding:1rem 1.25rem;
    box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:0.75rem;
    border:1px solid var(--border); animation:float 4s ease-in-out infinite;
    z-index: 2;
  }
  .badge-icon {
    width:40px; height:40px;
    background:linear-gradient(135deg,var(--accent),#1d4ed8);
    border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem;
  }
  .badge-text strong { display:block; font-size:0.85rem; font-weight:600; color:var(--ink); }
  .badge-text span   { font-size:0.72rem; color:var(--ink-lt); }
  .hero-badge-2 {
    position:absolute; top:-1rem; right:-1rem;
    background:var(--accent); color:var(--white); border-radius:10px;
    padding:0.75rem 1rem; box-shadow:0 8px 24px rgba(37,99,235,0.3);
    animation:float 4s ease-in-out 1.5s infinite;
    font-size:0.8rem; font-weight:600; text-align:center;
    z-index: 2;
  }
  .hero-badge-2 strong { display:block; font-size:1.5rem; font-weight:700; line-height:1; }

  /* ── TRUST BAR ────────────────────────────────────── */
  #trust {
    padding:2.5rem 5rem;
    background:var(--off);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  .trust-inner { display:flex; align-items:center; gap:3rem; justify-content:center; flex-wrap:wrap; }
  .trust-label { font-size:0.78rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-lt); white-space:nowrap; }
  .trust-divider { width:1px; height:24px; background:var(--border); }
  .trust-items { display:flex; gap:2.5rem; align-items:center; flex-wrap:wrap; justify-content:center; }
  .trust-item { display:flex; align-items:center; gap:0.6rem; font-size:0.85rem; font-weight:500; color:var(--ink-mid); }
  .trust-item span { font-size:1.1rem; }

  /* ── SECTIONS ─────────────────────────────────────── */
  section { padding:7rem 5rem; }
  .section-tag {
    display:inline-flex; align-items:center; gap:0.5rem;
    font-size:0.72rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--accent); margin-bottom:1rem;
  }
  .section-tag::before { content:''; width:20px; height:2px; background:var(--accent); border-radius:2px; }
  h2.section-title {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.2rem,3.5vw,3.2rem); font-weight:700;
    line-height:1.1; letter-spacing:-0.02em; color:var(--ink); margin-bottom:1.25rem;
  }
  h2.section-title em { font-style:italic; color:var(--orange); }
  .section-lead { font-size:1rem; line-height:1.8; color:var(--ink-mid); max-width:520px; }

  /* ── WHY ──────────────────────────────────────────── */
  #per-que { background:var(--white); }
  .why-grid { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
  .why-image {
    border-radius:16px; overflow:hidden;
    box-shadow:var(--shadow-lg); aspect-ratio:3/4; position:relative;
  }
  .why-image .img-ph { width:100%; height:100%; }
  .why-image-badge {
    position:absolute; bottom:1.5rem; right:1.5rem;
    background:var(--white); border-radius:10px; padding:0.9rem 1.1rem;
    box-shadow:var(--shadow-lg); border:1px solid var(--border); text-align:center; z-index:2;
  }
  .why-image-badge strong {
    display:block; font-family:'Cormorant Garamond',serif;
    font-size:2rem; font-weight:700; line-height:1; color:var(--accent);
  }
  .why-image-badge span { font-size:0.72rem; color:var(--ink-lt); text-transform:uppercase; letter-spacing:0.06em; }
  .why-cards { display:grid; gap:1.25rem; }
  .why-card {
    display:flex; gap:1.25rem; padding:1.5rem 1.75rem;
    background:var(--white); border:1.5px solid var(--border); border-radius:12px;
    transition:all 0.3s;
  }
  .why-card:hover { border-color:var(--accent); box-shadow:0 4px 20px rgba(37,99,235,0.1); transform:translateX(4px); }
  .why-card-icon {
    width:44px; height:44px; flex-shrink:0;
    background:var(--blue-lt); border-radius:10px;
    display:flex; align-items:center; justify-content:center; font-size:1.2rem;
  }
  .why-card h3 { font-size:0.95rem; font-weight:600; color:var(--ink); margin-bottom:0.35rem; }
  .why-card p  { font-size:0.875rem; line-height:1.65; color:var(--ink-mid); }

  /* ── SERVEIS ──────────────────────────────────────── */
  #serveis { background:var(--off); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .comp-table {
    width:100%; max-width:860px; margin:3.5rem auto 0;
    border-collapse:separate; border-spacing:0;
    border-radius:12px; overflow:hidden;
    box-shadow:var(--shadow); border:1px solid var(--border);
  }
  .comp-table th { padding:1.1rem 1.5rem; font-size:0.8rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; text-align:left; }
  .comp-table th:first-child { background:var(--white); color:var(--ink-lt); width:40%; }
  .comp-table th.ours  { background:var(--accent); color:var(--white); width:30%; text-align:center; }
  .comp-table th.theirs{ background:var(--light); color:var(--ink-lt); width:30%; text-align:center; }
  .comp-table td { padding:1rem 1.5rem; font-size:0.875rem; border-top:1px solid var(--border); }
  .comp-table td:first-child { background:var(--white); color:var(--ink-mid); font-weight:500; }
  .comp-table td.ours  { background:rgba(37,99,235,0.04); text-align:center; color:var(--ink); }
  .comp-table td.theirs{ background:var(--off); text-align:center; color:var(--ink-lt); }
  .comp-table tr:nth-child(odd) td.ours { background:rgba(37,99,235,0.07); }
  .check { color:#16a34a; } .cross { color:#dc2626; }

  /* ── PREUS ────────────────────────────────────────── */
  #preus { background:var(--white); }
  .pricing-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:1.5rem; margin-top:3.5rem; }
  .pricing-card {
    background:var(--white); border:1.5px solid var(--border);
    border-radius:16px; padding:2.5rem 2rem; position:relative; overflow:hidden;
    transition:all 0.3s;
  }
  .pricing-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--accent); }
  .pricing-card.featured {
    background:linear-gradient(160deg,var(--blue) 0%,#1e3a8a 100%);
    border-color:var(--blue); color:var(--white);
  }
  .pricing-badge {
    position:absolute; top:1.25rem; right:-2rem;
    background:var(--orange); color:var(--white);
    font-size:0.62rem; font-weight:700; letter-spacing:0.1em;
    padding:0.3rem 3rem; transform:rotate(40deg); text-transform:uppercase;
  }
  .pricing-name { font-size:0.75rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-lt); margin-bottom:1.5rem; }
  .pricing-card.featured .pricing-name { color:rgba(255,255,255,0.6); }
  .pricing-price {
    font-family:'Cormorant Garamond',serif;
    font-size:3.2rem; font-weight:700; line-height:1; color:var(--ink); margin-bottom:0.4rem;
  }
  .pricing-card.featured .pricing-price { color:var(--white); }
  .pricing-price sup { font-size:1.25rem; vertical-align:super; }
  .pricing-price sub { font-size:1rem; font-family:'Outfit',sans-serif; font-weight:300; color:var(--ink-lt); }
  .pricing-card.featured .pricing-price sub { color:rgba(255,255,255,0.5); }
  .pricing-desc {
    font-size:0.85rem; color:var(--ink-lt); margin-bottom:2rem; line-height:1.55;
    border-bottom:1px solid var(--border); padding-bottom:1.5rem;
  }
  .pricing-card.featured .pricing-desc { color:rgba(255,255,255,0.6); border-color:rgba(255,255,255,0.12); }
  .pricing-features { list-style:none; margin-bottom:2rem; }
  .pricing-features li {
    display:flex; align-items:flex-start; gap:0.6rem;
    font-size:0.875rem; color:var(--ink-mid);
    padding:0.5rem 0; border-bottom:1px solid var(--border); line-height:1.5;
  }
  .pricing-card.featured .pricing-features li { color:rgba(255,255,255,0.8); border-color:rgba(255,255,255,0.1); }
  .pricing-features li::before { content:'✓'; color:var(--accent); font-size:0.75rem; margin-top:2px; flex-shrink:0; font-weight:600; }
  .pricing-card.featured .pricing-features li::before { color:#93c5fd; }
  .btn-plan {
    display:block; text-align:center; padding:0.9rem;
    background:var(--off); border:1.5px solid var(--border);
    color:var(--ink); text-decoration:none;
    font-size:0.82rem; font-weight:500; letter-spacing:0.04em;
    border-radius:8px; transition:all 0.25s;
  }
  .btn-plan:hover { background:var(--accent); border-color:var(--accent); color:var(--white); transform:translateY(-1px); }
  .pricing-card.featured .btn-plan { background:var(--white); color:var(--blue); border-color:var(--white); font-weight:600; }
  .pricing-card.featured .btn-plan:hover { background:var(--blue-lt); color:var(--blue); }

  /* ── SOBRE NOSALTRES ──────────────────────────────── */
  #sobre-nosaltres { background:var(--off); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .about-grid { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
  .about-image { border-radius:16px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/5; position:relative; }
  .about-image .img-ph { width:100%; height:100%; }
  .about-stats { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2.5rem; }
  .stat-box {
    padding:1.5rem; background:var(--white);
    border:1.5px solid var(--border); border-radius:12px;
    transition:all 0.3s;
  }
  .stat-box:hover { border-color:var(--accent); box-shadow:0 4px 16px rgba(37,99,235,0.1); }
  .stat-num { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:700; color:var(--accent); line-height:1; margin-bottom:0.3rem; }
  .stat-label { font-size:0.8rem; color:var(--ink-lt); }
  .quote-block {
    margin-top:2.5rem; padding:1.75rem; background:var(--white);
    border:1.5px solid var(--border); border-left:4px solid var(--accent);
    border-radius:0 12px 12px 0;
  }
  .quote-block p { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.15rem; line-height:1.65; color:var(--ink); margin-bottom:1rem; }
  .quote-author { display:flex; align-items:center; gap:0.75rem; }
  .quote-avatar { width:36px; height:36px; background:var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:700; color:var(--white); }
  .quote-author strong { font-size:0.85rem; font-weight:600; color:var(--ink); display:block; }
  .quote-author span   { font-size:0.75rem; color:var(--ink-lt); }

  /* ── FAQ ──────────────────────────────────────────── */
  #faq { background:var(--white); }
  .faq-inner { max-width:760px; margin:0 auto; }
  .faq-item { border-bottom:1.5px solid var(--border); }
  .faq-question {
    width:100%; background:none; border:none; text-align:left;
    padding:1.4rem 0; display:flex; justify-content:space-between; align-items:center;
    cursor:pointer; color:var(--ink);
    font-family:'Outfit',sans-serif; font-size:1rem; font-weight:500;
    transition:color 0.2s; gap:1rem;
  }
  .faq-question:hover { color:var(--accent); }
  .faq-icon {
    width:28px; height:28px; flex-shrink:0;
    border:1.5px solid var(--border); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; color:var(--ink-lt); transition:all 0.3s; background:var(--off);
  }
  .faq-item.open .faq-icon { background:var(--accent); border-color:var(--accent); color:var(--white); transform:rotate(45deg); }
  .faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
  .faq-answer-inner { padding-bottom:1.4rem; font-size:0.9rem; color:var(--ink-mid); line-height:1.8; }
  .faq-item.open .faq-answer { max-height:400px; }

  /* ── CONTACT ──────────────────────────────────────── */
  #contacte { background:var(--off); border-top:1px solid var(--border); }
  .contact-wrap {
    display:grid; grid-template-columns:1fr 1.2fr;
    border:1.5px solid var(--border); border-radius:20px; overflow:hidden;
    box-shadow:var(--shadow-lg); background:var(--white);
  }
  .contact-left {
    background:linear-gradient(160deg,var(--blue) 0%,#1e3a8a 100%);
    color:var(--white); padding:3.5rem 3rem; position:relative; overflow:hidden;
  }
  .contact-left::after {
    content:''; position:absolute; bottom:-60px; right:-60px;
    width:200px; height:200px; background:rgba(255,255,255,0.05); border-radius:50%;
  }
  .contact-img { width:100%; border-radius:12px; overflow:hidden; aspect-ratio:16/9; margin-bottom:2rem; }
  .contact-img .img-ph { width:100%; height:100%; }
  .contact-left h3 { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:700; margin-bottom:1rem; line-height:1.2; }
  .contact-left p { font-size:0.88rem; line-height:1.75; color:rgba(255,255,255,0.7); margin-bottom:2.5rem; }
  .contact-detail { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.4rem; }
  .detail-icon { width:36px; height:36px; flex-shrink:0; background:rgba(255,255,255,0.12); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; }
  .detail-text small { display:block; font-size:0.68rem; color:rgba(255,255,255,0.5); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:0.2rem; }
  .detail-text span { font-size:0.9rem; color:rgba(255,255,255,0.9); }
  .detail-text a { color:rgba(255,255,255,0.9); text-decoration:none; }
  .contact-right { padding:3.5rem 3rem; }
  .contact-right h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; margin-bottom:2rem; color:var(--ink); }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .form-group { display:flex; flex-direction:column; margin-bottom:1rem; }
  .form-group label { font-size:0.75rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-lt); margin-bottom:0.45rem; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background:var(--off); border:1.5px solid var(--border); border-radius:8px;
    padding:0.8rem 1rem; color:var(--ink);
    font-family:'Outfit',sans-serif; font-size:0.9rem; outline:none;
    transition:border-color 0.2s,background 0.2s; -webkit-appearance:none;
  }
  .form-group input:focus,.form-group textarea:focus { border-color:var(--accent); background:var(--white); }
  .form-group textarea { resize:vertical; min-height:105px; }
  .btn-submit {
    display:inline-flex; align-items:center; gap:0.6rem;
    background:var(--accent); color:var(--white); border:none;
    padding:1rem 2.2rem; font-family:'Outfit',sans-serif;
    font-size:0.875rem; font-weight:500; letter-spacing:0.04em;
    cursor:pointer; border-radius:8px; margin-top:0.5rem;
    transition:all 0.25s; box-shadow:0 4px 14px rgba(37,99,235,0.3);
  }
  .btn-submit:hover { background:var(--accent-h); transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,99,235,0.35); }

  /* ── FOOTER ───────────────────────────────────────── */
  footer {
    background:var(--ink); color:rgba(255,255,255,0.7);
    padding:3rem 5rem; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:2rem;
  }
  .footer-logo { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:var(--white); margin-bottom:0.4rem; }
  .footer-logo span { color:#93c5fd; }
  .footer-sub { font-size:0.8rem; color:rgba(255,255,255,0.4); }
  .footer-right { text-align:right; }
  .footer-links { display:flex; gap:1.5rem; justify-content:flex-end; margin-bottom:0.75rem; flex-wrap:wrap; }
  .footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.82rem; transition:color 0.2s; }
  .footer-links a:hover { color:var(--white); }
  .footer-copy { font-size:0.72rem; color:rgba(255,255,255,0.3); }

  /* ── ANIMATIONS ───────────────────────────────────── */
  @keyframes fadeUp  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
  @keyframes fadeLeft{ from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:none} }
  @keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

  .reveal      { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease,transform 0.7s ease; }
  .reveal.visible { opacity:1; transform:none; }
  .reveal-d1   { transition-delay:0.1s; }
  .reveal-d2   { transition-delay:0.2s; }
  .reveal-d3   { transition-delay:0.3s; }
  .reveal-left { opacity:0; transform:translateX(-24px); transition:opacity 0.7s ease,transform 0.7s ease; }
  .reveal-left.visible { opacity:1; transform:none; }

  /* ── RESPONSIVE ───────────────────────────────────── */
  @media(max-width:1100px){
    nav,nav.scrolled,section,footer,#trust{ padding-left:3rem; padding-right:3rem; }
    #inicio{ padding-left:3rem; padding-right:3rem; }
  }
  @media(max-width:900px){
    #inicio,.why-grid,.about-grid,.contact-wrap{ grid-template-columns:1fr; gap:3rem; }
    .pricing-grid{ grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; }
    nav,nav.scrolled{ padding-left:2rem; padding-right:2rem; }
    section,footer,#trust{ padding-left:2rem; padding-right:2rem; }
    #inicio{ padding:7rem 2rem 4rem; }
    .footer-right{text-align:left;} .footer-links{justify-content:flex-start;} footer{grid-template-columns:1fr;}
  }
  @media(max-width:768px){
    .nav-links{display:none;}
    .nav-links.open{ display:flex; flex-direction:column; position:fixed; inset:0; background:rgba(255,255,255,0.98); align-items:center; justify-content:center; gap:2.5rem; z-index:250; }
    .nav-links.open a{ font-size:1.2rem; color:var(--blue); }
    .hamburger{display:flex;}
    .hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
    .hamburger.open span:nth-child(2){opacity:0;}
    .hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}
    .form-row{grid-template-columns:1fr;}
    .about-stats{grid-template-columns:1fr 1fr;}
    .contact-left,.contact-right{padding:2.5rem 1.75rem;}
    .comp-table{font-size:0.82rem;}
    .comp-table th,.comp-table td{padding:0.8rem 0.9rem;}
  

  }
  