/* ============================================================
   CLEARPATHLY — Enterprise Design System
   Clean white / deep navy / capital blue. Inter throughout.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1e3c;
  --navy-800: #10294e;
  --navy-700: #1a3a68;
  --blue: #1d5bd8;
  --blue-hover: #1648ac;
  --blue-soft: #eef3fd;
  --green: #0a9364;
  --green-soft: #e7f6f0;
  --text: #17233a;
  --muted: #55627a;
  --faint: #8b95a9;
  --line: #e4e8f0;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(10, 30, 60, 0.08);
  --shadow-md: 0 8px 28px rgba(10, 30, 60, 0.09);
  --shadow-lg: 0 20px 56px rgba(10, 30, 60, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ============ HEADER ============ */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-head.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.head-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 32px; height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-badge {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: grid; place-items: center; flex-shrink: 0;
}
.logo-badge svg { width: 20px; height: 20px; }
.logo-name { font-size: 1.22rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.logo-name span { color: var(--blue); }

.head-nav { display: flex; align-items: center; gap: 4px; }
.head-nav > a {
  padding: 9px 15px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.head-nav > a:hover { color: var(--navy); background: var(--bg-soft); }
.head-nav > a.active { color: var(--blue); background: var(--blue-soft); font-weight: 600; }
.head-cta {
  margin-left: 14px;
  padding: 11px 22px; border-radius: 9px;
  background: var(--blue); color: #fff !important;
  font-size: 0.92rem; font-weight: 600;
  box-shadow: 0 2px 10px rgba(29, 91, 216, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.head-cta:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29, 91, 216, 0.35); }

/* mobile nav */
.nav-burger {
  display: none;
  width: 42px; height: 42px; border-radius: 9px;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-burger i { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; }
.drawer {
  display: none; position: fixed; inset: 76px 0 0 0; z-index: 89;
  background: #fff; padding: 18px 32px 40px;
  border-top: 1px solid var(--line);
}
.drawer.open { display: block; }
.drawer a {
  display: block; padding: 16px 4px;
  font-size: 1.06rem; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.drawer .head-cta { border: none; text-align: center; border-radius: 9px; margin-top: 18px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(29, 91, 216, 0.09), transparent 60%),
    radial-gradient(700px 420px at -8% 30%, rgba(10, 147, 100, 0.06), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
  padding: 96px 0 88px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: var(--blue-soft); border: 1px solid #d6e2fa;
  font-size: 0.8rem; font-weight: 600; color: var(--blue);
  margin-bottom: 26px;
}
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero h1 { font-size: clamp(2.6rem, 4.6vw, 3.9rem); font-weight: 800; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 1.16rem; color: var(--muted); max-width: 540px; line-height: 1.75; margin-bottom: 38px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 10px;
  font-size: 0.98rem; font-weight: 600; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn-blue {
  background: var(--blue); color: #fff !important;
  box-shadow: 0 4px 18px rgba(29, 91, 216, 0.32);
}
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(29, 91, 216, 0.38); }
.btn-blue .arr { transition: transform 0.2s; }
.btn-blue:hover .arr { transform: translateX(3px); }
.btn-outline {
  background: #fff; color: var(--navy) !important;
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue) !important; }
.btn-white { background: #fff; color: var(--navy) !important; box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-proof {
  margin-top: 44px; display: flex; gap: 34px; flex-wrap: wrap;
}
.hero-proof div { font-size: 0.86rem; color: var(--faint); }
.hero-proof b { display: block; font-size: 1.28rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }

/* hero visual card */
.plan-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 26px 26px 18px; position: relative;
}
.plan-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.plan-card-title { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.plan-chip {
  font-size: 0.72rem; font-weight: 700; color: var(--green);
  background: var(--green-soft); border-radius: 100px; padding: 5px 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.plan-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blip 1.6s ease-in-out infinite; }
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.plan-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 0.74rem; color: var(--faint);
}

/* ============ SVG FLOOR PLAN ANIMATION ============ */
.floorplan { width: 100%; height: auto; display: block; }
.fp-wall {
  fill: none; stroke: var(--navy); stroke-width: 2.5; stroke-linecap: square;
  stroke-dasharray: 1500; stroke-dashoffset: 1500;
  animation: fp-draw 2.2s var(--ease) forwards;
}
.fp-inner {
  stroke: #9fb0c8; stroke-width: 1.6;
  stroke-dasharray: 800; stroke-dashoffset: 800;
  animation-delay: 0.45s;
}
@keyframes fp-draw { to { stroke-dashoffset: 0; } }
.fp-room { fill: var(--bg-soft); }
.fp-route {
  fill: none; stroke: var(--green); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: 9 11; opacity: 0;
  animation: fp-show 0.5s ease 2s forwards, fp-flow 1.2s linear 2s infinite;
}
@keyframes fp-flow { to { stroke-dashoffset: -20; } }
@keyframes fp-show { to { opacity: 1; } }
.fp-ring {
  fill: none; stroke: var(--green); stroke-width: 2;
  transform-box: fill-box; transform-origin: center;
  opacity: 0; animation: fp-pulse 2s ease-out 2.4s infinite;
}
.fp-ring.d2 { animation-delay: 3.1s; }
@keyframes fp-pulse {
  0% { opacity: 0.85; transform: scale(0.35); }
  100% { opacity: 0; transform: scale(1.8); }
}
.fp-dot { fill: var(--blue); }
.fp-label { font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 600; fill: var(--faint); letter-spacing: 0.06em; }
.fp-exit {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
  fill: var(--green); letter-spacing: 0.1em;
}

/* ============ SECTIONS ============ */
.section { padding: 104px 0; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: block;
}
.sec-title { font-size: clamp(1.9rem, 3.3vw, 2.7rem); font-weight: 800; margin-bottom: 18px; max-width: 640px; }
.sec-sub { font-size: 1.08rem; color: var(--muted); max-width: 620px; line-height: 1.75; }
.center { text-align: center; }
.center .sec-title, .center .sec-sub { margin-left: auto; margin-right: auto; }

/* ============ TRUST STRIP ============ */
.trust { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.trust-label { font-size: 0.78rem; font-weight: 600; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; }
.trust-names { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-names span { font-size: 1rem; font-weight: 700; color: #b6bfce; letter-spacing: -0.01em; white-space: nowrap; }

/* ============ FEATURE CARDS ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #cdd8ea; }
.card-num {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; margin-bottom: 22px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* ============ SCENARIO GRID ============ */
.scen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.scen {
  border-radius: var(--radius); padding: 32px 28px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.scen::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue);
}
.scen.s-fire::before { background: #dc4a3d; }
.scen.s-lock::before { background: var(--navy); }
.scen.s-quake::before { background: #d9820b; }
.scen.s-haz::before { background: var(--green); }
.scen:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.scen-icon { font-size: 1.5rem; margin-bottom: 16px; display: block; }
.scen h3 { font-size: 1.1rem; margin-bottom: 10px; }
.scen p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ============ STATS BAND (navy) ============ */
.band {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff; padding: 88px 0;
}
.band .eyebrow { color: #7fa7ee; }
.band .sec-title { color: #fff; }
.band .sec-sub { color: #aebbd4; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 34px 30px;
}
.stat-fig { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: #fff; }
.stat-fig .suffix { color: #7fa7ee; font-size: 0.6em; font-weight: 700; margin-left: 2px; }
.stat-cap { font-size: 0.86rem; color: #aebbd4; margin-top: 10px; }
.std-chips { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.std-chips span {
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem; font-weight: 600; color: #d7e0f0;
}

/* ============ PROJECT CARDS ============ */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.proj {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.proj:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.proj-top {
  padding: 22px 28px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: var(--bg-soft);
}
.proj-sector { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.proj-status { font-size: 0.74rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.proj-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.proj-body { padding: 28px; flex: 1; }
.proj-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.proj-loc { font-size: 0.82rem; color: var(--faint); margin-bottom: 14px; }
.proj-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.proj-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.proj-metrics div { padding: 18px 12px; text-align: center; border-right: 1px solid var(--line); }
.proj-metrics div:last-child { border-right: none; }
.proj-metrics b { display: block; font-size: 1.08rem; font-weight: 800; color: var(--navy); }
.proj-metrics small { font-size: 0.68rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ TESTIMONIAL ============ */
.testimonial {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.testimonial blockquote {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600;
  color: var(--navy); line-height: 1.5; letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.testimonial blockquote::before { content: '\201C'; color: var(--blue); }
.testimonial blockquote::after { content: '\201D'; color: var(--blue); }
.who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.who-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; font-weight: 700; font-size: 0.94rem;
  display: grid; place-items: center;
}
.who-name { text-align: left; font-size: 0.9rem; }
.who-name b { display: block; color: var(--navy); }
.who-name span { color: var(--faint); font-size: 0.82rem; }

/* ============ CTA PANEL ============ */
.cta-panel {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 90%);
  border-radius: 22px; padding: 76px 64px;
  text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-panel h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; margin-bottom: 16px; }
.cta-panel p { color: #cfdcf5; font-size: 1.08rem; max-width: 560px; margin: 0 auto 38px; }

/* ============ TWO-COL DETAIL (platform) ============ */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.detail.flip > .detail-visual { order: -1; }
.detail h3 { font-size: 1.7rem; margin-bottom: 16px; }
.detail p { color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li {
  padding: 9px 0 9px 34px; position: relative;
  color: var(--text); font-size: 0.95rem; font-weight: 500;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5 L9 13.5 L14 7.5' fill='none' stroke='%230a9364' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.detail-visual {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 18px; padding: 42px;
  display: flex; align-items: center; justify-content: center; min-height: 320px;
}
.detail-visual .big-glyph { font-size: 4rem; }

/* format chips */
.fmt-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.fmt-chips span {
  padding: 8px 16px; border-radius: 8px;
  background: #fff; border: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ============ PAGE HERO (inner) ============ */
.page-hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(700px 380px at 85% -20%, rgba(29, 91, 216, 0.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 800; margin-bottom: 20px; max-width: 760px; }
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero .sec-sub { max-width: 660px; }

/* ============ VALUES / ABOUT ============ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

/* ============ CONTACT ============ */
.contact-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 36px; box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.contact-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.mail-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 700;
}

/* ============ PROSE (legal) ============ */
.prose { max-width: 760px; padding: 72px 0 96px; }
.prose h2 { font-size: 1.35rem; margin: 44px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.1em; }
.prose .rev { color: var(--faint); font-size: 0.82rem; }

/* ============ FOOTER ============ */
.site-foot { background: var(--navy); color: #aebbd4; padding: 72px 0 36px; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand .logo-name { color: #fff; }
.foot-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 300px; color: #8fa0bd; }
.foot-col h4 { color: #fff; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.foot-col a { display: block; color: #aebbd4; font-size: 0.92rem; padding: 6px 0; }
.foot-col a:hover { color: #fff; }
.foot-col p { font-size: 0.92rem; color: #8fa0bd; line-height: 1.7; }
.foot-base {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 32px;
  font-size: 0.82rem; color: #8fa0bd;
}
.foot-base a { color: #8fa0bd; }
.foot-base a:hover { color: #fff; }

/* ============ REVEAL ON SCROLL ============ */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translate(-50%, 16px);
  background: var(--navy); color: #fff;
  padding: 13px 24px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .head-nav { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
  .card-grid, .value-grid { grid-template-columns: 1fr; }
  .scen-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .detail { grid-template-columns: 1fr; gap: 40px; }
  .detail.flip > .detail-visual { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-panel { padding: 56px 32px; }
}
@media (max-width: 620px) {
  .wrap, .head-inner { padding-left: 20px; padding-right: 20px; }
  .scen-grid, .stat-row, .foot-grid { grid-template-columns: 1fr; }
  .trust-names { gap: 22px; }
  .hero-proof { gap: 22px; }
}
