/* =============================================================
   KYRIAKOS CHARILAOU — Παραδοσιακό Αρτοποιείο Κύπρου
   Classic Cypriot Bakery · B2B Focus · Refined & Warm
   ============================================================= */

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --cream:        #f8f3ea;
  --parchment:    #ede4cc;
  --parchment-dk: #e0d4b4;
  --white:        #fdfaf5;
  --ink:          #1a1208;
  --brown:        #2a1800;
  --brown-mid:    #5a3418;
  --brown-light:  #8c5e38;
  --gold:         #9a7530;
  --gold-light:   #c8a45e;
  --gold-pale:    #e8d5a8;
  --muted:        #7a6248;
  --muted-light:  #a08060;
  --border:       #cebf9e;
  --border-soft:  #e4d9c2;
  --shadow-warm:  rgba(42, 24, 0, .12);
  --shadow-deep:  rgba(42, 24, 0, .22);
  --max:          1080px;

  --f-display: 'Cinzel', serif;
  --f-serif:   'Cormorant Garamond', serif;
  --f-body:    'Inter', sans-serif;
}

/* ===========================
   RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 88px 0; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3 {
  font-family: var(--f-display);
  letter-spacing: .07em;
  line-height: 1.13;
  color: var(--brown);
  font-weight: 500;
}
h1 { font-size: clamp(34px, 5vw, 54px); }
h2 { font-size: clamp(24px, 3.5vw, 36px); }
h3 { font-size: 17px; font-weight: 600; letter-spacing: .12em; }

p {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

/* ===========================
   EYEBROW
=========================== */
.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===========================
   GOLD RULE
=========================== */
.gold-rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
  margin: 16px 0 28px;
  border: none;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 15px 44px;
  background: var(--brown);
  color: var(--cream);
  border: 1px solid var(--brown);
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  position: relative;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201,169,110,.18);
  pointer-events: none;
  transition: border-color .3s;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn:hover::after { border-color: rgba(255,255,255,.18); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(200,164,94,.65);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(200,164,94,.1); border-color: var(--gold-light); color: #fff; }

.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 18px rgba(42,24,0,.06);
}
.header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
    var(--brown) 0%, var(--gold) 40%,
    var(--gold-light) 55%, var(--gold) 70%,
    var(--brown) 100%
  );
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
}
.brand-text em {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted-light);
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  padding: 9px 20px;
  border: 1px solid transparent;
  transition: color .22s, border-color .22s, background .22s;
  position: relative;
}
/* underline — hidden by default */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 20px; right: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  /* fast out, slow in on hover */
  transition: transform .18s ease;
}
/* on hover: color snaps fast, underline draws slowly */
.nav-link:hover {
  color: var(--brown);
  transition: color .18s;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
/* active: box style, NO underline */
.nav-link.active {
  color: var(--brown);
  border-color: var(--border);
  background: var(--parchment);
}
.nav-link.active::after {
  transform: scaleX(0);  /* explicitly hidden on active */
}

/* ===========================
   HERO — single full-width image
=========================== */
.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
}

/* The background image */
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/hero1.jpg") center 35% / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
  transform-origin: center 35%;
}

/* Multi-layer overlay: warm vignette + bottom darkening */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(10,5,0,.18) 0%, rgba(10,5,0,.65) 100%),
    linear-gradient(to top,  rgba(12,6,0,.88) 0%,  rgba(12,6,0,.0) 48%),
    linear-gradient(to right, rgba(12,6,0,.55) 0%, rgba(12,6,0,.0) 55%);
}

/* Inner decorative frame */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(200,164,94,.38);
  pointer-events: none;
  z-index: 1;
}

/* Corner tick marks */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 28px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(200,164,94,.8) 20px, transparent 20px) top    left  / 20px 1px no-repeat,
    linear-gradient(to bottom, rgba(200,164,94,.8) 20px, transparent 20px) top    left  / 1px 20px no-repeat,
    linear-gradient(to left,   rgba(200,164,94,.8) 20px, transparent 20px) top    right / 20px 1px no-repeat,
    linear-gradient(to bottom, rgba(200,164,94,.8) 20px, transparent 20px) top    right / 1px 20px no-repeat,
    linear-gradient(to right,  rgba(200,164,94,.8) 20px, transparent 20px) bottom left  / 20px 1px no-repeat,
    linear-gradient(to top,    rgba(200,164,94,.8) 20px, transparent 20px) bottom left  / 1px 20px no-repeat,
    linear-gradient(to left,   rgba(200,164,94,.8) 20px, transparent 20px) bottom right / 20px 1px no-repeat,
    linear-gradient(to top,    rgba(200,164,94,.8) 20px, transparent 20px) bottom right / 1px 20px no-repeat;
}

