/* ── Sproflow Technologies — Professional Corporate Website ── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --green: #00A443;
  --green-dark: #008536;
  --green-deep: #00402A;
  --green-light: #e6f7ed;
  --navy: #0B1A2E;
  --navy-mid: #132A46;
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f4f8;
  --gray-200: #e2e7ee;
  --gray-300: #c9d0da;
  --gray-500: #6b7b8f;
  --gray-700: #374151;
  --gray-900: #111827;
  --font: 'Inter', -apple-system, system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --radius: 12px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
}

.navbar-inner {
  width: 100%; max-width: 1200px;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--gray-900);
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 20px; height: 20px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-500);
  padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-links a.active { color: var(--green-deep); font-weight: 600; }

.nav-cta {
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  background: var(--green); color: #fff;
  border: none; padding: 10px 22px; border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
}

.nav-cta:hover { background: var(--green-dark); }

.mobile-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--gray-900); padding: 4px;
}

/* ── HERO ── */
.hero {
  padding-top: 72px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3a2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,164,67,0.15); border: 1px solid rgba(0,164,67,0.3);
  padding: 6px 16px; border-radius: 24px;
  font-size: 0.78rem; font-weight: 600; color: #6ee7a0;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6ee7a0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem; line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  font-family: var(--font); font-size: 0.92rem; font-weight: 600;
  padding: 13px 26px; border-radius: 8px;
  cursor: pointer; transition: all 0.2s; border: none;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--gray-900); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }

.hero-stats {
  display: flex; gap: 28px;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-val {
  font-size: 1.3rem; font-weight: 800; color: #fff;
}

.hero-stat-label {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hero right image card */
.hero-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(8px);
}

.hero-chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}

.hero-chart-title {
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 8px;
}

.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

.hero-chart-badge {
  font-size: 0.7rem; font-weight: 700;
  background: rgba(0,164,67,0.2); color: #6ee7a0;
  padding: 3px 10px; border-radius: 4px;
}

.hero-chart-svg {
  width: 100%; height: 160px;
  background: rgba(0,0,0,0.15); border-radius: 10px;
  padding: 8px; margin-bottom: 14px;
}

.hero-chart-svg svg { width: 100%; height: 100%; }

.hero-chart-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.hcm {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 10px 12px;
}

.hcm-label {
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}

.hcm-val { font-size: 1rem; font-weight: 700; color: #fff; }

/* Ambient shapes behind hero */
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.3;
  pointer-events: none; z-index: 1;
}

.hero-glow-1 { width: 500px; height: 500px; background: #00A443; top: -100px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: #0DA9FF; bottom: -50px; left: -50px; }

/* ── SECTIONS ── */
.section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700;
  color: var(--green-deep); background: var(--green-light);
  padding: 5px 14px; border-radius: 24px;
  margin-bottom: 14px; text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.6;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s;
}

.card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.card-icon-green { background: var(--green-light); }
.card-icon-blue { background: #e0f2fe; }
.card-icon-amber { background: #fef3c7; }
.card-icon-red { background: #fee2e2; }

.card-icon svg { width: 24px; height: 24px; }

.card-label {
  font-size: 0.74rem; font-weight: 700;
  color: var(--green); text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px; line-height: 1.3;
}

.card-text {
  font-size: 0.94rem; color: var(--gray-500);
  line-height: 1.6;
}

.card-list {
  list-style: none; margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}

.card-list li {
  padding-left: 22px; position: relative;
  font-size: 0.9rem; color: var(--gray-700);
}

.card-list li::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--green);
}

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }

.card-tag {
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: var(--gray-100); color: var(--gray-700);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── IMAGE BANNER ── */
.image-banner {
  margin-top: 48px; border-radius: var(--radius);
  overflow: hidden; position: relative;
  aspect-ratio: 21 / 8; min-height: 180px;
  background: #111;
}

.image-banner img {
  width: 100%; height: 100%; object-fit: cover;
}

.image-banner-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,26,46,0.9) 0%, rgba(11,26,46,0.6) 50%, rgba(11,26,46,0.85) 100%);
}

.image-banner-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 40px; z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.image-banner-quote {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600; color: #fff;
  max-width: 700px; line-height: 1.5;
  font-style: italic;
}

.image-banner-source {
  font-size: 0.74rem; font-weight: 600;
  color: var(--green); margin-top: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-style: normal; text-shadow: none;
}

/* ── STEPS PIPELINE ── */
.pipeline {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.pipeline-top {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 14px; margin-bottom: 28px;
}

.pipeline-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--green); text-transform: uppercase;
}

.pipeline-nda {
  font-size: 0.78rem; font-weight: 500; color: var(--gray-500);
}

.pipeline-steps {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 12px; align-items: flex-start;
}

.step-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 20px 18px;
}

.step-num {
  font-size: 0.72rem; font-weight: 700;
  color: #fff; background: var(--green);
  padding: 3px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 10px;
}

.step-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: 6px;
}

.step-text {
  font-size: 0.85rem; color: var(--gray-500); line-height: 1.5;
}

.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); font-size: 1.4rem; padding-top: 30px;
}

.pipeline-cta { margin-top: 24px; text-align: right; }

/* ── CORPORATE ── */
.corp-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px;
}

