/* ============================================================
   DENLUDI — Complete Stylesheet
   Design: Bento Grid | Glassmorphism accents | 2026
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --c-bg:          #f4f6f8;
  --c-bg-alt:      #eef1f5;
  --c-surface:     #ffffff;
  --c-surface-2:   #f9fafb;
  --c-dark:        #0d1b2a;
  --c-dark-2:      #1a2e42;
  --c-dark-3:      #243c55;
  --c-text:        #1e3248;
  --c-text-muted:  #5a7288;
  --c-text-light:  #8da4b8;

  --c-primary:     #0b6e8a;
  --c-primary-h:   #085f78;
  --c-primary-l:   #e0f2f7;
  --c-secondary:   #1a2e42;
  --c-accent:      #2ec4b6;
  --c-accent-h:    #25a99d;
  --c-accent-l:    #d6f5f3;
  --c-warn:        #e07b39;

  /* Glassmorphism */
  --glass-bg:      rgba(255,255,255,0.55);
  --glass-border:  rgba(255,255,255,0.75);
  --glass-blur:    blur(18px);
  --glass-shadow:  0 8px 32px rgba(11,110,138,0.10);

  /* Shadows */
  --shadow-xs:     0 1px 3px rgba(13,27,42,0.07), 0 1px 2px rgba(13,27,42,0.05);
  --shadow-sm:     0 2px 8px rgba(13,27,42,0.08), 0 1px 3px rgba(13,27,42,0.06);
  --shadow-md:     0 4px 16px rgba(13,27,42,0.10), 0 2px 6px rgba(13,27,42,0.07);
  --shadow-lg:     0 8px 32px rgba(13,27,42,0.12), 0 4px 12px rgba(13,27,42,0.08);
  --shadow-xl:     0 16px 48px rgba(13,27,42,0.14), 0 6px 18px rgba(13,27,42,0.09);
  --shadow-glow:   0 0 0 3px rgba(46,196,182,0.25);

  /* Border Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
  --r-full: 9999px;

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Typography */
  --font-head: 'Crimson Pro', Georgia, serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 350ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --max-w:    1200px;
  --nav-h:    72px;
  --bento-gap: 16px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--c-dark);
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1rem; }
p { line-height: 1.75; color: var(--c-text-muted); }
strong { color: var(--c-text); font-weight: 600; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--sp-4); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo img, .nav-logo svg { height: 38px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-primary);
  background: var(--c-primary-l);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--c-bg-alt);
  border: 1px solid rgba(11,110,138,0.15);
  border-radius: var(--r-full);
  padding: 3px 6px;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  padding: 3px 8px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--c-primary); }
