@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:      #A4C2F4;
  --bg2:     #B8D0F7;
  --bg3:     #93B4F2;
  --navy:    #0D1F3C;
  --navy2:   #1A3258;
  --white:   #FFFFFF;
  --green:   #0F7A5A;
  --red:     #C73232;
  --slate:   #1E3A5F;
  --muted:   #3D5880;
  --light:   #EEF4FF;
  --border:  rgba(13,31,60,0.12);
  --border2: rgba(13,31,60,0.18);
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(164,194,244,0.12);
}
.nav-logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.nav-logo span { color: var(--bg); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(164,194,244,0.7); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--bg); color: var(--navy) !important; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 6px; transition: opacity 0.2s !important; }
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3rem 5rem; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,255,255,0.25) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 15% 75%, rgba(13,31,60,0.07) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.06;
  background-image: linear-gradient(var(--navy) 1px, transparent 1px), linear-gradient(90deg, var(--navy) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--navy2); text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--navy2); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--white); text-shadow: 0 2px 12px rgba(13,31,60,0.15); }
.hero-sub { font-size: 1.15rem; color: var(--navy2); max-width: 560px; margin-bottom: 2.5rem; font-weight: 400; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 0.9rem; padding: 0.85rem 1.75rem;
  border-radius: 8px; transition: transform 0.15s, box-shadow 0.15s; cursor: pointer;
  border: none; font-family: var(--sans); box-shadow: 0 4px 16px rgba(13,31,60,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13,31,60,0.35); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--navy); font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem 1.75rem; border-radius: 8px;
  border: 2px solid rgba(13,31,60,0.4); transition: all 0.2s;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid rgba(13,31,60,0.18); flex-wrap: wrap;
}
.hero-stat-val { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-stat-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; max-width: 120px; }

/* SECTIONS */
.section { padding: 6rem 3rem; }
.section-light { background: var(--white); color: var(--navy); }
.section-mid   { background: var(--bg); }
.section-tint  { background: var(--bg2); }
.section-dark  { background: var(--navy); color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy2); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content:''; display:block; width:24px; height:2px; background:var(--navy2); }
.section-dark .section-label { color: var(--bg); }
.section-dark .section-label::before { background: var(--bg); }

