/* Keyakash — shared site styles. Electric indigo on near-black. */
:root {
  --bg: #060609;
  --bg-2: #0B0B14;
  --card: rgba(255, 255, 255, 0.035);
  --card-hover: rgba(255, 255, 255, 0.06);
  --line: rgba(165, 180, 252, 0.14);
  --line-strong: rgba(165, 180, 252, 0.3);
  --gold: #818CF8;
  --gold-bright: #A5B4FC;
  --gold-dim: rgba(129, 140, 248, 0.55);
  --grad-a: #6366F1;
  --grad-b: #A855F7;
  --cream: #F4F4F8;
  --text: #B6BCCC;
  --text-dim: #7A8194;
  --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: clip;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(99, 102, 241, 0.45); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

.serif { font-family: "Fraunces", Georgia, serif; }
.kicker {
  font-family: "Jost", sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold-dim); }

h2.title, h1.title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 22px 0 20px;
}
h2.title em, h1.title em, .grad-em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-bright), var(--grad-b));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-bright);
}
.lede { font-size: 17px; color: var(--text-dim); max-width: 640px; }

/* ---------- Reveal on scroll (only when JS is available) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
}

/* ---------- Header ---------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
header.site.scrolled {
  background: rgba(6, 6, 10, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo img { height: 24px; width: auto; opacity: .96; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.active { color: var(--gold-bright); }
.nav-cta {
  font-family: "Jost", sans-serif;
  border: 1px solid var(--line-strong);
  padding: 9px 22px; border-radius: 100px;
  color: var(--cream) !important;
  transition: background .25s, border-color .25s !important;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); border-color: transparent; color: #fff !important; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 480px at 78% 12%, rgba(99, 102, 241, 0.22), transparent 65%),
    radial-gradient(700px 420px at 12% 88%, rgba(168, 85, 247, 0.1), transparent 60%),
    linear-gradient(180deg, #060609 0%, #0B0B16 55%, #060609 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(165,180,252,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,180,252,0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(720px 480px at 70% 20%, rgba(0,0,0,0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(720px 480px at 70% 20%, rgba(0,0,0,0.9), transparent 75%);
}
.hero-inner { max-width: 920px; }
.hero .kicker { margin-bottom: 30px; }
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.hero h1 .line { display: block; }
.hero h1 em {
  font-style: italic;
  background: linear-gradient(100deg, #A5B4FC 10%, #C084FC 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-bright);
}
.hero p.sub {
  margin-top: 30px; max-width: 560px;
  font-size: 17.5px; color: var(--text-dim);
}
.hero-actions { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn {
  font-family: "Jost", sans-serif;
  text-decoration: none; font-size: 15px; font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px; border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s, filter .2s;
}
.btn-gold { background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); color: #fff; }
.btn-gold:hover { filter: brightness(1.15); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(99,102,241,0.42); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.hero-stats {
  margin-top: 74px;
  display: grid; grid-template-columns: repeat(4, auto); gap: 56px;
  justify-content: start;
}
.stat .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 400; color: var(--cream); line-height: 1.1;
}
.stat .num span { color: var(--gold); }
.stat .lbl { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: 170px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-bg { z-index: -1; }
.page-hero h1.title { margin-bottom: 14px; }
.page-hero .lede { font-size: 17.5px; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; position: relative;
  background: rgba(255,255,255,0.012);
}
.marquee-track {
  display: flex; gap: 72px; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: "Jost", sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
  display: flex; align-items: center; gap: 72px;
}
.marquee span i { font-style: normal; color: var(--gold-dim); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 64px; }

/* ---------- Services ---------- */
.services-list { border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 90px 1.05fr 1.4fr auto;
  align-items: center; gap: 34px;
  padding: 34px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .3s, padding .3s;
  position: relative;
}
.service:hover { background: var(--card-hover); padding-left: 26px; padding-right: 18px; }
.service .idx {
  font-family: "Fraunces", Georgia, serif; font-style: italic;
  font-size: 17px; color: var(--gold-dim);
}
.service h3 {
  font-family: "Fraunces", Georgia, serif; font-weight: 400;
  font-size: 24px; color: var(--cream); letter-spacing: 0.005em;
  transition: color .25s;
}
.service:hover h3 { color: var(--gold-bright); }
.service p { font-size: 14.5px; color: var(--text-dim); max-width: 480px; }
.service .arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--cream); font-size: 17px;
  transition: background .25s, transform .35s, border-color .25s, color .25s;
}
.service:hover .arrow { background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); border-color: transparent; color: #fff; transform: rotate(-45deg); }
.services-note { margin-top: 34px; font-size: 14.5px; color: var(--text-dim); }
.services-note a, .link-underline { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 1px; transition: border-color .2s; }
.services-note a:hover, .link-underline:hover { border-color: var(--gold-bright); }

