
  *, *::before, *::after { box-sizing:border-box;margin:0;padding:0; }
  :root {
    --blue:#0057E7; --azure:#00AAFF; --navy:#071E3D;
    --muted:#7A9CC2; --light:#EEF4FF; --white:#FFFFFF;
  }
  html { scroll-behavior:smooth; }
  body { font-family:"Plus Jakarta Sans",sans-serif; background:#fff; color:var(--navy); overflow-x:hidden; }

  /* NAV */
  nav {
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:1rem 5vw;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(0,87,231,0.1);
    box-shadow:0 2px 20px rgba(0,87,231,0.06);
    transition:box-shadow 0.3s;
  }
  .nav-links { display:flex; align-items:center; gap:2rem; }
  .nav-links a { font-size:0.875rem; font-weight:500; color:#2A4A7F; text-decoration:none; transition:color 0.2s; }
  .nav-links a:hover { color:var(--blue); }
  .nav-cta { color:#fff !important; background:var(--blue); padding:0.5rem 1.4rem; border-radius:100px; transition:background 0.2s,transform 0.2s !important; }
  .nav-cta:hover { background:#1a6aff !important; transform:translateY(-1px); }

  /* HERO */
  .hero {
    min-height:100vh;
    background:linear-gradient(135deg,#0A1E3D 0%,#1A3A70 60%,#0A2A5A 100%);
    display:flex; align-items:center;
    padding:8rem 5vw 5rem; position:relative; overflow:hidden;
  }
  .hero-bg {
    position:absolute; inset:0; pointer-events:none;
    background:
      radial-gradient(ellipse 55% 65% at 85% 50%,rgba(0,170,255,0.14) 0%,transparent 65%),
      radial-gradient(ellipse 35% 55% at 5% 80%,rgba(0,87,231,0.12) 0%,transparent 60%);
  }
  .hero-grid {
    position:absolute; inset:0; pointer-events:none; opacity:0.035;
    background-image:linear-gradient(rgba(255,255,255,0.6) 1px,transparent 1px),
                     linear-gradient(90deg,rgba(255,255,255,0.6) 1px,transparent 1px);
    background-size:56px 56px;
  }
  .hero-inner {
    position:relative; width:100%;
    display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
  }
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

  h1 {
    font-weight:800; font-size:clamp(2.6rem,5vw,4.4rem);
    line-height:1.06; color:#fff; letter-spacing:-0.03em; margin-bottom:1.4rem;
    animation:fadeUp 0.8s 0.15s ease both;
  }
  h1 em { font-style:normal; color:var(--azure); }
  .hero-sub {
    font-size:1.05rem; font-weight:300; color:#9BB8D8; line-height:1.75;
    max-width:480px; margin-bottom:2.4rem; animation:fadeUp 0.8s 0.3s ease both;
  }
  .hero-actions { display:flex; flex-wrap:wrap; gap:1rem; animation:fadeUp 0.8s 0.45s ease both; }
  .btn-primary {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:var(--blue); color:#fff;
    font-family:inherit; font-size:0.9rem; font-weight:600;
    padding:0.8rem 1.9rem; border-radius:100px;
    text-decoration:none; transition:background 0.2s,transform 0.2s;
  }
  .btn-primary:hover { background:#1a6aff; transform:translateY(-2px); }
  .btn-primary svg { transition:transform 0.2s; }
  .btn-primary:hover svg { transform:translateX(3px); }
  .btn-secondary {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:transparent; color:#fff;
    font-family:inherit; font-size:0.9rem; font-weight:500;
    padding:0.8rem 1.9rem; border-radius:100px;
    border:1px solid rgba(255,255,255,0.25); text-decoration:none;
    transition:border-color 0.2s,background 0.2s;
  }
  .btn-secondary:hover { border-color:rgba(255,255,255,0.55); background:rgba(255,255,255,0.06); }
  .hero-stats {
    display:flex; gap:2.5rem; margin-top:3.5rem; padding-top:2.5rem;
    border-top:1px solid rgba(255,255,255,0.1);
    animation:fadeUp 0.8s 0.6s ease both;
  }
  .stat-val { font-size:1.9rem; font-weight:800; color:#fff; line-height:1; }
  .stat-val span { color:var(--azure); }
  .stat-label { font-size:0.75rem; color:var(--muted); margin-top:0.3rem; letter-spacing:0.04em; }


  
  /* ── ARC CAROUSEL ── */
  .arc-carousel-wrap {
    width: 100%;
    animation: fadeUp 0.8s 0.5s ease both;
  }
  .arc-stage {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  }
  .arc-track {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    will-change: transform;
    cursor: grab;
  }
  .arc-track:active { cursor: grabbing; }
  .arc-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    width: 190px;
  }
  .arc-item img {
    width: 190px;
    height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.55));
    pointer-events: none;
    transition: transform 0.3s, filter 0.3s;
  }
  .arc-label {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; pointer-events: none;
  }
  .arc-line { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--azure); }
  .arc-name { font-size: 0.95rem; font-weight: 700; color: #fff; text-align: center; }
  .arc-cat  { font-size: 0.72rem; color: var(--muted); }

  /* PRODUCT SHOWCASE */
  .hero-products {
    display:flex; flex-direction:column; gap:0.85rem;
    animation:fadeUp 0.8s 0.5s ease both;
  }
  .prod-label {
    font-size:0.68rem; font-weight:700; letter-spacing:0.14em;
    text-transform:uppercase; color:var(--muted); margin-bottom:0.2rem;
  }
  .prod-cards { display:flex; flex-direction:column; gap:0.7rem; }
  .prod-card {
    display:flex; align-items:center; gap:0.9rem;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:14px; padding:0.7rem 1rem;
    transition:background 0.25s,border-color 0.25s,transform 0.25s;
  }
  .prod-card:hover {
    background:rgba(255,255,255,0.1);
    border-color:rgba(0,170,255,0.4);
    transform:translateX(5px);
  }
  .prod-img-wrap {
    width:58px; height:66px; flex-shrink:0;
    border-radius:8px; overflow:hidden;
    background:rgba(255,255,255,0.1);
    display:flex; align-items:center; justify-content:center;
  }
  .prod-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
  .prod-line {
    font-size:0.6rem; font-weight:700; letter-spacing:0.1em;
    text-transform:uppercase; color:var(--azure); margin-bottom:0.2rem;
  }
  .prod-name { font-size:0.9rem; font-weight:700; color:#fff; margin-bottom:0.2rem; }
  .prod-desc { font-size:0.73rem; color:var(--muted); line-height:1.45; }
  .prod-all-link {
    font-size:0.75rem; font-weight:600; color:rgba(255,255,255,0.38);
    text-decoration:none; letter-spacing:0.06em;
    transition:color 0.2s; margin-top:0.25rem;
    display:inline-block;
  }
  .prod-all-link:hover { color:var(--azure); }

  /* SECTIONS */
  section { padding:6rem 5vw; }
  .section-tag { font-size:0.7rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--blue); margin-bottom:0.75rem; }
  .section-title { font-size:clamp(1.9rem,3.8vw,2.9rem); font-weight:800; letter-spacing:-0.03em; color:var(--navy); line-height:1.1; margin-bottom:1rem; }
  .section-title em { font-style:normal; color:var(--blue); }
  .section-desc { font-size:1rem; font-weight:400; color:#4A6A94; line-height:1.75; max-width:540px; margin-bottom:3.5rem; }

  /* STRENGTHS */
  .strengths { background:var(--light); }
  .strengths-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; }
  .strength-card {
    background:#fff; border-radius:18px; padding:1.9rem;
    border:1px solid rgba(0,87,231,0.08);
    transition:transform 0.25s,box-shadow 0.25s;
  }
  .strength-card:hover { transform:translateY(-4px); box-shadow:0 14px 36px rgba(0,87,231,0.1); }
  .strength-icon {
    width:50px; height:50px; border-radius:13px;
    background:linear-gradient(135deg,var(--blue),var(--azure));
    display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem;
  }
  .strength-icon svg { width:22px; height:22px; }
  .strength-card h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:0.5rem; }
  .strength-card p { font-size:0.88rem; color:#5A7A9A; line-height:1.65; }

  /* WHITE LABEL */
  .whitelabel { background:linear-gradient(135deg,#071E3D 0%,#0F2E5A 60%,#071E3D 100%); position:relative; overflow:hidden; }
  .whitelabel-bg {
    position:absolute; inset:0; pointer-events:none;
    background:radial-gradient(ellipse 50% 80% at 100% 50%,rgba(0,170,255,0.1) 0%,transparent 60%),
               radial-gradient(ellipse 30% 50% at 0% 30%,rgba(0,87,231,0.12) 0%,transparent 60%);
  }
  .whitelabel-inner { position:relative; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
  .wl-features { list-style:none; margin-bottom:2.5rem; display:flex; flex-direction:column; gap:0.85rem; }
  .wl-features li { display:flex; align-items:flex-start; gap:0.8rem; font-size:0.9rem; color:#A8C0DC; line-height:1.6; }
  .wl-check { flex-shrink:0; width:20px; height:20px; border-radius:50%; background:rgba(0,170,255,0.15); border:1px solid rgba(0,170,255,0.35); display:flex; align-items:center; justify-content:center; margin-top:1px; }
  .wl-check svg { width:10px; height:10px; }
  .wl-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:22px; padding:2.5rem; }
  .wl-step { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.25rem; }
  .wl-step-num { flex-shrink:0; width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--azure)); display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:700; color:#fff; }
  .wl-step-text strong { display:block; font-size:0.88rem; color:#fff; font-weight:600; margin-bottom:0.2rem; }
  .wl-step-text span { font-size:0.8rem; color:var(--muted); line-height:1.5; }

  /* CATALOG */
  .catalog-section { background:#f7f9fe; border-top:4px solid var(--blue); }

  /* SHOP CTA */
  .shop-cta { background:#fff; text-align:center; }
  .btn-outline {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:transparent; color:var(--blue);
    font-family:inherit; font-size:0.9rem; font-weight:600;
    padding:0.8rem 1.9rem; border-radius:100px;
    border:1.5px solid var(--blue); text-decoration:none;
    transition:background 0.2s,color 0.2s;
  }
  .btn-outline:hover { background:var(--blue); color:#fff; }

  /* FOOTER */
  footer {
    background:#071E3D; padding:3rem 5vw;
    border-top:1px solid rgba(255,255,255,0.06);
    display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.5rem;
  }
  .footer-logo { font-size:1rem; font-weight:800; color:#fff; text-decoration:none; }
  .footer-logo span { color:var(--azure); }
  .footer-links { display:flex; gap:2rem; flex-wrap:wrap; }
  .footer-links a { font-size:0.82rem; color:#5A7A9A; text-decoration:none; transition:color 0.2s; }
  .footer-links a:hover { color:#fff; }
  .footer-copy { font-size:0.78rem; color:#2E4A6A; }

  /* RESPONSIVE */
  @media (max-width:768px) {
    .nav-links { display:none; }
    .hero-inner { grid-template-columns:1fr; }
    .hero-products { display:none; }
    .whitelabel-inner { grid-template-columns:1fr; gap:2.5rem; }
    .wl-card { display:none; }
  }

  /* ═══ ANIMATIONS ═══ */

  /* Floating particles in hero */
  .hero-particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
  .particle {
    position:absolute; border-radius:50%;
    background:rgba(0,170,255,0.25);
    animation: floatUp linear infinite;
  }
  @keyframes floatUp {
    0%   { transform:translateY(0) scale(1);   opacity:0; }
    10%  { opacity:1; }
    90%  { opacity:0.6; }
    100% { transform:translateY(-100vh) scale(0.4); opacity:0; }
  }

  /* Reveal animations */
  .reveal-up    { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease, transform 0.7s ease; }
  .reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity 0.7s ease, transform 0.7s ease; }
  .reveal-right { opacity:0; transform:translateX(40px);  transition:opacity 0.7s ease, transform 0.7s ease; }
  .reveal-scale { opacity:0; transform:scale(0.92);       transition:opacity 0.6s ease, transform 0.6s ease; }
  .revealed     { opacity:1 !important; transform:none !important; }

  /* Stagger delays */
  .delay-1 { transition-delay:0.1s !important; }
  .delay-2 { transition-delay:0.2s !important; }
  .delay-3 { transition-delay:0.3s !important; }
  .delay-4 { transition-delay:0.4s !important; }

  /* Counter glow */
  .stat-val { transition: color 0.3s; }
  .stat-val.counting { color: var(--azure) !important; }

  /* Button shimmer */
  .btn-primary { position:relative; overflow:hidden; }
  .btn-primary::after {
    content:''; position:absolute; top:0; left:-100%;
    width:60%; height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform:skewX(-20deg);
    animation: shimmer 3.5s infinite;
  }
  @keyframes shimmer { 0%,40%{ left:-100%; } 60%,100%{ left:160%; } }

  /* Card hover lift enhancement */
  .strength-card {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important;
  }
  .strength-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(0,87,231,0.15) !important;
  }

  /* Section tag animated underline */
  .section-title-line {
    display:block; height:3px; width:0;
    background:linear-gradient(90deg, var(--blue), var(--azure));
    border-radius:2px; margin-top:0.5rem;
    transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .revealed .section-title-line,
  .section-title-line.active { width:60px; }

  /* WL step slide */
  .wl-step { transition: transform 0.4s ease, opacity 0.4s ease; }

  /* Catalog section fade */
  .catalog-section { transition: background 0.5s; }

  /* Pulse ring on shop CTA button */
  .btn-cta-wrap { position:relative; display:inline-flex; }
  .pulse-ring {
    position:absolute; inset:-6px; border-radius:100px;
    border:2px solid var(--blue); opacity:0;
    animation: pulseRing 2.5s ease-out infinite;
  }
  @keyframes pulseRing {
    0%   { opacity:0.7; transform:scale(1); }
    100% { opacity:0;   transform:scale(1.18); }
  }

  /* Hero text gradient shimmer */
  h1 em {
    background: linear-gradient(90deg, var(--azure), #66CCFF, var(--azure));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
  }
  @keyframes gradientShift { 0%{background-position:0%} 100%{background-position:200%} }

  /* Mobile responsive */
  @media (max-width:768px) {
    .reveal-left, .reveal-right { transform:translateY(30px); }
  }


  /* ── CONTACT ── */
  .contact-section {
    background: #F4F6F9;
    background-image: radial-gradient(circle, #C8D8EC 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
  }
  .contact-info { display: flex; flex-direction: column; gap: 2rem; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
  }
  .contact-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--azure));
    display: flex; align-items: center; justify-content: center;
  }
  .contact-icon svg { width: 20px; height: 20px; }
  .contact-item-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem;
  }
  .contact-item-value {
    font-size: 0.95rem; font-weight: 600; color: var(--navy);
    text-decoration: none; transition: color 0.2s;
  }
  .contact-item-value:hover { color: var(--blue); }
  .contact-item-sub {
    font-size: 0.78rem; color: #7A9CC2; margin-top: 0.1rem;
  }

  /* Form */
  .contact-form {
    background: #fff;
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,87,231,0.08);
    border: 1px solid rgba(0,87,231,0.07);
  }
  .contact-form h3 {
    font-size: 1.2rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .contact-form p {
    font-size: 0.85rem; color: #7A9CC2; margin-bottom: 1.8rem;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: #4A6A94;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: inherit;
    font-size: 0.9rem; font-weight: 400; color: var(--navy);
    background: #F7F9FD;
    border: 1.5px solid #D8E4F0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,87,231,0.1);
    background: #fff;
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select { cursor: pointer; }
  .form-submit {
    margin-top: 1.5rem;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  }
  .btn-submit {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--blue); color: #fff;
    font-family: inherit; font-size: 0.9rem; font-weight: 600;
    padding: 0.85rem 2rem; border-radius: 100px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
  }
  .btn-submit:hover { background: #1a6aff; transform: translateY(-2px); }
  .form-note {
    font-size: 0.75rem; color: #A0B4CC;
  }
  .form-success {
    display: none;
    padding: 1rem 1.2rem;
    background: #EEF8F0;
    border: 1.5px solid #7DC99A;
    border-radius: 10px;
    font-size: 0.88rem; color: #2E7D4F; font-weight: 600;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
  }


/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(7,30,61,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#cookieBanner.visible { transform: translateY(0); }
.cookie-text {
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
  line-height: 1.6; flex: 1; min-width: 260px;
}
.cookie-text a { color: #00AAFF; text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-accept {
  background: #0057E7; color: #fff;
  font-family: inherit; font-size: 0.82rem; font-weight: 700;
  padding: 0.55rem 1.4rem; border-radius: 100px; border: none;
  cursor: pointer; transition: background 0.2s;
}
.btn-accept:hover { background: #1a6aff; }
.btn-decline {
  background: transparent; color: rgba(255,255,255,0.55);
  font-family: inherit; font-size: 0.82rem; font-weight: 500;
  padding: 0.55rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-decline:hover { border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════
   FORM — PRIVACY CHECKBOX
══════════════════════════════════════════ */
.privacy-check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  margin-top: 0.5rem;
}
.privacy-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; accent-color: #0057E7; cursor: pointer;
}
.privacy-check label {
  font-size: 0.78rem; color: #5A7A9A; line-height: 1.5; cursor: pointer;
}
.privacy-check label a { color: #0057E7; text-decoration: none; }
.privacy-check label a:hover { text-decoration: underline; }
.privacy-error {
  font-size: 0.75rem; color: #C62828;
  display: none; margin-top: 0.3rem;
}

/* ── INTRO OVERLAY ──────────────────────────────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.intro-logo-wrap {
  width: 90%;
  max-width: 550px;
  position: relative;
}

.intro-logo-wrap svg {
  width: 100%;
  height: auto;
  overflow: visible;
  visibility: hidden;
  display: block;
}

/* ══════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(0,87,231,0.18);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover {
  border-color: var(--blue);
  background: rgba(0,87,231,0.05);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: background 0.2s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════
   DRAWER OVERLAY
══════════════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(7,30,61,0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (max-width: 768px) {
  .drawer-overlay { display: block; pointer-events: none; }
  .drawer-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ══════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════ */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  z-index: 200;
  background: #fff;
  box-shadow: -8px 0 48px rgba(0,87,231,0.13);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 769px) {
  .mobile-drawer { display: none !important; }
  .drawer-overlay { display: none !important; }
  .hamburger { display: none !important; }
}
@media (max-width: 768px) {
  .mobile-drawer { display: flex; }
  .mobile-drawer.is-open { transform: translateX(0); }
}

/* Header del drawer */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(0,87,231,0.08);
  flex-shrink: 0;
}
.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4fb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.drawer-close:hover { background: #dde8f8; }

/* Link del drawer */
.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  overflow-y: auto;
}
.drawer-link {
  position: relative;
  display: block;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  overflow: hidden;
}
.drawer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--azure));
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,87,231,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.drawer-link:hover {
  color: var(--blue);
}
.drawer-link:hover::before {
  transform: scaleY(1);
}
.drawer-link:hover::after {
  opacity: 1;
}

/* Footer del drawer */
.drawer-footer {
  padding: 1.2rem 1.4rem 1.6rem;
  border-top: 1px solid rgba(0,87,231,0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawer-shop-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
}
.drawer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.drawer-contact-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}
.drawer-contact-link:hover { color: var(--blue); }