/* ============================================================
   Macronix — Liquid Glass theme (LIGHT, red accent ~30%)
   Wholesale R134a refrigerant supplier
   ============================================================ */

:root {
  /* Brand accent — RED (names kept --mx-* so all usages flip together) */
  --mx-dark:  #C8141F;   /* deep red   */
  --mx-light: #E0202E;   /* primary red */
  --mx-cyan:  #FF2E3A;   /* bright true red highlight */
  --mx-deep:  #9D0F18;

  /* Light backdrop */
  --bg-0: #ffffff;
  --bg-1: #f6f3f4;
  --bg-2: #f3eef0;

  /* Text — dark on light */
  --text:      #1d2330;
  --text-soft: rgba(29, 35, 48, 0.66);
  --text-mute: rgba(29, 35, 48, 0.48);

  /* Frosted-white glass */
  --glass:        rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-hi:     rgba(255, 255, 255, 0.95);

  /* hairlines & rings for the light theme */
  --line: rgba(29, 35, 48, 0.12);
  --hair: rgba(29, 35, 48, 0.08);
  --ring: rgba(224, 32, 46, 0.18);
  --on-primary: #ffffff;

  /* neutral fills for chips/icons (keeps pink out — red stays in glyphs/text only) */
  --chip:        rgba(29, 35, 48, 0.05);
  --chip-border: rgba(29, 35, 48, 0.10);

  --radius:    24px;
  --radius-sm: 16px;
  --radius-lg: 32px;

  --shadow:    0 18px 50px -20px rgba(60, 22, 30, 0.20);
  --shadow-lg: 0 30px 80px -26px rgba(60, 22, 30, 0.28);
  --glow:      0 12px 36px -8px rgba(224, 32, 46, 0.45);

  --blur: 22px;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---------- Animated light backdrop with soft red orbs ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 720px at 86% -14%, rgba(120, 132, 152, 0.07), transparent 62%),
    linear-gradient(170deg, #ffffff 0%, #f5f6f8 54%, #edf0f4 100%);
}
.bg__orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  will-change: transform;
}
.bg__orb--1 { width: 440px; height: 440px; top: -130px; right: -90px;
  background: radial-gradient(circle at 30% 30%, #c3ccda, transparent 70%);
  opacity: 0.22; animation: drift1 24s var(--ease) infinite alternate; }
.bg__orb--2 { width: 560px; height: 560px; top: 38%; left: -200px;
  background: radial-gradient(circle at 50% 50%, #cdd6e2, transparent 70%);
  opacity: 0.3; animation: drift2 30s var(--ease) infinite alternate; }
.bg__orb--3 { width: 360px; height: 360px; bottom: -150px; right: 14%;
  background: radial-gradient(circle at 50% 50%, #cbd3df, transparent 70%);
  opacity: 0.2; animation: drift3 27s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(-80px, 70px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(120px, -60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-70px, -50px) scale(1.15); } }

/* faint grain */
.bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
}

/* ---------- Layout ---------- */
.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
section { padding: clamp(46px, 7vh, 84px) 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto clamp(26px, 4vw, 44px); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mx-light);
  padding: 7px 15px; margin-bottom: 18px;
  border: 1px solid var(--glass-border); border-radius: 100px;
  background: var(--glass);
  box-shadow: 0 0 0 1px var(--hair);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mx-light); box-shadow: 0 0 10px rgba(224,32,46,0.6); }

/* ---------- Typography ---------- */
h1, h2, h3 { line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
h2.title { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 16px; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--text-soft); }
.grad {
  background: linear-gradient(100deg, #F31420, #C2121E);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Glass primitive ---------- */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(135%);
  backdrop-filter: blur(var(--blur)) saturate(135%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 var(--glass-hi), 0 0 0 1px var(--hair);
  position: relative;
}
/* glossy top edge highlight */
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0) 40%);
}

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad);
  font: inherit; font-weight: 700; font-size: 0.98rem; line-height: 1;
  border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  color: var(--on-primary);
  background: linear-gradient(135deg, var(--mx-cyan), var(--mx-light) 55%, var(--mx-dark));
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -8px rgba(224,32,46,0.6), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn--ghost {
  color: var(--text);
  background: var(--glass);
  border-color: var(--glass-border);
  box-shadow: 0 0 0 1px var(--hair);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn--ghost:hover { transform: translateY(-3px); background: var(--glass-strong); box-shadow: 0 0 0 1px var(--line); }
.btn--block { width: 100%; }
.btn--lg { --pad: 17px 32px; font-size: 1.04rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  transition: top 0.3s var(--ease);
}
.nav__inner {
  width: min(100% - 28px, var(--maxw));
  display: flex; align-items: center; gap: 18px;
  padding: 10px 12px 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.9), 0 0 0 1px var(--hair);
}
.nav.scrolled .nav__inner { background: rgba(255, 255, 255, 0.86); }

