/* =====================================================
   EMI SECURA — Master Stylesheet
   Palette derived from brand logo: Navy + Green
   ===================================================== */

:root {
  --navy-900: #071a3d;
  --navy-800: #0d2b5e;
  --navy-700: #143a7a;
  --navy-600: #1e4c99;
  --green-600: #1f9d4a;
  --green-500: #2eb85c;
  --green-400: #4bd47a;
  --ink: #0f172a;
  --muted: #5f6b85;
  --line: #e6ebf3;
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --bg-dark: linear-gradient(135deg, #071a3d 0%, #0d2b5e 55%, #143a7a 100%);
  --grad-brand: linear-gradient(135deg, #1e4c99 0%, #2eb85c 100%);
  --shadow-sm: 0 4px 14px rgba(13, 43, 94, 0.08);
  --shadow-md: 0 10px 30px rgba(13, 43, 94, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 43, 94, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-ghost:hover { background: var(--navy-800); color: #fff; }
.btn-block { width: 100%; margin-top: 12px; padding: 16px; }
.btn-header { padding: 11px 22px; font-size: 14px; }

/* Text helpers */
.text-green { color: var(--green-500); }
.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(46, 184, 92, 0.12);
  color: var(--green-600);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-head);
  margin-bottom: 14px;
}
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
p  { color: var(--muted); }

/* Topbar */
.topbar {
  background: var(--navy-900);
  color: #cfd7e6;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left span { margin-right: 14px; }
.topbar-left .dot { opacity: .4; }
.topbar-right { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #a9c7ff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffffee;
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand-logo { height: 52px; width: auto; }
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-800);
  position: relative;
  padding: 6px 2px;
  font-family: var(--font-head);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--grad-brand);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-800);
  transition: transform .25s ease, opacity .25s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #f4f7fc 0%, #ffffff 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(46, 184, 92, .18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(30, 76, 153, .22), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero-copy h1 { margin-bottom: 20px; }
.lead { font-size: 18px; margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy-800);
}
.hero-trust span { color: var(--muted); font-size: 13px; }

/* Hero Visual — Phone Mockup */
.hero-visual {
  position: relative;
  height: 500px;
}
.phone-mock {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 480px;
  background: var(--navy-900);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(30, 76, 153, .12);
}
.phone-screen {
  height: 100%;
  background: var(--grad-brand);
  border-radius: 30px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(0,0,0,.4);
  border-radius: 4px;
}
.lock-badge {
  width: 110px; height: 110px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.lock-badge img { width: 78px; }
.mock-line { height: 8px; background: rgba(255,255,255,.35); border-radius: 4px; width: 70%; }
.mock-line.l2 { width: 55%; }
.mock-line.l3 { width: 40%; }
.mock-btn {
  margin-top: 10px;
  background: #fff;
  color: var(--navy-800);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: var(--font-head);
}

.float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  animation: floatY 4s ease-in-out infinite;
}
.float-card small { display: block; color: var(--muted); font-weight: 500; font-size: 11px; }
.float-card strong { font-size: 13px; color: var(--navy-800); }
.fc-ic { font-size: 22px; }
.fc1 { top: 8%; left: -8%; animation-delay: 0s; }
.fc2 { top: 40%; right: -6%; animation-delay: .8s; }
.fc3 { bottom: 6%; left: -4%; animation-delay: 1.6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats Strip */
.stats-strip {
  margin-top: -40px;
  position: relative;
  z-index: 3;
  padding: 0 24px 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.stat-card { text-align: center; padding: 12px; }
.stat-card + .stat-card { border-left: 1px solid var(--line); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Generic Section */
.section {
  padding: 90px 0;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: #dbe4f5;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p, .section-dark li { color: #a9baf0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head.light .section-tag { background: rgba(46, 184, 92, .18); color: #7ee7a1; }
.section-sub { font-size: 16px; margin-top: 12px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.about-shape {
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  border-radius: 30% 70% 60% 40% / 40% 40% 60% 60%;
  animation: morph 10s ease-in-out infinite;
  opacity: .95;
}
@keyframes morph {
  0%, 100% { border-radius: 30% 70% 60% 40% / 40% 40% 60% 60%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 60% 40% 40%; }
}
.about-logo-img {
  position: relative;
  z-index: 2;
  width: 60%;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.vm-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.vm-ic { font-size: 28px; margin-bottom: 10px; }
.vm-card h4 { font-size: 18px; margin-bottom: 6px; }
.vm-card p { font-size: 14px; }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 184, 92, .4);
}
.pc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pc-ic {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(30, 76, 153, .1), rgba(46, 184, 92, .15));
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 24px;
}
.product-card ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--ink);
  font-size: 14px;
}
.product-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}
.supported { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.supported small { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chips span {
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--navy-700);
  font-weight: 500;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card h3 { margin: 14px 0 8px; }
.feature-card p { font-size: 14px; }
.fc-ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-size: 26px;
}
.feat-list { margin-top: 14px; }
.feat-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
}
.feat-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}
.feat-hero {
  grid-column: span 3;
  background: var(--grad-brand);
  color: #fff;
  padding: 40px;
  border: 0;
}
.feat-hero h3 { color: #fff; font-size: 26px; }
.feat-hero p  { color: #d6f0e0; font-size: 16px; max-width: 780px; }
.fh-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-weight: 600;
  font-family: var(--font-head);
}

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease;
}
.sol-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
}
.sol-ic {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46, 184, 92, .3), rgba(30, 76, 153, .3));
  display: grid; place-items: center;
  font-size: 30px;
  margin-bottom: 16px;
}
.sol-card h3 { color: #fff; margin-bottom: 8px; }
.sol-card p { color: #b8c9ee; margin-bottom: 14px; font-size: 14px; }
.sol-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: #cfdcf3;
}
.sol-card ul li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--green-400);
  font-weight: 700;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.why-card:hover { transform: translateY(-6px); }
