/* ===================== TOKENS ===================== */
    :root {
      --navy:      #0a0f1e;
      --navy-mid:  #111827;
      --navy-light:#1e2d45;
      --slate:     #263352;
      --aqua:      #A0B20C;
      --aqua-dim:  #7D8C0A;
      --aqua-glow: rgba(160,178,12,0.18);
      --gold:      #C4622A;
      --gold-dim:  #A04E1F;
      --white:     #f4f7fb;
      --muted:     #8da3bf;
      --border:    rgba(160,178,12,0.2);
      --card-bg:   rgba(30,45,69,0.55);
      --font-display: 'Cormorant Garamond', serif;
      --font-body:    'Outfit', sans-serif;
      --font-mono:    'Space Mono', monospace;
      --ease-out: cubic-bezier(0.22,1,0.36,1);
    }

    /* ===================== RESET ===================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-body);
      overflow-x: hidden;
      cursor: none;
    }

    /* ===================== CUSTOM CURSOR ===================== */
    .cursor {
      width: 12px; height: 12px;
      background: var(--aqua);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--aqua);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform 0.18s var(--ease-out), opacity 0.2s;
      opacity: 0.55;
    }
    a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

    /* ===================== NAVBAR ===================== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      padding: 1.1rem 5%;
      display: flex; align-items: center; justify-content: space-between;
      backdrop-filter: blur(18px) saturate(1.5);
      background: rgba(10,15,30,0.82);
      border-bottom: 1px solid var(--border);
      transition: background 0.4s;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 0.8rem; text-decoration: none;
    }
    .nav-logo-box {
      height: 42px;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-name {
      font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
      color: var(--white); line-height: 1.1;
      letter-spacing: 0.03em;
    }
    .nav-name span { color: var(--aqua); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--muted); text-decoration: none;
      transition: color 0.25s; position: relative; padding-bottom: 2px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1px; background: var(--aqua);
      transition: width 0.3s var(--ease-out);
    }
    .nav-links a:hover { color: var(--aqua); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--navy);
      background: var(--aqua); border: none; border-radius: 6px;
      padding: 0.55rem 1.3rem; text-decoration: none;
      cursor: pointer; transition: background 0.25s, box-shadow 0.25s;
      box-shadow: 0 0 14px rgba(160,178,12,0.35);
    }
    .nav-cta:hover { background: var(--aqua-dim); box-shadow: 0 0 24px rgba(160,178,12,0.5); }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }

    /* ===================== RAIN CANVAS ===================== */
    #rainCanvas {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 0; opacity: 0.13;
    }

    /* ===================== HERO ===================== */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 7rem 5% 6rem;
      position: relative; overflow-x: clip;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(160,178,12,0.08) 0%, transparent 70%),
                  radial-gradient(ellipse 50% 50% at 90% 80%, rgba(196,98,42,0.06) 0%, transparent 60%);
    }
    .hero-grid-lines {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(160,178,12,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(160,178,12,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 760px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em;
      color: var(--aqua); text-transform: uppercase;
      border: 1px solid var(--border); border-radius: 100px;
      padding: 0.35rem 1rem; margin-bottom: 2rem;
      background: rgba(160,178,12,0.07);
      animation: fadeSlideUp 0.8s var(--ease-out) both;
    }
    .hero-eyebrow i { font-size: 0.65rem; }
    .hero-title {
      font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.2rem);
      font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem;
      animation: fadeSlideUp 0.9s 0.1s var(--ease-out) both;
    }
    .hero-title strong { font-weight: 700; color: var(--aqua); font-style: italic; }
    .hero-title .gold { color: var(--gold); }
    .hero-subtitle {
      font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 560px;
      margin-bottom: 2.8rem; font-weight: 300;
      animation: fadeSlideUp 1s 0.2s var(--ease-out) both;
    }
    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeSlideUp 1s 0.3s var(--ease-out) both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dim) 100%);
      color: var(--navy); font-weight: 700; font-size: 0.85rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none;
      box-shadow: 0 0 28px rgba(160,178,12,0.4);
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(160,178,12,0.5); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: transparent; color: var(--white);
      border: 1px solid rgba(255,255,255,0.2); font-weight: 500;
      font-size: 0.85rem; letter-spacing: 0.05em;
      padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none;
      transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
    }
    .btn-outline:hover { border-color: var(--aqua); color: var(--aqua); transform: translateY(-2px); }
    .hero-stats {
      display: flex; gap: 2.5rem; margin-top: 4rem; padding-top: 2rem;
      border-top: 1px solid var(--border);
      animation: fadeSlideUp 1s 0.45s var(--ease-out) both;
    }
    .stat-item { }
    .stat-num {
      font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
      color: var(--aqua); line-height: 1;
    }
    .stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 0.3rem; }

    /* Hero floating visual */
    .hero-visual {
      position: absolute; right: 4%;
      top: 20%; transform: translateY(-50%);
      width: min(400px, 38vw);
      animation: heroFloat 6s ease-in-out infinite, fadeSlideUp 1s 0.4s var(--ease-out) both;
      z-index: 1;
      /* prevent clipping at viewport edges */
      max-height: calc(100vh - 14rem);
      display: flex; align-items: center;
    }
    .hero-visual-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.6rem 1.8rem 1.8rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
      position: relative; overflow: visible;
      width: 100%;
    }
    .hero-visual-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(160,178,12,0.15), transparent 70%);
      border-radius: 50%;
    }
    .chain-visual {
      display: flex; flex-direction: column; align-items: center; gap: 0;
      padding: 0.5rem 0;
    }
    .chain-cup {
      width: 52px; height: 38px;
      border: 2.5px solid var(--aqua);
      border-radius: 4px 4px 20px 20px;
      position: relative;
      background: linear-gradient(180deg, rgba(160,178,12,0.08) 0%, rgba(160,178,12,0.18) 100%);
      animation: cupFill 2.5s ease-in-out infinite;
    }
    .chain-cup::after {
      content: '';
      position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
      width: 2px; height: 18px;
      background: linear-gradient(180deg, var(--aqua) 0%, transparent 100%);
    }
    .chain-cup:last-child::after { display: none; }
    .chain-cup.lg {
      width: 64px; height: 46px;
      border-color: var(--gold);
      background: linear-gradient(180deg, rgba(196,98,42,0.08) 0%, rgba(196,98,42,0.18) 100%);
      animation-delay: 0.3s;
    }
    .chain-cup.lg::after { background: linear-gradient(180deg, var(--gold) 0%, transparent 100%); }
    .drop {
      width: 8px; height: 12px;
      background: var(--aqua);
      border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
      animation: dropFall 2s ease-in infinite;
      opacity: 0;
    }
    .visual-label {
      font-family: var(--font-mono); font-size: 0.7rem;
      color: var(--muted); letter-spacing: 0.1em; text-align: center;
      margin-top: 0.8rem;
    }
    .visual-label span { color: var(--aqua); }
    .badge-row {
      display: flex; gap: 0.5rem; margin-top: 0.8rem; justify-content: center; flex-wrap: wrap;
    }
    .badge {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.3rem 0.75rem;
      border-radius: 100px;
    }
    .badge-aqua { background: rgba(160,178,12,0.15); color: var(--aqua); border: 1px solid rgba(160,178,12,0.3); }
    .badge-gold { background: rgba(196,98,42,0.12); color: var(--gold); border: 1px solid rgba(196,98,42,0.25); }
    .badge-white { background: rgba(255,255,255,0.07); color: var(--muted); border: 1px solid rgba(255,255,255,0.12); }

    /* ===================== ABOUT ===================== */
    #about {
      padding: 7rem 5%;
      position: relative; z-index: 1;
    }
    .section-label {
      font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.25em;
      color: var(--aqua); text-transform: uppercase; margin-bottom: 0.8rem;
      display: flex; align-items: center; gap: 0.7rem;
    }
    .section-label::before {
      content: ''; width: 30px; height: 1px; background: var(--aqua);
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--aqua); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
      margin-top: 3.5rem;
    }
    .about-text p {
      color: var(--muted); line-height: 1.85; font-size: 0.97rem;
      margin-bottom: 1.3rem; font-weight: 300;
    }
    .about-text p strong { color: var(--white); font-weight: 600; }
    .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
    .pillar {
      background: var(--card-bg);
      border: 1px solid var(--border); border-radius: 12px;
      padding: 1.2rem; backdrop-filter: blur(12px);
      transition: border-color 0.3s, transform 0.3s var(--ease-out);
    }
    .pillar:hover { border-color: var(--aqua); transform: translateY(-3px); }
    .pillar-icon {
      width: 36px; height: 36px;
      background: var(--aqua-glow);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; color: var(--aqua); margin-bottom: 0.75rem;
    }
    .pillar-title { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; }
    .pillar-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
    .about-visual {
      position: relative;
    }
    .about-main-img {
      width: 100%; border-radius: 16px;
      background: linear-gradient(145deg, var(--navy-light) 0%, var(--slate) 100%);
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; position: relative;
    }
    .about-main-img .rain-icon-big {
      font-size: 6rem; color: rgba(160,178,12,0.12);
      animation: rotateSlow 20s linear infinite;
    }
    .about-stat-float {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: var(--navy-mid); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.2rem 1.5rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    .asf-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
    .asf-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
    .about-cert {
      position: absolute; top: -1.2rem; left: -1.2rem;
      background: var(--navy-mid); border: 1px solid var(--border);
      border-radius: 12px; padding: 1rem 1.2rem;
      display: flex; align-items: center; gap: 0.8rem;
      backdrop-filter: blur(20px);
    }
    .cert-icon { font-size: 1.4rem; color: var(--gold); }
    .cert-text { font-size: 0.72rem; color: var(--muted); }
    .cert-text strong { color: var(--white); font-size: 0.8rem; display: block; }

    /* ===================== PRODUCTS ===================== */
    #products {
      padding: 7rem 5%;
      background: linear-gradient(180deg, transparent 0%, rgba(30,45,69,0.3) 50%, transparent 100%);
      position: relative; z-index: 1;
    }
    .products-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
    .products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .product-card {
      background: var(--card-bg);
      border: 1px solid var(--border); border-radius: 20px;
      overflow: hidden; backdrop-filter: blur(16px);
      transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: var(--aqua);
      box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 30px rgba(160,178,12,0.1);
    }
    .product-card.gold-card:hover {
      border-color: var(--gold);
      box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 30px rgba(196,98,42,0.1);
    }
    .product-img-wrap {
      height: 240px;
      background: linear-gradient(135deg, var(--navy-light) 0%, var(--slate) 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .product-img-wrap::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 80%, rgba(160,178,12,0.1) 0%, transparent 65%);
    }
    .gold-card .product-img-wrap::before {
      background: radial-gradient(circle at 50% 80%, rgba(196,98,42,0.1) 0%, transparent 65%);
    }
    .product-3d {
      position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px;
    }
    .p-cup {
      border: 3px solid var(--aqua);
      border-radius: 5px 5px 24px 24px;
      background: linear-gradient(180deg, rgba(160,178,12,0.05), rgba(160,178,12,0.2));
      position: relative;
      transition: transform 0.3s;
    }
    .product-card:hover .p-cup { animation: cupFill 1.5s ease-in-out infinite; }
    .p-cup.sm { width: 58px; height: 42px; }
    .p-cup.md { width: 74px; height: 54px; }
    .p-chain { width: 3px; height: 22px; background: linear-gradient(180deg, var(--aqua), rgba(160,178,12,0.2)); margin: 0 auto; }
    .gold-card .p-cup { border-color: var(--gold); background: linear-gradient(180deg, rgba(196,98,42,0.05), rgba(196,98,42,0.2)); }
    .gold-card .p-chain { background: linear-gradient(180deg, var(--gold), rgba(196,98,42,0.2)); }
    .product-label-img {
      position: absolute; top: 1rem; right: 1rem;
      background: rgba(160,178,12,0.15); border: 1px solid rgba(160,178,12,0.3);
      border-radius: 8px; padding: 0.3rem 0.7rem;
      font-family: var(--font-mono); font-size: 0.62rem;
      color: var(--aqua); letter-spacing: 0.1em;
    }
    .gold-card .product-label-img {
      background: rgba(196,98,42,0.1); border-color: rgba(196,98,42,0.25); color: var(--gold);
    }
    .product-body { padding: 1.8rem 2rem 2rem; }
    .product-category {
      font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
      color: var(--aqua); text-transform: uppercase; margin-bottom: 0.7rem;
    }
    .gold-card .product-category { color: var(--gold); }
    .product-name {
      font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
      line-height: 1.25; margin-bottom: 0.9rem;
    }
    .product-model {
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted);
      letter-spacing: 0.08em; margin-bottom: 1.3rem;
    }
    .product-specs { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
    .product-specs li {
      display: flex; align-items: center; gap: 0.7rem;
      font-size: 0.83rem; color: var(--muted);
    }
    .product-specs li i { color: var(--aqua); font-size: 0.75rem; width: 14px; }
    .gold-card .product-specs li i { color: var(--gold); }
    .product-specs li strong { color: var(--white); }
    .product-divider { height: 1px; background: var(--border); margin: 1.3rem 0; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .inquiry-btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--navy);
      background: var(--aqua); border: none; border-radius: 7px;
      padding: 0.6rem 1.2rem; cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    }
    .gold-card .inquiry-btn { background: var(--gold); }
    .inquiry-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(160,178,12,0.4); }
    .gold-card .inquiry-btn:hover { box-shadow: 0 6px 20px rgba(196,98,42,0.3); }
    .availability {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; color: var(--muted);
    }
    .avail-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #22c55e; animation: pulse-dot 2s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
      50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    }

    /* ===================== FEATURES ===================== */
    #features {
      padding: 7rem 5%;
      position: relative; z-index: 1;
    }
    .features-layout {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
      margin-top: 3.5rem;
    }
    .features-list { display: flex; flex-direction: column; gap: 1.5rem; }
    .feature-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.4rem; border-radius: 14px;
      border: 1px solid transparent;
      transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
      cursor: default;
    }
    .feature-item:hover {
      background: var(--card-bg); border-color: var(--border);
      transform: translateX(6px);
    }
    .feat-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: var(--aqua-glow); border: 1px solid var(--border);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--aqua);
      transition: background 0.3s, border-color 0.3s;
    }
    .feature-item:hover .feat-icon { background: rgba(160,178,12,0.2); border-color: rgba(160,178,12,0.4); }
    .feat-content { }
    .feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.35rem; }
    .feat-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
    .features-showcase {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 20px; padding: 2.5rem;
      backdrop-filter: blur(16px); position: relative;
      overflow: hidden;
    }
    .features-showcase::after {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(160,178,12,0.08), transparent 70%);
    }
    .showcase-title {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
      margin-bottom: 1.8rem; color: var(--aqua);
    }
    .spec-table { width: 100%; border-collapse: collapse; }
    .spec-table tr { border-bottom: 1px solid var(--border); }
    .spec-table tr:last-child { border-bottom: none; }
    .spec-table td {
      padding: 0.9rem 0.5rem; font-size: 0.83rem;
      vertical-align: middle;
    }
    .spec-table td:first-child { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.05em; }
    .spec-table td:last-child { color: var(--white); font-weight: 500; text-align: right; }
    .spec-tag {
      display: inline-block; padding: 0.2rem 0.55rem;
      background: rgba(160,178,12,0.12); color: var(--aqua);
      border-radius: 5px; font-size: 0.72rem;
      font-family: var(--font-mono);
    }
    .spec-tag.gold-tag { background: rgba(196,98,42,0.1); color: var(--gold); }

    /* ===================== CONTACT ===================== */
    #contact {
      padding: 7rem 5%;
      position: relative; z-index: 1;
    }
    .contact-grid {
      display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
      margin-top: 3.5rem; align-items: start;
    }
    .contact-form-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 20px; padding: 2.5rem;
      backdrop-filter: blur(16px);
    }
    .form-group { margin-bottom: 1.3rem; }
    .form-label {
      display: block; font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 0.55rem;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%; background: rgba(10,15,30,0.6);
      border: 1px solid var(--border); border-radius: 9px;
      padding: 0.8rem 1rem; color: var(--white);
      font-family: var(--font-body); font-size: 0.88rem;
      transition: border-color 0.25s, box-shadow 0.25s;
      outline: none;
    }
    /* Spinner for loading state */
    @keyframes fa-spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .fa-spin { animation: fa-spin 0.8s linear infinite; display:inline-block; }
    /* Toast transitions */
    .toast { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s; }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--aqua);
      box-shadow: 0 0 0 3px rgba(160,178,12,0.1);
    }
    .form-select option { background: var(--navy-mid); }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .submit-btn {
      width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.6rem;
      background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dim) 100%);
      color: var(--navy); font-weight: 700; font-size: 0.85rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: none; border-radius: 9px; padding: 0.95rem;
      cursor: pointer; transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
      box-shadow: 0 0 20px rgba(160,178,12,0.3);
      font-family: var(--font-body);
      margin-top: 0.5rem;
    }
    .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(160,178,12,0.5); }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-card {
      display: flex; gap: 1.1rem; align-items: flex-start;
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.4rem;
      backdrop-filter: blur(12px);
      transition: border-color 0.3s, transform 0.3s var(--ease-out);
    }
    .info-card:hover { border-color: var(--aqua); transform: translateX(4px); }
    .info-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--aqua-glow); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--aqua);
    }
    .info-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
    .info-value { font-size: 0.9rem; color: var(--white); }
    .info-value a { color: var(--aqua); text-decoration: none; }
    .info-value a:hover { text-decoration: underline; }
    .social-row { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
    .social-btn {
      width: 38px; height: 38px;
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      color: var(--muted); font-size: 0.9rem; text-decoration: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
    }
    .social-btn:hover { background: var(--aqua-glow); color: var(--aqua); border-color: rgba(160,178,12,0.4); transform: translateY(-2px); }
    .map-placeholder {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.4rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .map-icon-big {
      font-size: 2rem; color: var(--aqua);
      background: var(--aqua-glow); width: 54px; height: 54px;
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .map-text { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
    .map-text a { color: var(--aqua); text-decoration: none; font-weight: 500; }

    /* ===================== FOOTER ===================== */
    footer {
      background: rgba(10,15,30,0.95);
      border-top: 1px solid var(--border);
      padding: 3rem 5%;
      position: relative; z-index: 1;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand p {
      font-size: 0.83rem; color: var(--muted); line-height: 1.7;
      margin-top: 1rem; max-width: 320px;
    }
    .footer-col-title {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.25s; }
    .footer-links a:hover { color: var(--aqua); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 2rem; border-top: 1px solid var(--border);
      font-size: 0.75rem; color: var(--muted);
    }
    .footer-bottom a { color: var(--aqua); text-decoration: none; }
    .ssm-badge {
      font-family: var(--font-mono); font-size: 0.65rem;
      padding: 0.25rem 0.7rem; border-radius: 5px;
      background: rgba(196,98,42,0.1); color: var(--gold);
      border: 1px solid rgba(196,98,42,0.2); letter-spacing: 0.08em;
    }

    /* ===================== SCROLL REVEAL ===================== */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* ===================== KEYFRAMES ===================== */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: none; }
    }
    @keyframes heroFloat {
      0%,100% { transform: translateY(-50%) translateY(0px); }
      50%      { transform: translateY(-50%) translateY(-16px); }
    }
    @keyframes cupFill {
      0%,100% { box-shadow: inset 0 0 0 0 rgba(160,178,12,0.1); }
      50%      { box-shadow: inset 0 20px 0 0 rgba(160,178,12,0.2); }
    }
    @keyframes dropFall {
      0%   { opacity: 0; transform: translateY(-5px); }
      20%  { opacity: 0.8; }
      100% { opacity: 0; transform: translateY(40px); }
    }
    @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .products-grid { grid-template-columns: 1fr; }
      .features-layout { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 0.9rem 5%; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .mobile-menu {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,15,30,0.97); z-index: 850;
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
        opacity: 0; pointer-events: none; transition: opacity 0.3s;
      }
      .mobile-menu.open { opacity: 1; pointer-events: all; }
      .mobile-menu a { font-size: 1.5rem; color: var(--white); text-decoration: none; font-family: var(--font-display); }
      .mobile-menu a:hover { color: var(--aqua); }
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
      .about-pillars { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--aqua-dim); border-radius: 10px; }

    /* Toast notification */
    .toast {
      position: fixed; bottom: 2rem; right: 2rem;
      background: var(--navy-mid); border: 1px solid var(--aqua);
      border-radius: 12px; padding: 1rem 1.5rem;
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.85rem; color: var(--white);
      transform: translateY(100px); opacity: 0;
      transition: all 0.4s var(--ease-out);
      z-index: 9000; box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }
    .toast.show { transform: none; opacity: 1; }
    .toast i { color: var(--aqua); font-size: 1.1rem; }

    /* Divider line */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0 5%;
    }