/* Brand / logo top-left */
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; filter: drop-shadow(0 4px 10px rgba(224,32,46,0.4)); transition: transform 0.4s var(--ease); }
.brand:hover .brand__mark { transform: translateX(3px) scale(1.04); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-weight: 800; font-size: 1.18rem; letter-spacing: 0.01em; color: var(--text); }
.brand__sub { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mx-light); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  color: var(--text-soft); text-decoration: none; font-weight: 600; font-size: 0.92rem;
  padding: 9px 14px; border-radius: 100px; transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--text); background: var(--glass); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

/* Language toggle */
.lang {
  display: inline-flex; padding: 3px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border); box-shadow: 0 0 0 1px var(--hair);
}
.lang button {
  font: inherit; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.03em;
  color: var(--text-mute); background: none; border: 0; cursor: pointer;
  padding: 6px 11px; border-radius: 100px; transition: all 0.25s var(--ease);
}
.lang button.active { color: var(--on-primary); background: linear-gradient(135deg, var(--mx-cyan), var(--mx-light)); box-shadow: 0 4px 14px -4px rgba(224,32,46,0.6); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--glass-border);
  background: var(--glass); box-shadow: 0 0 0 1px var(--hair); cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(128px, 17vh, 176px); padding-bottom: clamp(40px, 6vh, 72px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); margin: 20px 0 22px; }
.hero p.lead { max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-size: 1.7rem; font-weight: 800; color: var(--text); }
.hero__trust span { font-size: 0.82rem; color: var(--text-mute); }

/* Hero floating spec card */
.spec {
  padding: 26px; border-radius: var(--radius-lg);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.spec__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.spec__badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.8rem;
  color: var(--mx-light); padding: 7px 13px; border-radius: 100px; background: var(--chip); border: 1px solid var(--chip-border); }
.spec__purity { text-align: right; }
.spec__purity b { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.spec__purity span { font-size: 0.74rem; color: var(--text-mute); }
.spec__rows { display: grid; gap: 10px; }
.spec__row { display: flex; align-items: center; gap: 14px; padding: 13px 15px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border); box-shadow: 0 0 0 1px var(--hair); }
.spec__row .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 12px;
  background: var(--chip); border: 1px solid var(--chip-border); color: var(--mx-light); }
.spec__row .ic svg { width: 22px; height: 22px; }
.spec__row b { display: block; font-size: 0.95rem; }
.spec__row span { font-size: 0.78rem; color: var(--text-mute); }

/* ---------- Marquee / partners strip ---------- */
.strip { padding: 26px 0; border-block: 1px solid var(--hair); }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; align-items: center; }
.strip__item { display: inline-flex; align-items: center; gap: 9px; color: var(--text-soft); font-weight: 600; font-size: 0.92rem; }
.strip__item svg { width: 19px; height: 19px; color: var(--mx-light); }

/* ---------- Generic cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { padding: 30px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease); }
.card:hover { transform: translateY(-7px); background: var(--glass-strong); box-shadow: var(--shadow-lg), inset 0 1px 0 var(--glass-hi), 0 0 0 1px var(--line); }
.card__ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--chip);
  border: 1px solid var(--chip-border); color: var(--mx-light);
}
.card__ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.97rem; }
.card__tag { display: inline-block; margin-top: 16px; font-size: 0.78rem; font-weight: 700; color: var(--mx-light);
  padding: 5px 12px; border-radius: 100px; background: var(--chip); border: 1px solid var(--chip-border); }

/* offer card numbered */
.offer { display: flex; flex-direction: column; }
.offer__fig { aspect-ratio: 16 / 10; border-radius: var(--radius-sm); margin-bottom: 20px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(29,35,48,0.06), rgba(29,35,48,0.015)); border: 1px solid var(--chip-border);
  display: grid; place-items: center; }
