/* ============================================================
   RAPOSA DM GROUP — Clean light theme
   ============================================================ */

:root {
  --bg:           #ffffff;
  --bg-subtle:    #f5f5f7;
  --bg-card:      #ffffff;
  --border:       rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.16);
  --text:         #1d1d1f;
  --text-sub:     #6e6e73;
  --text-dim:     #aeaeb2;
  --accent:       #fd7218;
  --accent-dim:   rgba(253,114,24,0.08);
  --accent-mid:   rgba(253,114,24,0.15);
  --navy:         #0f1b35;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
select, input, textarea, button { font-family: inherit; }

/* --- Container --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-full { width: 100%; overflow: hidden; }

/* --- Scroll animations ------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.07s; }
[data-delay="2"] { transition-delay: 0.14s; }
[data-delay="3"] { transition-delay: 0.21s; }
[data-delay="4"] { transition-delay: 0.28s; }
[data-delay="5"] { transition-delay: 0.35s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  /* needed so mobile dropdown anchors below the bar */
  isolation: isolate;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 28px; height: 28px;
  object-fit: contain;
}
.brand-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand-dm {
  font-weight: 300;
  color: var(--text-sub);
  margin-left: 4px;
  letter-spacing: 0.06em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links:hover, .nav-links.active { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--navy);
  border-radius: 980px;
  padding: 8px 18px;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.82; }
