/* =========================================================
   PT Digital Kreasi Nusantara (DKN) — Company Profile
   Vanilla CSS — no build step required
   ========================================================= */

:root {
  /* Brand */
  --brand-blue: #4D72F8;
  --brand-cyan: #2AD3EF;
  --brand-gradient: linear-gradient(120deg, #4D72F8 0%, #2AD3EF 100%);
  --brand-gradient-soft: linear-gradient(120deg, rgba(77,114,248,0.08) 0%, rgba(42,211,239,0.08) 100%);

  /* Neutrals */
  --ink: #0B1220;
  --ink-2: #1E293B;
  --slate: #475569;
  --slate-light: #64748B;
  --line: #E6EAF1;
  --line-soft: #EEF1F6;
  --surface: #FFFFFF;
  --surface-2: #F7F9FC;
  --surface-3: #F0F4FA;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px -8px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-lg: 0 24px 60px -18px rgba(30,41,59,0.18), 0 8px 24px -12px rgba(30,41,59,0.10);
  --shadow-brand: 0 16px 40px -12px rgba(77,114,248,0.45);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1200px;
  --header-h: 78px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--slate);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: "Outfit", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section--tight { padding: 86px 0; }

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 680px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin: 18px 0 16px;
}
.section-head p { font-size: 18px; color: var(--slate-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -12px rgba(77,114,248,0.55); }
.btn--ghost {
  background: var(--surface);
  color: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: #CBD5E1; box-shadow: var(--shadow-md); }
.btn--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(15,23,42,0.25);
  background: rgba(255,255,255,0.88);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px -6px rgba(77,114,248,0.5);
}
.brand__name {
  display: flex; flex-direction: column; gap: 3px; line-height: 1.2;
}
.brand__name b {
  font-family: "Outfit", sans-serif;
  font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -0.01em;
}
.brand__name span { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-light); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--brand-blue); background: var(--surface-3); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink-2); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 18px 28px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  z-index: 99;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 17px; color: var(--ink-2);
  padding: 13px 14px; border-radius: 12px;
}
.mobile-nav a:hover { background: var(--surface-3); color: var(--brand-blue); }
.mobile-nav .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(42,211,239,0.14), transparent 60%),
    radial-gradient(900px 480px at 8% 8%, rgba(77,114,248,0.12), transparent 58%);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 8px 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.hero__badge .tag {
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 12px;
  background: var(--brand-gradient); color: #fff;
  padding: 4px 11px; border-radius: var(--radius-pill); letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  margin: 24px 0 22px;
  letter-spacing: -0.035em;
}
.hero__sub { font-size: 19px; max-width: 540px; color: var(--slate); }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 38px; color: var(--slate-light); font-size: 14px; }
.hero__trust .dots { display: flex; }
.hero__trust .dots span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: var(--brand-gradient);
  display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 600;
  font-family: "Outfit", sans-serif;
}
.hero__trust .dots span:first-child { margin-left: 0; }
.hero__trust .dots span:nth-child(2) { background: linear-gradient(120deg,#2AD3EF,#4D72F8); }
.hero__trust .dots span:nth-child(3) { background: linear-gradient(120deg,#6C8BFA,#2AD3EF); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__visual .orbit { width: 100%; height: auto; }
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.float-card .ic {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
  background: var(--brand-gradient);
}
.float-card .ic svg { width: 20px; height: 20px; }
.float-card b { font-family: "Outfit", sans-serif; font-size: 14px; color: var(--ink); display: block; }
.float-card small { font-size: 12px; color: var(--slate-light); }
.float-card--a { top: 6%; left: -6%; animation: floaty 6s var(--ease) infinite; }
.float-card--b { bottom: 10%; right: -5%; animation: floaty 6s var(--ease) infinite 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: -36px; }
.stats__inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats__inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 130%, rgba(42,211,239,0.10), transparent 60%),
              radial-gradient(500px 260px at 0% -30%, rgba(77,114,248,0.10), transparent 60%);
}
.stat { position: relative; text-align: center; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 14%; bottom: 14%;
  width: 1px; background: var(--line);
}
.stat .num {
  font-family: "Outfit", sans-serif; font-weight: 700;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.stat .lbl { color: var(--slate-light); font-size: 14.5px; margin-top: 10px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media .shell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.4;
}
.about__media .shell svg { width: 100%; height: 100%; }
.about__media .chip {
  position: absolute; bottom: 22px; left: -18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; gap: 14px; align-items: center;
}
.about__media .chip .pulse {
  width: 12px; height: 12px; border-radius: 50%; background: #22C55E; position: relative; flex-shrink: 0;
}
.about__media .chip .pulse::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.4); animation: ping 2s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.about__media .chip b { font-family: "Outfit", sans-serif; color: var(--ink); font-size: 14px; }
.about__media .chip small { color: var(--slate-light); font-size: 12.5px; }

.about__body h2 { font-size: clamp(28px, 3.8vw, 42px); margin: 16px 0 18px; }
.about__body > p { font-size: 18px; margin-bottom: 16px; }

.vm { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 32px; }
.vm__card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px;
  background: var(--surface-2);
}
.vm__card .ic {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--brand-blue); margin-bottom: 14px;
}
.vm__card .ic svg { width: 21px; height: 21px; }
.vm__card h4 { font-size: 17px; margin-bottom: 7px; }
.vm__card p { font-size: 14.5px; color: var(--slate-light); }