.why-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.why-card h4 { font-size: 17px; margin-bottom: 6px; }
.why-card p  { font-size: 13px; }

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.benefit-block h3 { font-size: 20px; margin-bottom: 16px; }
.benefit-block ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.benefit-block ul li:last-child { border-bottom: 0; }
.benefit-block ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  width: 20px; height: 20px;
  background: rgba(46, 184, 92, .12);
  color: var(--green-600);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote {
  font-family: 'Georgia', serif;
  font-size: 60px;
  line-height: 0.6;
  color: var(--green-500);
  margin-bottom: 10px;
}
.test-card p { font-size: 15px; color: var(--ink); font-style: italic; margin-bottom: 20px; }
.test-meta { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}
.test-meta small { display: block; color: var(--muted); font-size: 12px; }
.test-meta strong { color: var(--navy-800); font-family: var(--font-head); }

/* Partner */
.partner-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.partner-copy h2.light { color: #fff; }
.partner-copy p { color: #b8c9ee; margin: 12px 0 24px; }
.partner-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-chips span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #dce7fb;
  font-family: var(--font-head);
}
.partner-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.partner-form h3 { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: span 2; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy-800); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(46, 184, 92, .15);
}
.check-row { display: flex; flex-wrap: wrap; gap: 12px; }
.check-row label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}
.form-msg { margin-top: 12px; font-size: 14px; text-align: center; }
.form-msg.success { color: var(--green-600); font-weight: 600; }
.form-msg.error { color: #d33; font-weight: 600; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-list { margin-top: 24px; }
.contact-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic {
  width: 46px; height: 46px;
  background: rgba(46, 184, 92, .12);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 20px;
}
.contact-list small { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.contact-list a, .contact-list span { color: var(--navy-800); font-weight: 600; font-family: var(--font-head); }
.contact-card {
  background: var(--grad-brand);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.contact-card img {
  width: 140px;
  margin: 0 auto 16px;
  background: #fff;
  padding: 14px;
  border-radius: 16px;
}
.contact-card h3 { color: #fff; margin-bottom: 6px; }
.contact-card p  { color: #d3ebdb; margin-bottom: 20px; font-size: 13px; letter-spacing: 1px; }
.contact-card .btn { background: #fff; color: var(--navy-800); box-shadow: none; }
.contact-card .btn:hover { background: var(--navy-900); color: #fff; }

/* Footer */
.site-footer {
  background: #050f26;
  color: #cfd7e6;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.foot-brand img {
  width: 150px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.foot-brand p { color: #a0aac0; font-size: 14px; line-height: 1.7; }
.site-footer h5 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.site-footer ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #a0aac0;
}
.site-footer ul li em { color: var(--green-400); font-style: normal; font-size: 11px; }
.site-footer ul li a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
  color: #808aa0;
}
.foot-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Back to top */
.to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===============  Responsive  =============== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { height: 460px; margin-top: 20px; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-cta { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 360px; margin: 0 auto; }
  .partner-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .product-grid, .feature-grid, .solutions-grid, .benefits-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-hero { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(3) { border-left: 0; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 90px 30px 30px;
    box-shadow: -6px 0 30px rgba(0,0,0,.15);
    transition: right .3s ease;
    z-index: 99;
  }
  .main-nav.open { right: 0; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }

  .section { padding: 60px 0; }
  .hero { padding: 60px 0 80px; }
  h1 { font-size: 34px; }

  .product-grid, .feature-grid, .solutions-grid, .benefits-grid, .test-grid,
  .why-grid, .footer-grid, .form-grid, .stats-grid, .vm-grid {
    grid-template-columns: 1fr;
  }
  .feat-hero { grid-column: span 1; padding: 30px; }
  .field.full { grid-column: span 1; }
  .stat-card + .stat-card { border-left: 0; border-top: 1px solid var(--line); }
  .hero-visual { height: 420px; }
  .float-card { padding: 10px 12px; }
  .fc1 { left: 0; }
  .fc2 { right: 0; }
  .fc3 { left: 0; }
}