.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.25rem; color: var(--navy);
}
.section-title em { font-style: italic; color: var(--navy2); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-title em { color: var(--bg); }
.section-body { font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.75; }
.section-dark .section-body { color: rgba(164,194,244,0.75); }

/* CARDS */
.card {
  background: var(--white); border: 1px solid var(--border2);
  border-radius: 12px; padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(13,31,60,0.08);
}
.card:hover { box-shadow: 0 6px 28px rgba(13,31,60,0.14); transform: translateY(-1px); }
.card.dark { background: var(--navy); border-color: rgba(164,194,244,0.15); color: var(--white); }
.card-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.card.dark .card-title { color: var(--white); }
.card-body { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card.dark .card-body { color: rgba(164,194,244,0.75); }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* STAT BAR */
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.stat-bar-item { padding: 2.5rem 2rem; border-right: 1px solid var(--border); }
.stat-bar-item:last-child { border-right: none; }
.stat-bar-val { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.5rem; }
.stat-bar-lbl { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }
.stat-bar-src { font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem; }

/* VALUE PROPS */
.value-prop { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5rem 0; border-bottom: 1px solid var(--border2); }
.value-prop:last-child { border-bottom: none; }
.value-prop.flip { direction: rtl; }
.value-prop.flip > * { direction: ltr; }
.vp-number { font-family: var(--serif); font-size: 5rem; font-weight: 700; color: rgba(13,31,60,0.1); line-height: 1; margin-bottom: 0.5rem; }
.vp-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); border: 2px solid var(--navy); border-radius: 4px; padding: 0.25rem 0.6rem; margin-bottom: 1rem; }
.vp-title { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; color: var(--navy); }
.vp-body { font-size: 1rem; color: var(--slate); line-height: 1.75; margin-bottom: 1.5rem; }
.vp-points { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.vp-points li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--slate); }
.vp-points li::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; border-radius: 50%; background: rgba(13,31,60,0.1); border: 2px solid var(--navy2); }
.vp-visual { background: var(--white); border: 1px solid var(--border2); border-radius: 16px; padding: 2.5rem; min-height: 280px; display: flex; flex-direction: column; justify-content: center; gap: 1rem; box-shadow: 0 4px 24px rgba(13,31,60,0.1); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--border2); border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px rgba(13,31,60,0.08); transition: box-shadow 0.2s, transform 0.2s; }
.pricing-card:hover { box-shadow: 0 8px 32px rgba(13,31,60,0.14); transform: translateY(-2px); }
.pricing-card.featured { background: var(--navy); border-color: var(--navy); color: var(--white); box-shadow: 0 8px 40px rgba(13,31,60,0.25); }
.pricing-card.featured .plan-name, .pricing-card.featured .plan-price, .pricing-card.featured .plan-from { color: var(--white); }
.pricing-card.featured .plan-employees, .pricing-card.featured .plan-unit { color: rgba(164,194,244,0.65); }
.pricing-card.featured .plan-feature { color: rgba(164,194,244,0.85); }
.pricing-card.featured .plan-feature::before { color: var(--bg); }
.pricing-card.featured .plan-price { color: var(--bg); }
.pricing-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--bg); color: var(--navy); padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 1rem; }
.plan-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--navy); }
.plan-employees { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-price { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.plan-unit { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.plan-from { font-size: 0.95rem; font-weight: 700; color: var(--green); margin-bottom: 1.5rem; }
.plan-divider { height: 1px; background: var(--border2); margin-bottom: 1.5rem; }
.pricing-card.featured .plan-divider { background: rgba(164,194,244,0.15); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--muted); }
.plan-feature::before { content: '✓'; flex-shrink: 0; font-size: 0.75rem; font-weight: 700; color: var(--green); margin-top: 1px; }

/* DP HERO */
.dp-hero { min-height: 60vh; display: flex; align-items: center; padding: 10rem 3rem 5rem; position: relative; overflow: hidden; }
.dp-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.2) 0%, transparent 65%); }

/* FORMS */
.application-form { background: var(--white); border: 1px solid var(--border2); border-radius: 16px; padding: 2.5rem; box-shadow: 0 4px 32px rgba(13,31,60,0.1); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.825rem; font-weight: 600; color: var(--slate); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--light); border: 1.5px solid var(--border2); border-radius: 8px; padding: 0.75rem 1rem; color: var(--navy); font-family: var(--sans); font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,31,60,0.1); background: var(--white); }
.form-select option { background: var(--white); color: var(--navy); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
::placeholder { color: rgba(13,31,60,0.3); }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border2); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: rgba(13,31,60,0.12); line-height: 1; padding-top: 0.25rem; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step-body { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }
.step-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(13,31,60,0.08); color: var(--navy2); border-radius: 4px; padding: 0.2rem 0.5rem; margin-bottom: 0.5rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { background: var(--white); border: 1px solid var(--border2); border-radius: 12px; padding: 1.75rem; transition: box-shadow 0.2s, transform 0.2s; box-shadow: 0 2px 10px rgba(13,31,60,0.07); }
.service-card:hover { box-shadow: 0 6px 24px rgba(13,31,60,0.13); transform: translateY(-2px); }
.service-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1rem; border: 1px solid var(--border2); }
.service-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.service-body { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

/* COMP TABLE */
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 0.9rem 1rem; text-align: center; font-size: 0.875rem; border-bottom: 1px solid var(--border2); }
.comp-table th { font-weight: 700; font-size: 0.8rem; color: var(--muted); background: var(--light); }
.comp-table th:first-child, .comp-table td:first-child { text-align: left; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table th:nth-child(2) { color: var(--navy); background: var(--bg2); }
.comp-table td:nth-child(2) { background: rgba(164,194,244,0.2); font-weight: 700; color: var(--navy); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); }
.partial { color: var(--muted); }
.feat-bold { color: var(--navy); font-weight: 600; font-size: 0.875rem; }