.offer__fig svg { width: 96px; height: 96px; color: var(--mx-light); opacity: 0.92; }
.offer__fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .offer__fig img { transform: scale(1.05); }
.offer__fig .cap { position: absolute; z-index: 2; top: 12px; left: 12px; font-size: 0.74rem; font-weight: 700; color: var(--text);
  padding: 5px 11px; border-radius: 100px; background: rgba(255,255,255,0.82); border: 1px solid var(--glass-border); box-shadow: 0 0 0 1px var(--hair); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split .lead + .lead { margin-top: 16px; }
.applist { display: grid; gap: 12px; margin-top: 26px; }
.applist li { list-style: none; display: flex; gap: 13px; align-items: flex-start; }
.applist .dot { width: 26px; height: 26px; flex: none; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mx-cyan), var(--mx-dark)); color: #fff; margin-top: 2px; }
.applist .dot svg { width: 15px; height: 15px; }
.applist b { font-weight: 700; }
.applist span { color: var(--text-soft); font-size: 0.95rem; }

.about__panel { padding: 34px; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 6px; }
.about__stat { padding: 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border); box-shadow: 0 0 0 1px var(--hair); }
.about__stat b { display: block; font-size: 1.9rem; font-weight: 800; }
.about__stat span { font-size: 0.84rem; color: var(--text-mute); }

/* ---------- R&D feature band ---------- */
.feature { padding: clamp(34px, 5vw, 60px); border-radius: var(--radius-lg); overflow: hidden; }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.checklist { display: grid; gap: 14px; margin-top: 24px; }
.checklist li { list-style: none; display: flex; gap: 13px; align-items: flex-start; color: var(--text-soft); }
.checklist .chk { width: 24px; height: 24px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--chip); border: 1px solid var(--chip-border); color: var(--mx-light); margin-top: 2px; }
.checklist .chk svg { width: 13px; height: 13px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.form { padding: 34px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; }
.field .req { color: var(--mx-light); }
.input, .textarea, .select {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--text);
  padding: 13px 15px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-mute); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--mx-light); background: #fff;
  box-shadow: 0 0 0 4px var(--ring);
}
.textarea { resize: vertical; min-height: 130px; }
.select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23E0202E' stroke-width='2.4'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.select option { background: #fff; color: var(--text); }
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 20px; }
.consent input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--mx-light); flex: none; }
.consent label { font-size: 0.8rem; color: var(--text-mute); line-height: 1.5; }
.consent a { color: var(--mx-light); }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form__status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; border-radius: 12px; padding: 0; max-height: 0; overflow: hidden; transition: 0.35s var(--ease); }
.form__status.show { padding: 13px 16px; max-height: 120px; }
.form__status.ok { background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.4); color: #15803d; }
.form__status.err { background: rgba(224,32,46,0.1); border: 1px solid rgba(224,32,46,0.4); color: #b0121e; }

/* contact info side */
.cinfo { padding: 30px; display: grid; gap: 6px; }
.cinfo__item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--hair); }
.cinfo__item:last-of-type { border-bottom: 0; }
.cinfo__item .ic { width: 44px; height: 44px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: var(--chip); border: 1px solid var(--chip-border); color: var(--mx-light); }
.cinfo__item .ic svg { width: 21px; height: 21px; }
.cinfo__item .lbl { font-size: 0.76rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.cinfo__item a, .cinfo__item address { color: var(--text); text-decoration: none; font-style: normal; font-weight: 600; font-size: 1.02rem; }
.cinfo__item a:hover { color: var(--mx-light); }
.cinfo__legal { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }
.cinfo__legal div span { display: block; font-size: 0.72rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.07em; }
.cinfo__legal div b { font-weight: 700; font-size: 0.98rem; }

/* location card (privacy-friendly, replaces embedded map) */
.mapcard {
  display: flex; align-items: center; gap: 16px; margin-top: 22px; padding: 20px 22px;
  text-decoration: none; color: var(--text); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mapcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.6;
  background-image:
    linear-gradient(rgba(29,35,48,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,35,48,0.06) 1px, transparent 1px),
    radial-gradient(400px 120px at 80% 120%, rgba(29,35,48,0.05), transparent 70%);
  background-size: 26px 26px, 26px 26px, 100% 100%;
}
.mapcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg), inset 0 1px 0 var(--glass-hi), 0 0 0 1px var(--line); }
.mapcard__pin { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mx-cyan), var(--mx-dark)); color: #fff;
  box-shadow: 0 8px 22px -6px rgba(224,32,46,0.6); }