.values { display: flex; flex-wrap: wrap; gap: 10px; }
.value-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 9px 16px; border-radius: var(--radius-pill);
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 14.5px; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.value-pill svg { width: 16px; height: 16px; color: var(--brand-blue); }

/* ---------- Products ---------- */
.products { background: var(--surface-2); }
.products__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px;
}
.pcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pcard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand-gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard:hover::before { transform: scaleX(1); }
.pcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.pcard__ic {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--brand-gradient-soft);
  border: 1px solid rgba(77,114,248,0.16);
  display: grid; place-items: center; color: var(--brand-blue); flex-shrink: 0;
}
.pcard__ic svg { width: 28px; height: 28px; }
.pcard__flag {
  font-family: "Outfit", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-blue);
  background: var(--brand-gradient-soft); border: 1px solid rgba(77,114,248,0.16);
  padding: 6px 11px; border-radius: var(--radius-pill);
}
.pcard h3 { font-size: 22px; margin-bottom: 10px; }
.pcard p { font-size: 15.5px; color: var(--slate-light); flex-grow: 1; }
.pcard__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 22px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px; color: var(--brand-blue);
  transition: gap 0.25s var(--ease);
}
.pcard__link svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.pcard:hover .pcard__link { gap: 11px; }

/* ---------- Why DKN ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.feat {
  padding: 4px 4px 0;
}
.feat__ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--brand-blue); margin-bottom: 20px;
  position: relative;
}
.feat__ic svg { width: 26px; height: 26px; }
.feat h4 { font-size: 18.5px; margin-bottom: 10px; }
.feat p { font-size: 15px; color: var(--slate-light); }

/* ---------- Contact ---------- */
.contact { background: var(--surface-2); }
.contact__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(28px, 3.8vw, 42px); margin: 16px 0 16px; }
.contact__info > p { font-size: 18px; color: var(--slate-light); margin-bottom: 34px; max-width: 440px; }

.info-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.info-item .ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-gradient-soft); border: 1px solid rgba(77,114,248,0.16);
  display: grid; place-items: center; color: var(--brand-blue);
}
.info-item .ic svg { width: 21px; height: 21px; }
.info-item .t span { display: block; font-size: 13px; color: var(--slate-light); margin-bottom: 3px; }
.info-item .t b { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink); }

.map-embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); line-height: 0;
}
.map-embed iframe { width: 100%; height: 220px; border: 0; filter: grayscale(0.15) contrast(1.02); }

/* Form */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 38px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 23px; margin-bottom: 6px; }
.form-card .lead { font-size: 15px; color: var(--slate-light); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: "Outfit", sans-serif; font-weight: 500; font-size: 14px;
  color: var(--ink-2); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 16px; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #94A3B8; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(77,114,248,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--slate-light); margin-top: 14px; text-align: center; }
.form-msg {
  display: none; margin-top: 16px; padding: 13px 16px; border-radius: 12px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  color: #15803D; font-size: 14.5px; font-weight: 500;
}
.form-msg.is-visible { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.62); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer .brand__name b { color: #fff; }
.footer .brand__name span { color: rgba(255,255,255,0.5); }
.footer__about { margin: 20px 0 22px; font-size: 15px; max-width: 320px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center; color: rgba(255,255,255,0.7);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer__social a:hover { background: var(--brand-gradient); color: #fff; transform: translateY(-2px); border-color: transparent; }
.footer__social a svg { width: 19px; height: 19px; }
.footer__col h5 {
  font-family: "Outfit", sans-serif; color: #fff; font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
}
.footer__col a { display: block; font-size: 15px; padding: 7px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--brand-cyan); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 14px; flex-wrap: wrap;
}
.footer__bar a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .float-card, .about__media .chip .pulse::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .header__actions .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__media { max-width: 480px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .container { padding: 0 20px; }
  .stats { margin-top: -28px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; padding: 38px 26px; }
  .stat:nth-child(2)::after { display: none; }
  .stat:not(:last-child)::after { top: auto; bottom: -16px; left: 14%; right: 14%; top: auto; width: auto; height: 1px; }
  .stat::after { display: none !important; }
  .products__grid { grid-template-columns: 1fr; }
  .vm { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .float-card { padding: 11px 13px; }
  .float-card .ic { width: 34px; height: 34px; }
  .float-card--a { left: 0; top: 2%; }
  .float-card--b { right: 0; bottom: 6%; }
  .about__media .chip { left: 0; padding: 13px 16px; }
  .info-item .t b { font-size: 14.5px; word-break: break-word; }
}
@media (max-width: 520px) {
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .hero__trust { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 400px) {
  :root { --header-h: 66px; }
  .brand__mark { width: 40px; height: 40px; font-size: 13px; }
  .brand__name b { font-size: 14px; }
  .brand__name span { display: none; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero h1 { font-size: 33px; }
  .stats__inner { grid-template-columns: 1fr; gap: 26px; }
  .float-card { display: none; }
}