.lang-btn.active {
  background: var(--c-primary);
  color: #fff;
}
.lang-divider { color: var(--c-text-light); font-size: 0.7rem; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-primary);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
  background: var(--c-primary-h) !important;
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(11,110,138,0.18);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--c-bg-alt); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-dark);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-6);
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.mobile-nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--c-primary);
  background: var(--c-primary-l);
}
.mobile-nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-bg-alt);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  background: linear-gradient(145deg, #0d1b2a 0%, #0b3d52 40%, #0a5a70 70%, #0b6e8a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(46,196,182,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(11,110,138,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(46,196,182,0.15);
  border: 1px solid rgba(46,196,182,0.35);
  color: var(--c-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 0.75rem; }
.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  max-width: 800px;
}
.hero-headline .accent-word {
  color: var(--c-accent);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

/* Mini Cards Row */
.hero-cards-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.hero-cards-scroll {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  padding-bottom: var(--sp-3);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.hero-cards-scroll::-webkit-scrollbar { height: 3px; }
.hero-cards-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 99px; }
.hero-mini-card {
  flex-shrink: 0;
  width: 200px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--t-base);
  cursor: pointer;
  text-decoration: none;
}
.hero-mini-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(46,196,182,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.hero-mini-card .card-icon {
  width: 36px;
  height: 36px;
  background: rgba(46,196,182,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--c-accent);
  font-size: 1rem;
}
.hero-mini-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-1);
  font-family: var(--font-body);
}
.hero-mini-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--t-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-dark);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--c-accent-h);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(46,196,182,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--c-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--c-dark-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-ghost:hover {
  background: var(--c-primary-l);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: var(--sp-24) 0;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section-dark {
  background: var(--c-dark);
}
.section-header {
  margin-bottom: var(--sp-12);
}
.section-header.centered { text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  border-radius: var(--r-full);
}
.section-title { margin-bottom: var(--sp-4); }
.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 620px;
  line-height: 1.75;
}
.section-header.centered .section-desc { margin: 0 auto; }

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-grid {
  display: grid;
  gap: var(--bento-gap);
}
.bento-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.bento-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.bento-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.bento-cell {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(11,110,138,0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.bento-cell:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(11,110,138,0.18);
}
.bento-cell-pad { padding: var(--sp-8); }
.bento-cell.col-2 { grid-column: span 2; }
.bento-cell.row-2 { grid-row: span 2; }
.bento-cell.col-3 { grid-column: span 3; }
.bento-cell.accent-bg {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-dark-2) 100%);
  border-color: transparent;
  color: #fff;
}
.bento-cell.accent-bg h3,
.bento-cell.accent-bg h4 { color: #fff; }
.bento-cell.accent-bg p { color: rgba(255,255,255,0.75); }
.bento-cell.teal-bg {
  background: linear-gradient(135deg, var(--c-accent) 0%, #1a9e92 100%);
  border-color: transparent;
}
.bento-cell.teal-bg h3,
.bento-cell.teal-bg h4 { color: var(--c-dark); }
.bento-cell.teal-bg p { color: rgba(13,27,42,0.75); }
.bento-cell.dark-bg {
  background: var(--c-dark);
  border-color: transparent;
}
.bento-cell.dark-bg h3,
.bento-cell.dark-bg h4 { color: #fff; }
.bento-cell.dark-bg p { color: rgba(255,255,255,0.65); }
.bento-cell.light-accent {
  background: var(--c-primary-l);
  border-color: rgba(11,110,138,0.15);
}
.bento-cell.image-cell { padding: 0; position: relative; min-height: 260px; }
.bento-cell.image-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bento-cell.image-cell .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
}
.bento-cell.image-cell .image-overlay h3 { color: #fff; }
.bento-cell.image-cell .image-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

@media (max-width: 1024px) {
  .bento-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.col-3 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento-grid-4,
  .bento-grid-3,
  .bento-grid-2 { grid-template-columns: 1fr; }
  .bento-cell.col-2,
  .bento-cell.col-3,
  .bento-cell.row-2 { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   FEATURES SECTION (Two Columns)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(11,110,138,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
}
.feature-item {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-8);
  border-bottom: 1px solid rgba(11,110,138,0.08);
  border-right: 1px solid rgba(11,110,138,0.08);
  transition: background var(--t-base);
  position: relative;
}
.feature-item:hover { background: var(--c-primary-l); }
.feature-item:nth-child(even) { border-right: none; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--c-primary-l);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1.2rem;
  transition: all var(--t-base);
}
.feature-item:hover .feature-icon {
  background: var(--c-primary);
  color: #fff;
  transform: scale(1.08);
}
.feature-content h4 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
}
.feature-content p { font-size: 0.9rem; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(11,110,138,0.08); }
  .feature-item:last-child { border-bottom: none; }
}

/* ============================================================
   DUAL CTA SECTION
   ============================================================ */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.cta-card {
  border-radius: var(--r-xl);
  padding: var(--sp-12) var(--sp-10);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.cta-card-primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-dark-2) 100%);
  color: #fff;
}
.cta-card-primary h3 { color: #fff; }
.cta-card-primary p { color: rgba(255,255,255,0.8); margin-bottom: var(--sp-8); }
.cta-card-secondary {
  background: var(--c-surface);
  border: 2px solid rgba(11,110,138,0.15);
  box-shadow: var(--shadow-md);
}
.cta-card-secondary h3 { color: var(--c-dark); }
.cta-card-secondary p { color: var(--c-text-muted); margin-bottom: var(--sp-8); }
.cta-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  opacity: 0.65;
}
.cta-card-primary .cta-card-label { color: rgba(255,255,255,0.9); }
.cta-card-secondary .cta-card-label { color: var(--c-primary); }