/* QUOTE */
.quote-block { background: var(--white); border-left: 3px solid var(--navy); border-radius: 0 12px 12px 0; padding: 1.75rem 2rem; margin: 2rem 0; box-shadow: 0 2px 12px rgba(13,31,60,0.08); }
.quote-text { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--navy); margin-bottom: 0.5rem; }
.quote-attr { font-size: 0.8rem; color: var(--muted); }

/* CALLOUT */
.callout { background: var(--navy); color: var(--white); border-radius: 16px; padding: 3rem; text-align: center; box-shadow: 0 8px 40px rgba(13,31,60,0.2); }
.callout h2 { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.callout p { font-size: 1rem; color: rgba(164,194,244,0.8); margin-bottom: 1.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-dark { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg); color: var(--navy); font-weight: 700; font-size: 0.9rem; padding: 0.85rem 1.75rem; border-radius: 8px; transition: opacity 0.15s; border: none; font-family: var(--sans); cursor: pointer; }
.btn-dark:hover { opacity: 0.9; }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(164,194,244,0.08); padding: 4rem 3rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--white); }
.footer-logo span { color: var(--bg); }
.footer-tagline { font-size: 0.85rem; color: rgba(164,194,244,0.5); line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(164,194,244,0.4); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(164,194,244,0.7); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(164,194,244,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(164,194,244,0.35); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; background: rgba(164,194,244,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-detail-text .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bg); }
.contact-detail-text .value { font-size: 0.95rem; color: rgba(164,194,244,0.8); margin-top: 0.2rem; }

/* DP BENEFITS */
.dp-benefit { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border2); }
.dp-benefit:last-child { border-bottom: none; }
.dp-benefit-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--navy2); line-height: 1; flex-shrink: 0; width: 36px; }
.dp-benefit-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.dp-benefit-body { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* PAGE HEADER */
.page-header { padding: 9rem 3rem 5rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--border2); }
.page-header-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.18) 0%, transparent 65%); }
.page-header-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

/* TAGS */
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy2); border: 2px solid var(--navy2); border-radius: 4px; padding: 0.25rem 0.65rem; margin-bottom: 1rem; }
.tag.green { color: var(--green); border-color: var(--green); }
.tag.white { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); }

/* ALERT BAND */
.alert-band { background: var(--navy); padding: 1rem 3rem; text-align: center; font-size: 0.875rem; color: rgba(164,194,244,0.75); border-top: 1px solid rgba(164,194,244,0.08); border-bottom: 1px solid rgba(164,194,244,0.08); }
.alert-band strong { color: var(--bg); }
.alert-band a { color: var(--bg); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .value-prop { grid-template-columns: 1fr; gap: 2rem; }
  .value-prop.flip { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .dp-hero { padding: 8rem 1.5rem 4rem; }
  .page-header { padding: 8rem 1.5rem 4rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Override inline grid styles that break on mobile */
  .container > [style*="grid-template-columns"],
  .section > .container > [style*="grid-template-columns"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:1fr 1.4fr"],
  div[style*="grid-template-columns:1fr 1.3fr"],
  div[style*="grid-template-columns:repeat(4"],
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  /* Design partner callout box on pricing page */
  div[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Hero stats should wrap */
  .hero-stats { flex-wrap: wrap; justify-content: center; }

  /* Competitive table horizontal scroll */
  .comp-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.8rem; }

  /* Ensure images and cards don't overflow */
  .card, .pricing-card { max-width: 100%; }
  img { height: auto; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stats > div { min-width: 100px; }
  .section { padding: 3rem 1rem; }
  .hero { padding: 6rem 1rem 3rem; }
  .page-header { padding: 6rem 1rem 3rem; }
  .dp-hero { padding: 6rem 1rem 3rem; }
  .alert-band { padding: 0.75rem 1rem; font-size: 0.8rem; }
}