/* Hero text — left-aligned for drama */
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--cream);
  padding: 0 0 60px 8%;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFade 1.8s .25s cubic-bezier(.22,1,.36,1) forwards;
  max-width: 780px;
}

.hero-label {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
  opacity: .9;
}

.hero-content h1 {
  font-family: var(--f-display);
  font-size: clamp(38px, 6vw, 74px);
  letter-spacing: .07em;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,.6);
  line-height: 1.08;
  text-align: left;
}

.hero-divider {
  width: 72px; height: 1px;
  background: linear-gradient(to right, var(--gold-light), transparent);
  margin: 24px 0;
}

.hero-content p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(248,243,234,.75);
  margin-bottom: 36px;
  letter-spacing: .04em;
  text-align: left;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   PAGE BANNER (contact)
=========================== */
.page-banner {
  position: relative;
  height: 300px;
  background: var(--brown);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("../img/hero1.jpg") center / cover no-repeat;
  opacity: .18;
  transform: scale(1.06);
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(42,24,0,.7) 0%, rgba(42,24,0,.4) 100%);
}
.page-banner-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200,164,94,.35);
  pointer-events: none;
  z-index: 2;
}
.page-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
}
.page-banner-content .eyebrow { color: var(--gold-light); margin-bottom: 14px; display: block; }
.page-banner-content h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  text-shadow: 0 3px 24px rgba(0,0,0,.5);
}

/* ===========================
   B2B TRUST STRIP
=========================== */
.b2b-strip {
  background: var(--brown);
  border-top: 1px solid rgba(200,164,94,.2);
  border-bottom: 1px solid rgba(200,164,94,.2);
  height: 18px;
  position: relative;
  z-index: 5;
}

/* ===========================
   SECTION HEAD
=========================== */
.section-head { margin-bottom: 52px; }
.section-intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 2px;
}

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  position: relative;
}
.card::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .3s;
  z-index: 2;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px var(--shadow-warm); }
.card:hover::after { border-color: var(--border); }

.card img {
  width: 100%; height: 248px;
  object-fit: cover;
  filter: sepia(14%) contrast(1.04) brightness(.97);
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .4s ease;
}
.card:hover img { transform: scale(1.06); filter: sepia(5%) contrast(1.06) brightness(1.01); }