@media (max-width: 768px) {
  .dual-cta { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--c-accent), var(--c-primary));
  z-index: 0;
}
.step-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border: 1px solid rgba(11,110,138,0.08);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: all var(--t-base);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--c-primary);
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--shadow-md);
}
.step-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.step-card p { font-size: 0.875rem; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES PAGE — BENTO
   ============================================================ */
.service-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--bento-gap);
}
.service-bento .bento-cell.featured {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .service-bento { grid-template-columns: repeat(2, 1fr); }
  .service-bento .bento-cell.featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .service-bento { grid-template-columns: 1fr; }
  .service-bento .bento-cell.featured { grid-column: span 1; }
}

/* ============================================================
   REPORT PAGE
   ============================================================ */
.report-preview {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(11,110,138,0.1);
}
.report-header-bar {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-primary) 100%);
  padding: var(--sp-8) var(--sp-10);
  color: #fff;
}
.report-header-bar h2 { color: #fff; font-size: 1.6rem; margin-bottom: var(--sp-2); }
.report-header-bar p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.report-meta {
  display: flex;
  gap: var(--sp-8);
  padding: var(--sp-6) var(--sp-10);
  background: var(--c-bg-alt);
  border-bottom: 1px solid rgba(11,110,138,0.1);
  flex-wrap: wrap;
}
.report-meta-item { display: flex; flex-direction: column; gap: 3px; }
.report-meta-item .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-light);
}
.report-meta-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
}
.report-body { padding: var(--sp-10); }
.report-section { margin-bottom: var(--sp-10); }
.report-section-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  border-bottom: 2px solid var(--c-primary-l);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.finding-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.finding-item:hover { background: var(--c-bg-alt); border-color: rgba(11,110,138,0.1); }
.finding-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge-critical { background: #fde8e8; color: #c0392b; }
.badge-moderate { background: #fef3e2; color: #d68910; }
.badge-low      { background: #e8f8f5; color: #1e8449; }
.finding-text h5 { font-size: 0.92rem; font-weight: 600; color: var(--c-text); margin-bottom: 3px; font-family: var(--font-body); }
.finding-text p  { font-size: 0.85rem; line-height: 1.55; }
.priority-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.priority-table th {
  background: var(--c-dark);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.priority-table th:first-child { border-radius: var(--r-sm) 0 0 0; }
.priority-table th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.priority-table td {
  padding: var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--c-bg-alt);
  color: var(--c-text);
}
.priority-table tr:hover td { background: var(--c-primary-l); }
.priority-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tag-urgent { background: #fde8e8; color: #c0392b; }
.tag-medium { background: #fef3e2; color: #d68910; }
.tag-routine { background: #e8f8f5; color: #1e8449; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
}
.about-hero h1 { color: #fff; }
.about-hero p { color: rgba(255,255,255,0.75); }
.about-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.values-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.value-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,110,138,0.08);
  transition: all var(--t-base);
}
.value-item:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.value-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--c-primary-l);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1rem;
}
.value-text h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.value-text p { font-size: 0.875rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,110,138,0.08);
}
.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-bg-alt);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--c-primary-l);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-text .label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-text-light); margin-bottom: 3px; }
.contact-info-text .value { font-size: 0.95rem; font-weight: 500; color: var(--c-text); }
.contact-form-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,110,138,0.08);
}
.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--c-bg);
  border: 1.5px solid rgba(11,110,138,0.15);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(11,110,138,0.1);
  background: var(--c-surface);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.form-check label { font-size: 0.85rem; color: var(--c-text-muted); cursor: pointer; }
.form-check a { color: var(--c-primary); text-decoration: underline; }
.map-container {
  margin-top: var(--sp-10);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,110,138,0.1);
}
.map-container iframe { display: block; width: 100%; height: 380px; border: none; }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--c-dark) 0%, var(--c-dark-2) 50%, var(--c-primary) 100%);
  padding: var(--sp-16);
  text-align: center;
}
.thanks-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-16);
  max-width: 560px;
  box-shadow: var(--shadow-xl);
}
.thanks-icon {
  width: 80px; height: 80px;
  background: rgba(46,196,182,0.2);
  border: 2px solid rgba(46,196,182,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-8);
  color: var(--c-accent);
  font-size: 2rem;
}
.thanks-card h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--sp-4); }
.thanks-card p { color: rgba(255,255,255,0.75); margin-bottom: var(--sp-8); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  padding-top: calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-12);
  background: var(--c-dark);
}
.legal-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.legal-hero p { color: rgba(255,255,255,0.65); margin-top: var(--sp-3); }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6);
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-primary-l);
  color: var(--c-dark);
}
.legal-content h3 { font-size: 1.1rem; margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.legal-content p { margin-bottom: var(--sp-4); font-size: 0.95rem; }
.legal-content ul { margin-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--sp-2);
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-primary-l);
  color: var(--c-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-top: var(--sp-4);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-16);
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-3) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-bg));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================================
   SPLIDE CAROUSEL (overrides)
   ============================================================ */