.nav-hamburguer {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Subtle warm gradient wash behind the headline */
.section-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 30%, rgba(253,114,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  border-radius: 980px;
  padding: 5px 14px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.hero-title .light { font-weight: 200; color: var(--text-sub); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 980px;
  padding: 13px 28px;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(253,114,24,0.28);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  border-radius: 980px;
  padding: 12px 28px;
  border: 1px solid var(--border-hover);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover { border-color: var(--text); background: rgba(0,0,0,0.03); transform: translateY(-1px); }

/* ---- Clickbank badge shared elements ---- */
.cb-badge-click {
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: #1b3080;
}
.cb-badge-bank {
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #1b3080;
}

/* ---- Hero award badge ---- */
.hero-award {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 22px;
  box-shadow: var(--shadow-sm);
}
.cb-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cb-badge-click,
.cb-badge-bank {
  font-size: 14px;
  letter-spacing: 0.5px;
}
.cb-badge-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}
.cb-badge-plat {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #c0c0c0 0%, #808080 40%, #d0d0d0 60%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cb-badge-years {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---- Stat card award ---- */
.stat-card-award {
  justify-content: center;
}
.cb-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cb-stat-name {
  font-size: 18px;
  letter-spacing: 0.5px;
}
.cb-stat-plat {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(180deg, #c0c0c0 0%, #808080 40%, #d0d0d0 60%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.25;
}
.scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text));
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ============================================================
   TICKER
   ============================================================ */
.section-ticker {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-track { display: flex; width: max-content; }
.ticker-strip {
  display: flex;
  align-items: center;
  padding: 18px 0;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SHARED
   ============================================================ */
.section       { padding: 120px 0; }
.section-tinted { background: var(--bg-subtle); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.section-headline .light { font-weight: 300; color: var(--text-sub); }
.section-subtext {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-header { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.service-icon { width: 34px; height: 34px; color: var(--accent); }
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ============================================================
   VERTICALS
   ============================================================ */
.verticals-header { margin-bottom: 56px; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.vertical-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.vertical-item:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253,114,24,0.12);
}
.vertical-arrow { color: var(--accent); font-size: 14px; opacity: 0.7; flex-shrink: 0; }
.vertical-name { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
.verticals-more {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-header { }
.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-icon { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-body { display: flex; flex-direction: column; gap: 6px; }
.pillar-title { font-size: 15px; font-weight: 600; color: var(--text); }
.pillar-text  { font-size: 14px; font-weight: 400; color: var(--text-sub); line-height: 1.65; }

/* ============================================================
   BRAND STATEMENT + STATS
   ============================================================ */
.brand-statement {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 80px;
}
.brand-statement .accent { color: var(--accent); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.stat-card {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* Remove redundant top border on the first row (already handled by grid's border-top) */
.stat-card:nth-child(1),
.stat-card:nth-child(2),
.stat-card:nth-child(3),
.stat-card:nth-child(4) { border-top: none; }
.stat-number {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-number .accent { color: var(--accent); }
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.5;
  margin-top: 10px;
  max-width: 150px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; padding-top: 6px; }
.contact-meta { display: flex; flex-direction: column; gap: 4px; }
.contact-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-meta-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}
.contact-meta-value a { transition: color var(--transition); }
.contact-meta-value a:hover { color: var(--accent); }
.contact-divider { width: 100%; height: 1px; background: var(--border); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group   { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 16px; /* ≥16px prevents iOS auto-zoom */
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(253,114,24,0.1);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea { height: 128px; resize: vertical; line-height: 1.6; }
.form-submit {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 980px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(253,114,24,0.28);
  transition: opacity var(--transition), transform var(--transition);
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.form-success, .form-error {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 8px;
}
.form-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.form-error   { background: #fff1f2; color: #dc2626; border: 1px solid #fecaca; }

/* ============================================================
   FOOTER
   ============================================================ */
.section-footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-link:hover { color: #fff; }
.footer-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.35;
}
.footer-brand-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-social {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-social:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer-back-top {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-back-top:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE ≤ 1024px  (large tablet / small laptop)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .verticals-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  /* Fix border grid at 2 cols */
  .stat-card:nth-child(odd)  { border-left: none; }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2)    { border-top: none; }
}

/* ============================================================
   RESPONSIVE ≤ 900px  (tablet portrait)
   ============================================================ */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .section   { padding: 96px 0; }

  /* --- Navbar --- */
  .navbar { position: relative; }
  .nav-menu { display: none; }
  .nav-hamburguer { display: flex; }
  .nav-cta { font-size: 12px; padding: 7px 14px; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 58px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 28px 32px;
    gap: 22px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-menu.open .nav-links {
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
  }

  /* --- Hero --- */
  .section-hero { padding: 120px 0 80px; }
  .hero-inner   { padding: 0 28px; gap: 20px; }
  .hero-actions { gap: 10px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card  { padding: 30px 24px; }

  /* --- Verticals --- */
  .verticals-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* --- About --- */
  .about-layout { grid-template-columns: 1fr; gap: 48px; }

  /* --- Stats --- */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card  { padding: 36px 28px; }
  .stat-card:nth-child(odd)  { border-left: none; }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2)    { border-top: none; }

  /* --- Contact --- */
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-center { display: none; }
}

/* ============================================================
   RESPONSIVE ≤ 640px  (large phones / small tablets)
   ============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section   { padding: 80px 0; }

  /* --- Navbar --- */
  .nav-cta { display: none; }  /* hamburger is enough */
  .nav { height: 52px; }
  .nav-menu.open { top: 52px; padding: 20px 20px 28px; }

  /* --- Hero --- */
  .section-hero { padding: 100px 0 70px; min-height: 100svh; }
  .hero-inner   { padding: 0 20px; gap: 18px; }
  .hero-title   { letter-spacing: -0.035em; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* --- Ticker --- */
  .ticker-item { padding: 0 18px; font-size: 10px; gap: 14px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-header { margin-bottom: 40px; }
  .service-card { padding: 28px 22px; gap: 14px; }

  /* --- Verticals --- */
  .verticals-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .verticals-header { margin-bottom: 40px; }
  .vertical-item { padding: 16px 14px; }
  .vertical-name { font-size: 12px; }

  /* --- About --- */
  .about-layout { gap: 40px; }
  .pillar { gap: 16px; padding: 24px 0; }

  /* --- Brand statement --- */
  .brand-statement { margin-bottom: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card  { padding: 28px 20px; }

  /* --- Contact --- */
  .contact-grid { gap: 40px; }
  .contact-info { gap: 28px; }
  .form-submit  { width: 100%; text-align: center; }

  /* --- Footer --- */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-right  { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
  .section-footer { padding-top: 56px; }
}

/* ============================================================
   RESPONSIVE ≤ 390px  (iPhone SE / small phones)
   ============================================================ */
@media (max-width: 390px) {
  .container { padding: 0 16px; }

  .hero-eyebrow { font-size: 10px; padding: 4px 12px; }

  .verticals-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-card  { border-left: none; border-top: none; padding: 24px 0; }
  .stat-card:first-child { border-top: none; }

  .section-footer { padding-top: 48px; }
}