.mapcard__pin svg { width: 24px; height: 24px; }
.mapcard__body { display: flex; flex-direction: column; margin-right: auto; }
.mapcard__body b { font-size: 1rem; }
.mapcard__body span { font-size: 0.82rem; color: var(--mx-light); }
.mapcard__go { width: 20px; height: 20px; color: var(--mx-light); flex: none; transition: transform 0.3s var(--ease); }
.mapcard:hover .mapcard__go { transform: translateX(4px); }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 30px; border-top: 1px solid var(--hair); margin-top: 20px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__about { max-width: 320px; }
.footer__about p { color: var(--text-soft); font-size: 0.92rem; margin-top: 16px; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mx-light); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a, .footer ul address { color: var(--text-soft); text-decoration: none; font-style: normal; font-size: 0.94rem; }
.footer ul a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hair); font-size: 0.84rem; color: var(--text-mute); }
.footer__bottom a { color: var(--text-mute); text-decoration: none; }
.footer__bottom a:hover { color: var(--mx-light); }

/* ---------- Privacy modal ---------- */
.modal { width: min(720px, 92vw); max-height: 84vh; border: 1px solid var(--glass-border); border-radius: var(--radius);
  background: rgba(255,255,255,0.94); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); color: var(--text);
  padding: 0; box-shadow: var(--shadow-lg), 0 0 0 1px var(--hair); }
.modal::backdrop { background: rgba(40,18,22,0.4); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.modal__head { display: flex; justify-content: space-between; align-items: center; padding: 24px 26px; border-bottom: 1px solid var(--hair); position: sticky; top: 0; background: inherit; border-radius: var(--radius) var(--radius) 0 0; }
.modal__head h3 { font-size: 1.3rem; }
.modal__close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--glass-border); background: var(--glass); box-shadow: 0 0 0 1px var(--hair); color: var(--text); cursor: pointer; font-size: 1.2rem; line-height: 1; }
.modal__body { padding: 22px 26px 30px; overflow-y: auto; }
.modal__body h4 { margin: 18px 0 7px; font-size: 1rem; color: var(--mx-light); }
.modal__body p, .modal__body li { color: var(--text-soft); font-size: 0.92rem; }
.modal__body ul { padding-left: 20px; display: grid; gap: 5px; margin-top: 6px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

/* ---------- Secondary pages ---------- */
.subhero { padding-top: clamp(150px, 22vh, 210px); padding-bottom: clamp(36px, 6vh, 72px); text-align: center; }
.subhero__in { max-width: 780px; margin: 0 auto; }
.subhero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin: 20px 0 20px; }
.subhero .lead { max-width: 600px; margin: 0 auto; }
.subhero .hero__cta { justify-content: center; }

.nav__links a.active { color: var(--mx-light); background: #fff; font-weight: 700;
  box-shadow: 0 8px 20px -7px rgba(224, 32, 46, 0.35), 0 0 0 1px var(--chip-border); }

/* spec list (technical details) */
.speclist { display: grid; gap: 0; }
.speclist__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--hair); }
.speclist__row:last-child { border-bottom: 0; }
.speclist__row b { font-weight: 700; }
.speclist__row .v { color: var(--mx-light); font-weight: 700; font-size: 0.92rem; white-space: nowrap; }

/* big spec on a card */
.card__spec { display: flex; align-items: baseline; gap: 7px; margin: 2px 0 12px; }
.card__spec b { font-size: 1.6rem; font-weight: 800; }
.card__spec .u { font-size: 0.82rem; color: var(--text-mute); font-weight: 600; }

/* simple use-case / step list */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 26px; position: relative; }
.step__n { font-size: 0.8rem; font-weight: 800; color: var(--mx-light); letter-spacing: 0.08em; }
.step h3 { font-size: 1.1rem; margin: 10px 0 8px; }
.step p { color: var(--text-soft); font-size: 0.93rem; }

/* centered CTA band */
.ctaband { text-align: center; padding: clamp(40px, 6vw, 68px); border-radius: var(--radius-lg); }
.ctaband h2 { margin-bottom: 14px; }
.ctaband .lead { max-width: 560px; margin: 0 auto 26px; }
.ctaband .hero__cta { justify-content: center; display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; max-width: 460px; }
  .split, .feature__grid, .contact__grid, .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links { position: fixed; inset: 78px 14px auto 14px; flex-direction: column; align-items: stretch; gap: 6px;
    padding: 14px; border-radius: var(--radius); background: rgba(255,255,255,0.96);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--hair); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.3s var(--ease); }
  body.menu-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 16px; font-size: 1rem; }
  .burger { display: block; }
  .nav__cta { display: none; }
}
@media (max-width: 620px) {
  .grid--3, .grid--2, .footer__grid, .form__row, .about__stats { grid-template-columns: 1fr; }
  .hero__trust { gap: 20px; }
  .brand__sub { display: none; }
  section { padding: 44px 0; }
  .card, .form, .cinfo, .feature { padding: 24px; }
}