.corp-table {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.corp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.corp-row:last-child { border-bottom: none; }

.corp-key {
  font-size: 0.86rem; font-weight: 500; color: var(--gray-500);
}

.corp-val {
  font-size: 0.9rem; font-weight: 600; color: var(--gray-900);
  text-align: right;
}

.cin-wrap { display: inline-flex; align-items: center; gap: 8px; }

.cin-code {
  font-family: monospace; font-weight: 700;
  background: var(--green-light); padding: 4px 10px;
  border-radius: 6px; font-size: 0.86rem; color: var(--green-deep);
}

.copy-btn {
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  background: var(--gray-900); color: #fff;
  border: none; padding: 4px 10px; border-radius: 6px;
  cursor: pointer; transition: all 0.2s;
}

.copy-btn:hover { background: var(--green); }

.status-badge {
  font-size: 0.8rem; font-weight: 600;
  background: var(--green-light); color: var(--green-deep);
  padding: 4px 12px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}

.status-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
}

.dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }

.dir-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: 10px;
}

.dir-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, #0DA9FF 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: #fff;
}

.dir-name { font-size: 0.92rem; font-weight: 700; color: var(--gray-900); }
.dir-role { font-size: 0.72rem; color: var(--gray-500); }

.addr-block {
  margin-top: 20px; padding: 18px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 10px; font-style: normal;
}

.addr-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}

.addr-text { font-size: 0.88rem; color: var(--gray-700); line-height: 1.5; }

.addr-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--green);
  margin-top: 8px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px;
}

.contact-info .card-title { font-size: 1.4rem; }

.notice-box {
  margin-top: 20px; padding: 16px;
  background: var(--green-light);
  border: 1px solid rgba(0,164,67,0.2);
  border-radius: 10px;
}

.notice-title {
  font-size: 0.8rem; font-weight: 700;
  color: var(--green-deep); margin-bottom: 4px;
}

.notice-text { font-size: 0.84rem; color: var(--gray-700); line-height: 1.5; }

.meta-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }

.meta-item {
  display: flex; gap: 8px; font-size: 0.88rem;
}

.meta-key { font-weight: 600; color: var(--gray-500); min-width: 70px; }
.meta-val { color: var(--gray-900); }

.cta-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
}

.cta-card-icon { font-size: 2.2rem; margin-bottom: 12px; }

.cta-card-title {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 10px;
}

.cta-card-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.cta-fine {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 60px 32px 32px;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-name {
  font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.5; margin-bottom: 14px;
}

.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  background: rgba(0,164,67,0.15); color: #6ee7a0;
  padding: 4px 12px; border-radius: 4px;
}

.footer-col-title {
  font-size: 0.76rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.footer-links li {
  font-size: 0.86rem; color: rgba(255,255,255,0.6);
}

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.76rem; color: rgba(255,255,255,0.35);
}

/* ── MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.modal-scrim {
  position: absolute; inset: 0;
  background: rgba(11,26,46,0.5);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative; z-index: 1001;
  width: 100%; max-width: 600px; max-height: 90vh;
  overflow-y: auto;
  background: #fff; border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  padding: 32px; animation: fadeUp 0.25s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 16px; margin-bottom: 20px;
}

.modal-title {
  font-size: 1.2rem; font-weight: 700; color: var(--gray-900);
}

.modal-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--green); text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-close {
  width: 34px; height: 34px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 50%; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--gray-500);
}

.modal-close:hover { background: #fee2e2; color: #dc2626; border-color: #dc2626; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fg { display: flex; flex-direction: column; margin-bottom: 14px; }

.fg label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--gray-900); margin-bottom: 5px;
}

.fg .req { color: #dc2626; }

.fg input, .fg select, .fg textarea {
  width: 100%; padding: 10px 14px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; font-family: var(--font); font-size: 0.9rem;
  color: var(--gray-900); outline: none; transition: all 0.2s;
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,164,67,0.1);
}

.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%236b7b8f'%3E%3Cpolygon points='12 16 6 8 18 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
}

.fg textarea { resize: vertical; min-height: 76px; }

.field-err { font-size: 0.72rem; color: #dc2626; font-weight: 500; margin-top: 4px; min-height: 14px; }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--gray-200);
}

.form-foot .nda { font-size: 0.74rem; color: var(--gray-500); }

.success-box { text-align: center; padding: 20px; }
.success-icon { font-size: 2.8rem; color: var(--green); margin-bottom: 12px; }
.success-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.success-text { font-size: 0.92rem; color: var(--gray-500); margin-bottom: 14px; }

.success-ticket {
  background: var(--green-light); border: 1px dashed rgba(0,164,67,0.3);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.8rem; color: var(--green-deep);
  width: fit-content; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2px;
}

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-size: 0.84rem; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 2000;
  display: flex; align-items: center; gap: 8px;
  animation: fadeUp 0.25s ease-out;
}

.toast-check { color: var(--green); font-size: 1.1rem; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.show { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; }
  .grid-3 { grid-template-columns: 1fr; }
  .corp-grid, .contact-grid { grid-template-columns: 1fr; }
  .pipeline-steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px; box-shadow: var(--shadow-md);
  }
  .section { padding: 60px 20px; }
  .hero-inner { padding: 60px 20px 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .image-banner { aspect-ratio: 16/9; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