.splide__pagination__page {
  background: var(--c-primary-l);
  border: 2px solid var(--c-primary);
}
.splide__pagination__page.is-active { background: var(--c-primary); }
.splide__arrow {
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,110,138,0.12);
  transition: all var(--t-base);
}
.splide__arrow:hover {
  background: var(--c-primary);
}
.splide__arrow svg { fill: var(--c-primary); transition: fill var(--t-fast); }
.splide__arrow:hover svg { fill: #fff; }
.carousel-slide-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(11,110,138,0.08);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--t-base);
}
.carousel-slide-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(11,110,138,0.2);
}
.carousel-slide-card img { width: 100%; height: 200px; object-fit: cover; }
.carousel-slide-body { padding: var(--sp-6); }
.carousel-slide-body h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: var(--sp-2); }
.carousel-slide-body p { font-size: 0.875rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: var(--sp-4); color: rgba(255,255,255,0.55); }
.footer-logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}
.footer-links a:hover { color: var(--c-accent); transform: translateX(3px); }
.footer-contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}
.footer-contact-item i {
  color: var(--c-accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: var(--sp-5); }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--c-accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
  max-width: 520px;
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow-xl);
  z-index: 9000;
  transition: transform var(--t-slow), opacity var(--t-slow);
}
.cookie-banner.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: var(--sp-5); line-height: 1.55; }
.cookie-banner p a { color: var(--c-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cookie-btn {
  flex: 1;
  min-width: 90px;
  padding: 9px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--t-base);
  border: none;
  text-align: center;
}
.cookie-btn-accept { background: var(--c-accent); color: var(--c-dark); }
.cookie-btn-accept:hover { background: var(--c-accent-h); transform: translateY(-1px); }
.cookie-btn-reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.18); }
.cookie-btn-customize { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-customize:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(4px);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--t-base);
}
.cookie-modal-overlay.open .cookie-modal { transform: scale(1); }
.cookie-modal h3 { font-size: 1.3rem; margin-bottom: var(--sp-6); }
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-bg-alt);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-cat-info h5 { font-size: 0.9rem; font-weight: 600; color: var(--c-text); font-family: var(--font-body); }
.cookie-cat-info p { font-size: 0.8rem; color: var(--c-text-muted); margin-top: 2px; }
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t-fast);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--t-fast);
}
.toggle-switch input:checked + .toggle-slider { background: var(--c-primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--c-accent); cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); justify-content: flex-end; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-accent { color: var(--c-accent); }
.text-primary { color: var(--c-primary); }
.text-muted { color: var(--c-text-muted); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.w-full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(11,110,138,0.2), transparent);
  margin: var(--sp-12) 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Highlight pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.pill-primary { background: var(--c-primary-l); color: var(--c-primary); }
.pill-accent  { background: var(--c-accent-l); color: #0d7a72; }
.pill-warn    { background: #fef3e2; color: var(--c-warn); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: var(--sp-16) 0; }
  .hero { padding-top: calc(var(--nav-h) + var(--sp-10)); padding-bottom: var(--sp-10); }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cta-card { padding: var(--sp-8) var(--sp-6); }
  .report-body { padding: var(--sp-6); }
  .report-meta { padding: var(--sp-4) var(--sp-6); gap: var(--sp-4); }
  .thanks-card { padding: var(--sp-10) var(--sp-8); }
  .cookie-banner { left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4); }
  .priority-table { font-size: 0.8rem; }
  .priority-table th, .priority-table td { padding: var(--sp-2) var(--sp-3); }
}
@media (max-width: 480px) {
  .hero-mini-card { width: 170px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}