/* ============================================================
   BEALEXANDER — Brand Design System
   Imperial Purple + Conquest Gold + Electric Blue
   ============================================================ */

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

/* ── Clash Display via fontshare ── */
@font-face {
  font-family: 'Clash Display';
  src: url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&display=swap');
  font-weight: 600 700;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --purple:        #2B0A6B;
  --purple-mid:    #3D1080;
  --gold:          #D4A017;
  --gold-tint:     #F5DFA0;
  --blue:          #0070F3;
  --navy:          #1A1A2E;
  --lavender:      #F8F6FF;
  --white:         #FFFFFF;
  --text-dark:     #1A1A2E;
  --text-mid:      #4A4A6A;
  --text-light:    #7A7A9A;
  --border:        rgba(43,10,107,0.12);

  --font-display:  'Clash Display', 'Plus Jakarta Sans', sans-serif;
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-sm:     0 2px 8px rgba(43,10,107,0.08);
  --shadow-md:     0 8px 32px rgba(43,10,107,0.14);
  --shadow-lg:     0 20px 60px rgba(43,10,107,0.18);

  --gradient-hero: linear-gradient(135deg, #2B0A6B 0%, #1A1A2E 60%, #0A0A1A 100%);
  --gradient-gold: linear-gradient(135deg, #D4A017, #F5C842);
  --gradient-cta:  linear-gradient(135deg, #2B0A6B 0%, #1A1A2E 100%);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* Global overflow guard */
section, footer, main { max-width: 100%; overflow-x: hidden; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 96px 0;
}

.section--light { background: var(--lavender); }
.section--dark  { background: var(--navy); color: var(--white); }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--blue {
  background: rgba(0,112,243,0.12);
  color: var(--blue);
  border: 1px solid rgba(0,112,243,0.25);
}
.badge--gold {
  background: rgba(212,160,23,0.15);
  color: #A07010;
  border: 1px solid rgba(212,160,23,0.3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  white-space: normal;        /* allow wrapping on very small screens */
  word-break: break-word;
  text-align: center;
  justify-content: center;
}
.btn--primary {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-purple {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn--outline-purple:hover {
  background: var(--purple);
  color: var(--white);
}
.btn--lg { padding: 18px 36px; font-size: 16px; border-radius: var(--radius-lg); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(26,26,46,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.nav__logo-text span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__links .has-dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 10px;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav__hamburger:active {
  background: rgba(255,255,255,0.1);
}
.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Decorative orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43,10,107,0.6) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero__eyebrow { margin-bottom: 24px; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}
.hero__headline .accent { color: var(--gold); }

.hero__sub {
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  max-width: 520px;
  word-wrap: break-word;
}
.hero__copy {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  word-wrap: break-word;
}

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust-item {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}

/* Hero visual panel */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 400px;
}
.hero__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.hero__stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__ai-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,112,243,0.12);
  border: 1px solid rgba(0,112,243,0.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hero__ai-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.stats-strip__item {
  padding: 8px;
}
.stats-strip__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-strip__label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   AI ADVANTAGE
   ============================================================ */
.ai-section {
  background: var(--lavender);
  padding: 96px 0;
}
.ai-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-section__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 20px;
  line-height: 1.2;
}
.ai-section__body {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.8;
}

.ai-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.ai-feature-item:hover {
  border-color: rgba(0,112,243,0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.ai-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,112,243,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ai-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.ai-feature-text span {
  font-size: 13px;
  color: var(--text-light);
}

.ai-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.ai-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,112,243,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.ai-visual__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.ai-metric {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-metric:last-of-type { border-bottom: none; }
.ai-metric__label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.ai-metric__bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-metric__bar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.ai-metric__fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), #4DAAFF);
  transition: width 1.5s ease;
}
.ai-metric__val {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  min-width: 40px;
  text-align: right;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 96px 0; }
.services-section__header {
  max-width: 640px;
  margin-bottom: 56px;
}
.services-section__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--purple);
  margin-bottom: 16px;
}
.services-section__intro { font-size: 17px; color: var(--text-mid); line-height: 1.75; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43,10,107,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--lavender);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.service-card:hover .service-card__icon {
  background: rgba(43,10,107,0.08);
}
.service-card--ai .service-card__icon { background: rgba(0,112,243,0.1); }
.service-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  background: var(--navy);
  padding: 96px 0;
  color: var(--white);
}
.why-section__header { max-width: 640px; margin-bottom: 56px; }
.why-section__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}
.why-section__intro { font-size: 17px; color: rgba(255,255,255,0.6); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,23,0.25);
}
.why-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card__body { font-size: 14px; color: rgba(0, 0, 0, 1); line-height: 1.75; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { padding: 80px 0; }
.industries-section__header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.industries-section__headline {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--purple);
  margin-bottom: 16px;
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.industry-pill {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
  background: var(--white);
}
.industry-pill:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(43,10,107,0.04);
}

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.global-section {
  background: var(--lavender);
  padding: 80px 0;
}
.global-section__header { max-width: 580px; margin-bottom: 48px; }
.global-section__headline {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--purple);
  margin-bottom: 16px;
}
.global-section__body { font-size: 16px; color: var(--text-mid); line-height: 1.8; }

.country-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.country-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s;
}
.country-chip:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gradient-cta);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,160,23,0.08) 0%, transparent 70%);
}
.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.cta-banner__body {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner__sub {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero__sub { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-grid { display: grid; gap: 32px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card__img {
  height: 220px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.blog-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-card__body { padding: 28px; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-light);
}
.blog-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card:hover .blog-card__title { color: var(--purple); }
.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-card__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card__read { gap: 10px; }

/* Blog sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-cat:hover, .sidebar-cat.active {
  background: var(--lavender);
  color: var(--purple);
  font-weight: 500;
}
.sidebar-cat span {
  font-size: 11px;
  color: var(--text-light);
  background: var(--lavender);
  padding: 2px 8px;
  border-radius: 100px;
}
.sidebar-cta {
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sidebar-cta strong { display: block; font-size: 17px; color: var(--white); margin-bottom: 12px; }

/* Blog Post Article */
.article-hero {
  background: var(--gradient-hero);
  padding: 140px 0 60px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 20px;
}
.article-excerpt {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  line-height: 1.7;
}

.article-body {
  padding: 64px 0;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.prose h2 {
  font-size: 28px;
  color: var(--purple);
  margin: 40px 0 16px;
}
.prose h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.prose p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prose ul, .prose ol {
  margin: 20px 0;
  padding-left: 24px;
}
.prose li {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.7;
  list-style-type: disc;
}
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--lavender);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.prose blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--purple);
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(43,10,107,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { padding-top: 16px; }
.contact-info__headline {
  font-size: 36px;
  color: var(--purple);
  margin-bottom: 16px;
}
.contact-info__body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail__icon {
  width: 44px; height: 44px;
  background: var(--lavender);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail__text strong {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-detail__text span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  padding-top: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-mark {
  width: 36px; height: 36px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.footer__brand-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.footer__brand-name span { color: var(--gold); }
.footer__statement {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
}
.footer__social:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__col-links a:hover { color: var(--white); }

.footer__cta-strip {
  background: var(--gold);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__cta-strip p {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.footer__cta-strip a {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.footer__cta-strip a:hover { background: var(--purple); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-left { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__bottom-center {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  display: flex;
  gap: 12px;
}
.footer__bottom-right {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__bottom-right a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   ADMIN DASHBOARD
   ============================================================ */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #F0EEF8;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  flex-shrink: 0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-sidebar__logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-sidebar__logo-mark {
  width: 34px; height: 34px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.admin-sidebar__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.admin-sidebar__logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.admin-nav { padding: 0 12px; flex: 1; }
.admin-nav__section {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  padding: 0 8px;
  margin: 20px 0 8px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  margin-bottom: 2px;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.admin-nav a.active { color: var(--gold); }
.admin-nav a span:first-child { font-size: 16px; }

.admin-main {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DDD8EE;
}
.admin-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}
.admin-header p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 2px;
}

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.admin-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid #DDD8EE;
}
.admin-stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}
.admin-stat__label { font-size: 13px; color: var(--text-light); }
.admin-stat__change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-stat__change--up { color: #22C55E; }
.admin-stat__change--down { color: #EF4444; }

.admin-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #DDD8EE;
  overflow: hidden;
  margin-bottom: 24px;
}
.admin-panel__header {
  padding: 20px 24px;
  border-bottom: 1px solid #EEE;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-panel__header h2 { font-size: 17px; font-weight: 700; color: var(--text-dark); }
.admin-panel__body { padding: 24px; }

/* Post Editor */
.editor-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.editor-main .admin-panel { margin-bottom: 20px; }
.post-title-input {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  border: none;
  border-bottom: 2px solid #EEE;
  outline: none;
  background: transparent;
}
.post-title-input:focus { border-color: var(--purple); }
.post-title-input::placeholder { color: #CCC; }

.editor-toolbar {
  display: flex;
  gap: 4px;
  padding: 12px;
  background: #F8F8F8;
  border-bottom: 1px solid #EEE;
  flex-wrap: wrap;
}
.editor-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  transition: all 0.2s;
}
.editor-btn:hover { background: #EEE; color: var(--text-dark); }
.editor-btn.active { background: var(--purple); color: var(--white); }

.post-content-area {
  width: 100%;
  min-height: 400px;
  padding: 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  border: none;
  outline: none;
  resize: none;
  background: transparent;
}

/* Posts table */
.posts-table { width: 100%; border-collapse: collapse; }
.posts-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: #F8F7FC;
  border-bottom: 1px solid #EEE;
}
.posts-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F0EEF8;
  font-size: 14px;
  color: var(--text-dark);
  vertical-align: middle;
}
.posts-table tr:hover td { background: #FAFAFE; }
.posts-table tr:last-child td { border-bottom: none; }
.post-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.post-status--published { background: #DCFCE7; color: #166534; }
.post-status--draft { background: #FEF9C3; color: #854D0E; }
.post-status--dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.post-status--published .post-status--dot { background: #16A34A; }
.post-status--draft .post-status--dot { background: #CA8A04; }

.table-action {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  margin-right: 4px;
}
.table-action--edit {
  background: var(--lavender);
  color: var(--purple);
}
.table-action--edit:hover { background: var(--purple); color: var(--white); }
.table-action--delete {
  background: #FEE2E2;
  color: #B91C1C;
}
.table-action--delete:hover { background: #B91C1C; color: var(--white); }

/* ============================================================
   TOAST / MODALS
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast--success { border-left: 4px solid #22C55E; }
.toast--error { border-left: 4px solid #EF4444; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 1100;           /* above nav (z-index 1000) */
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Ensure it is never accidentally visible on desktop */
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-shrink: 0;
}
.mobile-menu__close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Large tap target for mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
.mobile-menu__close:active {
  background: rgba(255,255,255,0.18);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-menu__links a {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  display: block;
}
.mobile-menu__links a:active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Hamburger — large tap target */
.nav__hamburger {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  padding: 10px;
  border-radius: 8px;
}
.nav__hamburger:active {
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — LARGE MOBILE / SMALL TABLET (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid        { grid-template-columns: 1fr; }
  .hero__visual      { display: none; }
  .ai-section__grid  { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .blog-layout       { grid-template-columns: 1fr; }
  .blog-sidebar      { display: none; }
  .contact-grid      { grid-template-columns: 1fr; }
  .article-layout    { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .admin-stats       { grid-template-columns: repeat(2, 1fr); }
  .editor-layout     { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* ── Nav ── */
  .nav__links           { display: none !important; }
  .nav__cta             { display: none !important; }
  .nav__hamburger       { display: flex !important; }
  .nav                  { padding: 0 16px; }

  /* ── Global spacing ── */
  .section              { padding: 56px 0; }
  .container            { padding: 0 16px; }

  /* ── Typography scale down ── */
  h1, h2, h3           { word-wrap: break-word; overflow-wrap: break-word; }

  /* ── Hero ── */
  .hero                 { min-height: auto; padding: 100px 0 60px; }
  .hero__grid           { padding: 40px 0; gap: 32px; }
  .hero__content        { width: 100%; }
  .hero__headline       { font-size: clamp(28px, 8vw, 48px); }
  .hero__sub            { font-size: 15px; max-width: 100%; }
  .hero__copy           { font-size: 14px; max-width: 100%; }
  .hero__actions        { flex-direction: column; gap: 12px; }
  .hero__actions .btn   { width: 100%; justify-content: center; font-size: 14px; padding: 14px 20px; }
  .hero__trust          { gap: 12px; }
  .hero__trust-item     { font-size: 11px; }

  /* ── Stats strip ── */
  .stats-strip          { padding: 40px 0; }
  .stats-strip__grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-strip__num     { font-size: 28px; }

  /* ── AI section ── */
  .ai-section__grid     { gap: 40px; }
  .ai-section__headline { font-size: clamp(22px, 6vw, 32px); }

  /* ── Services ── */
  .services-grid        { grid-template-columns: 1fr; }
  .services-section__headline { font-size: clamp(22px, 6vw, 32px); }

  /* ── Why section ── */
  .why-grid             { grid-template-columns: 1fr; }
  .why-section__headline { font-size: clamp(22px, 6vw, 32px); }

  /* ── CTA Banner ── */
  .cta-banner           { padding: 64px 0; }
  .cta-banner__headline { font-size: clamp(26px, 7vw, 42px); }
  .cta-banner__body     { font-size: 15px; }
  .cta-banner .btn      { width: 100%; max-width: 360px; }

  /* ── Page heroes ── */
  .page-hero            { padding: 110px 0 56px; }
  .page-hero__headline  { font-size: clamp(28px, 8vw, 48px); }
  .page-hero__sub       { font-size: 15px; }

  /* ── Footer ── */
  .footer__grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer               { padding: 56px 0 0; }
  .footer__cta-strip    { flex-direction: column; text-align: center; padding: 20px 16px; gap: 12px; }
  .footer__cta-strip p  { font-size: 14px; }
  .footer__bottom       { flex-direction: column; text-align: center; gap: 10px; padding: 16px 0; }
  .footer__bottom-center { flex-wrap: wrap; justify-content: center; }

  /* ── Contact form ── */
  .contact-grid         { grid-template-columns: 1fr; gap: 40px; }
  .contact-form         { padding: 24px 16px; }
  .form-grid            { grid-template-columns: 1fr; gap: 0; }

  /* ── Blog ── */
  .blog-card__title     { font-size: 17px; }
  .blog-card__body      { padding: 20px; }

  /* ── Article ── */
  .article-title        { font-size: clamp(24px, 7vw, 42px); }
  .prose p              { font-size: 15px; }
  .prose h2             { font-size: 22px; }

  /* ── Admin ── */
  .admin-layout         { flex-direction: column; }
  .admin-sidebar        { width: 100%; height: auto; position: static; }
  .admin-main           { padding: 16px; }
  .admin-stats          { grid-template-columns: 1fr 1fr; gap: 12px; }
  .admin-header         { flex-direction: column; align-items: flex-start; gap: 12px; }
  .posts-table th:nth-child(2),
  .posts-table td:nth-child(2) { display: none; } /* hide category col on mobile */
}

/* ── Desktop: hide mobile menu entirely ── */
@media (min-width: 769px) {
  .nav__hamburger { display: none !important; }
  .mobile-menu    { display: none !important; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container            { padding: 0 14px; }

  /* ── Hero ── */
  .hero__headline       { font-size: clamp(26px, 9vw, 40px); letter-spacing: -0.02em; }
  .hero__trust          { flex-direction: column; gap: 8px; padding-top: 20px; }

  /* ── Stats ── */
  .stats-strip__grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-strip__num     { font-size: 24px; }
  .stats-strip__label   { font-size: 11px; }

  /* ── Buttons ── */
  .btn--lg              { padding: 14px 20px; font-size: 14px; }

  /* ── Badges ── */
  .badge                { font-size: 11px; padding: 5px 10px; }

  /* ── Section headers ── */
  .section-label        { font-size: 10px; }

  /* ── Footer ── */
  .footer__socials      { flex-wrap: wrap; }
  .footer__bottom-right { flex-direction: column; gap: 8px; }

  /* ── Admin ── */
  .admin-stats          { grid-template-columns: 1fr; }
  .admin-stat__num      { font-size: 24px; }

  /* ── Contact ── */
  .contact-info__headline { font-size: 26px; }
  .contact-form         { padding: 20px 14px; border-radius: var(--radius-lg); }
}