.card .pad {
  padding: 28px 30px 32px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.card .pad strong {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.card .pad p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.75; }

/* ===========================
   GRID
=========================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ===========================
   PHILOSOPHY
=========================== */
.philosophy {
  background: var(--parchment);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.philosophy-text p { font-size: 15px; margin-bottom: 16px; font-weight: 300; }

.philosophy-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 56px;
}
.stat { display: flex; flex-direction: column; padding: 24px 0; border-bottom: 1px solid var(--border-soft); }
.stat:first-child { padding-top: 0; }
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--brown);
  letter-spacing: .04em;
  line-height: 1;
}
.stat-label {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.b2b-features.philosophy-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.philosophy-features .b2b-feature {
  height: 100%;
  min-height: 132px;
  padding: 24px;
  background: rgba(200, 164, 94, .18);
}
.philosophy-features .b2b-feature:hover {
  background: rgba(200, 164, 94, .28);
}
.philosophy-features .b2b-feature-text strong {
  color: var(--gold);
}
.philosophy-features .b2b-feature-text p {
  color: var(--muted);
}

/* ===========================
   B2B CALLOUT
=========================== */
.b2b-callout {
  background: var(--brown);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.b2b-callout::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(200,164,94,.015) 0px, rgba(200,164,94,.015) 1px,
    transparent 1px, transparent 52px
  );
  pointer-events: none;
}
.b2b-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.b2b-callout h2 { color: var(--cream); line-height: 1.15; }
.b2b-callout .gold-rule { background: linear-gradient(to right, var(--gold-light), rgba(200,164,94,0)); }
.b2b-callout-inner > div > p {
  color: rgba(248,243,234,.62);
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 300;
}
.b2b-features { display: flex; flex-direction: column; gap: 16px; }
.b2b-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid rgba(200,164,94,.2);
  border-left: 3px solid rgba(200,164,94,.45);
  background: rgba(255,255,255,.04);
  transition: background .25s, border-left-color .25s;
}
.b2b-feature:hover { background: rgba(255,255,255,.07); border-left-color: var(--gold-light); }
.b2b-feature-icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.b2b-feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.philosophy-features .b2b-feature-icon { color: var(--gold); }
.b2b-feature-text { min-width: 0; }
.b2b-feature-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}
.b2b-feature-text p {
  font-size: 13px;
  color: rgba(248,243,234,.5);
  margin: 0;
  line-height: 1.7;
  font-weight: 300;
  overflow-wrap: anywhere;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  align-items: stretch;
}
.contact-info-card .pad { padding: 40px; }
.contact-card-title {
  font-size: 24px;
  letter-spacing: .08em;
  color: var(--brown);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-list li:first-child { padding-top: 0; }
.contact-list li:last-child { border-bottom: none; }
.contact-icon { font-size: 17px; color: var(--gold); width: 22px; flex-shrink: 0; margin-top: 3px; }
.contact-label {
  display: block;
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value { font-family: var(--f-body); font-size: 15px; color: var(--brown); display: block; }
a.contact-value:hover { color: var(--gold); }

.hours-block { border-top: 1px solid var(--border-soft); padding-top: 28px; }
.hours-title {
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border-soft); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { font-family: var(--f-body); font-size: 14px; font-weight: 300; color: var(--muted); padding: 10px 0; }
.hours-table td:last-child { text-align: right; color: var(--brown); font-weight: 400; }

.map-card { min-height: 480px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border-soft); }
.map-label {
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-label::before { content: '⌖'; font-size: 16px; color: var(--gold-light); }
.map-card iframe { flex: 1; min-height: 430px; display: block; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--brown);
  border-top: 3px solid var(--gold);
  padding: 56px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(200,164,94,.012) 0px, rgba(200,164,94,.012) 1px,
    transparent 1px, transparent 52px
  );
  pointer-events: none;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 42px; height: 42px; object-fit: contain; opacity: .8; }
.footer-brand strong {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248,243,234,.82);
  font-weight: 500;
}
.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(248,243,234,.36);
  letter-spacing: .06em;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,164,94,.2), transparent);
}
.footer-nav { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248,243,234,.36);
  transition: color .22s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(248,243,234,.22);
  letter-spacing: .08em;
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .150s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes heroZoom {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.07) translateY(-1%); }
}
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner, .b2b-callout-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-stats { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; flex-direction: row; flex-wrap: wrap; gap: 0; }
  .stat { flex: 1; min-width: 140px; border-bottom: none; border-right: 1px solid var(--border-soft); padding: 0 28px 0 0; }
  .stat:last-child { border-right: none; }
  .hero { height: 580px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; }
  .brand { min-width: 0; gap: 8px; }
  .brand img { width: 40px; height: 40px; flex-shrink: 0; }
  .brand-text { min-width: 0; }
  .brand-text strong { font-size: 11px; letter-spacing: .1em; }
  .brand-text em { font-size: 12px; }
  .nav { flex-shrink: 0; }
  .b2b-features.philosophy-features { grid-template-columns: minmax(0, 1fr); }
  .hero { height: 520px; }
  .hero-content { padding: 0 20px 60px 6%; }
  .hero-content h1 { font-size: clamp(32px, 9vw, 52px); }
  .nav-link { padding: 7px 9px; font-size: 8px; letter-spacing: .12em; }
  .b2b-features.philosophy-features { gap: 14px; margin-top: 36px; }
  .philosophy-features .b2b-feature { min-height: 0; padding: 20px; }
  .b2b-callout-inner { gap: 32px; }
  .contact-info-card .pad { padding: 28px; }
  .page-banner { height: 240px; }
  .philosophy-stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 20px 0; }
  .stat:last-child { border-bottom: none; }
}
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .header-inner { flex-wrap: wrap; padding: 12px 0; }
  .brand { width: 100%; justify-content: center; }
  .nav { width: 100%; justify-content: center; }
  .nav-link { padding: 7px 14px; font-size: 8px; }
  .hero-overlay::before, .hero-overlay::after { inset: 16px; }
  .hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-content h1 { overflow-wrap: anywhere; }
  .stat-num { font-size: 32px; overflow-wrap: anywhere; }
  .b2b-feature { gap: 14px; }
}