/* ---------- Products ---------- */
.products-band { background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.07) 30%, rgba(168, 85, 247, 0.06) 70%, transparent); }
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(8px);
  margin-bottom: 34px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.product:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 30px 70px rgba(0,0,0,0.35); }
.product-info { padding: 54px 52px; display: flex; flex-direction: column; align-items: flex-start; }
.product-tag {
  font-family: "Jost", sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line-strong);
  padding: 6px 15px; border-radius: 100px; margin-bottom: 28px;
}
.product-info h3 {
  font-family: "Fraunces", Georgia, serif; font-weight: 400;
  font-size: 40px; color: var(--cream); line-height: 1.1;
}
.product-info .domain { margin: 8px 0 20px; font-size: 14px; color: var(--gold); letter-spacing: 0.04em; }
.product-info > p { font-size: 15.5px; color: var(--text-dim); margin-bottom: 30px; }
.product-cta {
  margin-top: auto;
  font-family: "Jost", sans-serif; font-size: 14.5px; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none; color: var(--cream);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 4px;
  transition: color .2s, gap .25s;
}
.product-cta:hover { color: var(--gold-bright); gap: 16px; }
.product-feats {
  border-left: 1px solid var(--line);
  padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  background: rgba(6, 6, 10, 0.4);
}
.feat { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.feat:last-child { border-bottom: none; }
.feat .f-ic { color: var(--gold); font-size: 15px; line-height: 1.9; }
.feat h4 { font-size: 15px; font-weight: 600; color: var(--cream); letter-spacing: 0.01em; }
.feat p { font-size: 13.5px; color: var(--text-dim); margin-top: 2px; }
.product-metrics { display: flex; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.pm .num { font-family: "Fraunces", Georgia, serif; font-size: 26px; color: var(--cream); }
.pm .num span { color: var(--gold); }
.pm .lbl { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Cards / values / process ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); backdrop-filter: blur(8px);
  padding: 38px 34px;
  transition: border-color .3s, transform .3s;
}
.info-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.info-card .ic {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(168,85,247,0.14));
  border: 1px solid var(--line-strong);
  color: var(--gold-bright); font-size: 19px;
  margin-bottom: 22px;
}
.info-card h3 {
  font-family: "Fraunces", Georgia, serif; font-weight: 400;
  font-size: 22px; color: var(--cream); margin-bottom: 10px;
}
.info-card p { font-size: 14.5px; color: var(--text-dim); }
.process-step .num {
  font-family: "Fraunces", Georgia, serif; font-style: italic;
  font-size: 30px; color: var(--gold); margin-bottom: 10px;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: start; }
.about-copy p { font-size: 16.5px; color: var(--text); margin-bottom: 20px; }
.about-copy p.dim { color: var(--text-dim); font-size: 15.5px; }
.about-copy strong { color: var(--cream); font-weight: 600; }
.about-copy a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-dim); transition: border-color .2s; }
.about-copy a:hover { border-color: var(--gold-bright); }
.about-facts {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); backdrop-filter: blur(8px);
  padding: 40px 38px;
}
.about-facts h3 {
  font-family: "Jost", sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.fact { padding: 15px 0; border-top: 1px solid var(--line); }
.fact:first-of-type { border-top: none; padding-top: 0; }
.fact .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.fact .value { font-size: 14.5px; color: var(--cream); line-height: 1.55; }
.fact .value a { color: var(--gold-bright); text-decoration: none; }
.fact .value a:hover { text-decoration: underline; }

/* ---------- Contact / CTA band ---------- */
.contact-wrap {
  border: 1px solid var(--line); border-radius: 28px;
  padding: 96px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(640px 300px at 50% 120%, rgba(168, 85, 247, 0.14), transparent 70%),
    radial-gradient(600px 300px at 50% -40%, rgba(99, 102, 241, 0.22), transparent 70%),
    var(--card);
}
.contact-wrap .kicker { justify-content: center; }
.contact-wrap .kicker::after { content: ""; width: 34px; height: 1px; background: var(--gold-dim); }
.contact-wrap .title { margin: 24px auto 18px; }
.contact-wrap .lede { margin: 0 auto; }
.contact-actions { margin-top: 44px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }

/* ---------- Lead form ---------- */
.lead-form { max-width: 640px; margin: 44px auto 0; text-align: left; }
.contact-grid .lead-form { margin: 0; max-width: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: "Jost", sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim);
}
.lead-form .opt { display: inline; text-transform: none; letter-spacing: 0.04em; color: var(--text-dim); opacity: .7; }
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: "Inter", sans-serif; font-size: 15px; color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 16px; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787E92' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px; cursor: pointer;
}
.lead-form select:invalid { color: var(--text-dim); }
.lead-form option { background: var(--bg-2); color: var(--cream); }
.lead-form ::placeholder { color: rgba(120, 126, 146, 0.7); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.055);
}
.lead-form textarea { resize: vertical; min-height: 90px; }
.form-submit { border: none; cursor: pointer; align-self: flex-start; margin-top: 6px; }
.form-submit:disabled { opacity: .6; cursor: wait; transform: none !important; }
.form-status { display: none; margin-top: 18px; font-size: 15px; }
.form-status.err { display: block; color: #F0A8B4; }
.form-status.ok {
  display: block; color: var(--cream);
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(168,85,247,0.14));
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 22px 24px; text-align: center;
}
.lead-form.sent .form-fields { display: none; }
.form-status a { color: var(--gold-bright); }
.contact-alt { margin-top: 30px; font-size: 14px; color: var(--text-dim); }
.contact-alt a, .modal-alt a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 1px; }
.contact-alt a:hover, .modal-alt a:hover { border-color: var(--gold-bright); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 4, 8, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}
.modal-card {
  position: relative; width: min(600px, 100%);
  max-height: calc(100vh - 44px); overflow-y: auto;
  background: linear-gradient(180deg, #0D0D18, #08080E);
  border: 1px solid var(--line-strong); border-radius: 22px;
  padding: 40px 42px 34px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(99, 102, 241, 0.08);
  animation: popIn .3s cubic-bezier(.2,.8,.3,1.1);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.modal-x {
  position: absolute; top: 18px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--text-dim); font-size: 20px; line-height: 1; cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}
.modal-x:hover { color: var(--cream); border-color: var(--line-strong); transform: rotate(90deg); }
.modal-title {
  font-family: "Fraunces", Georgia, serif; font-weight: 400;
  font-size: 30px; color: var(--cream); margin: 16px 0 8px; line-height: 1.15;
}
.modal-sub { font-size: 14.5px; color: var(--text-dim); margin-bottom: 6px; }
.modal-card .lead-form { margin-top: 22px; }
.modal-card .form-fields { gap: 14px; }
.modal-alt { margin-top: 20px; font-size: 13px; color: var(--text-dim); }
body.modal-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-card { animation: none; }
}

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 780px; }
.prose h2 {
  font-family: "Fraunces", Georgia, serif; font-weight: 400;
  font-size: 26px; color: var(--cream);
  margin: 46px 0 14px; letter-spacing: 0.005em;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 15.5px; color: var(--text); margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-dim); }
.prose a:hover { border-color: var(--gold-bright); }
.prose .meta-note {
  font-size: 13.5px; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--card); padding: 16px 20px; margin-bottom: 36px;
}
.prose strong { color: var(--cream); font-weight: 600; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--line); padding: 70px 0 36px; font-size: 14px; color: var(--text-dim); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 50px; }
.footer-top img { height: 26px; width: auto; margin-bottom: 20px; opacity: .95; }
.footer-top .blurb { max-width: 330px; font-size: 14px; }
footer.site h4 {
  font-family: "Jost", sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 12px; }
footer.site a { color: var(--text); text-decoration: none; transition: color .2s; }
footer.site a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #56677D;
}

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 160px 0 100px; }
.notfound .code {
  font-family: "Fraunces", Georgia, serif; font-style: italic;
  font-size: clamp(90px, 16vw, 160px); line-height: 1;
  background: linear-gradient(120deg, var(--gold-bright), var(--grad-b));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 84px 0; }
  .hero { min-height: 0; padding: 140px 0 70px; }
  .page-hero { padding: 140px 0 60px; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 34px 56px; margin-top: 56px; }
  .service { display: block; padding: 26px 6px; }
  .service .idx { display: none; }
  .service h3 { font-size: 20px; padding-right: 60px; margin-bottom: 8px; }
  .service p { max-width: none; }
  .service .arrow { position: absolute; right: 10px; top: 26px; width: 40px; height: 40px; }
  .service:hover { padding-left: 6px; padding-right: 6px; }
  .product { grid-template-columns: 1fr; }
  .product-feats { border-left: none; border-top: 1px solid var(--line); padding: 30px 34px; }
  .product-info { padding: 40px 34px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links li:not(:last-child) { display: none; }
  .contact-wrap { padding: 70px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-card { padding: 32px 24px 26px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
