/* ═══════════════════════════════════════════════
   OSK Kłysk — Modern Design System
   ═══════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  /* Palette */
  --navy:        #0F1728;
  --navy-mid:    #1E2D4A;
  --navy-soft:   #2E4270;

  --blue:        #0A6EFF;
  --blue-light:  #3D8BFF;
  --blue-pale:   #E8F0FF;

  --amber:       #F59E0B;
  --amber-light: #FEF3C7;

  --cream:       #F8F6F1;
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F1F0EC;
  --gray-200:    #E4E2DB;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;

  /* Semantic */
  --bg:          var(--cream);
  --bg-card:     var(--white);
  --bg-raised:   var(--gray-100);
  --text:        var(--navy);
  --text-mid:    #4A5568;
  --text-dim:    var(--gray-600);
  --accent:      var(--blue);
  --accent-light:var(--blue-pale);
  --border:      var(--gray-200);
  --nav-bg:      rgba(248, 246, 241, 0.92);

  /* Typography */
  --font-disp:   'Epilogue', sans-serif;
  --font-body:   'Figtree', sans-serif;

  /* Layout */
  --max:         1200px;
  --px:          clamp(1.25rem, 5vw, 3.5rem);
  --r:           12px;
  --r-lg:        20px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,23,40,0.08), 0 1px 2px rgba(15,23,40,0.04);
  --shadow-md:   0 4px 16px rgba(15,23,40,0.10), 0 2px 6px rgba(15,23,40,0.06);
  --shadow-lg:   0 12px 40px rgba(15,23,40,0.14), 0 4px 12px rgba(15,23,40,0.08);
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── UTILS ─── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow--light { color: rgba(255,255,255,0.7); }
.eyebrow--light::before { background: rgba(255,255,255,0.5); }

.section-h {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.section-h--light { color: var(--white); }

.section-intro {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ─── REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.in { opacity: 1; transform: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  box-shadow: 0 4px 20px rgba(10,110,255,0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-raised);
  border-color: var(--gray-400);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
}

.btn-accent {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-accent:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* ─── CATEGORY CHIPS ─── */
.cat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 5px;
  border: 1px solid rgba(10,110,255,0.2);
}
.cat-chip--sm { font-size: 0.65rem; padding: 0.15rem 0.45rem; }


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--px);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo .logo-mark { color: var(--accent); }
.nav-logo b { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-raised);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-sw {
  display: flex;
  align-items: center;
  gap: 0;
}
.lang-sw button {
  background: none;
  border: none;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
}
.lang-sw button.active {
  color: var(--accent);
  background: var(--accent-light);
}
.lang-sw button:hover:not(.active) { color: var(--text); }
.lang-div {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

.nav-btn {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-btn:hover {
  background: var(--blue-light);
  box-shadow: 0 4px 16px rgba(10,110,255,0.35);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
  padding-top: 80px;
}

/* Road decoration */
.hero-road {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.road-stripe {
  position: absolute;
  bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.road-stripe.s1 { left: 25%; height: 60%; }
.road-stripe.s2 { left: 50%; height: 80%; }
.road-stripe.s3 { left: 75%; height: 50%; }

.road-center-line {
  position: absolute;
  left: 50%;
  top: 20%;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(245,158,11,0.4) 0,
    rgba(245,158,11,0.4) 40px,
    transparent 40px,
    transparent 70px
  );
}

/* Geometric accents */
.hero-sign-circle {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid rgba(10,110,255,0.15);
  pointer-events: none;
}
.hero-sign-circle::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(10,110,255,0.10);
}

.hero-dot-grid {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  padding-top: 5rem;
  padding-bottom: 8.5rem; /* extra room for instructor card overflow */
}

/* Hero content */
.hero-cats {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.cat-pill {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: 40px;
  border: 1px solid rgba(10,110,255,0.5);
  color: var(--blue-light);
  background: rgba(10,110,255,0.12);
  backdrop-filter: blur(4px);
}

.hero-h {
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-h em {
  font-style: normal;
  color: var(--blue-light);
  position: relative;
}
.hero-h em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Ghost button on dark hero background needs light text */
#hero .btn-ghost {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.28);
  background: transparent;
}
#hero .btn-ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.stat-num {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, #1a2540 0%, #0d1525 60%, #0a1020 100%);
  position: relative;
}

.hero-img-frame .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle grid pattern inside placeholder frame */
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.img-ph-icon {
  opacity: 0.7;
  filter: drop-shadow(0 4px 16px rgba(10,110,255,0.2));
}

.img-ph-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.img-ph-tag {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(10,110,255,0.7);
  background: rgba(10,110,255,0.1);
  border: 1px solid rgba(10,110,255,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.2rem;
}
.img-ph-label span:last-child {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

.img-placeholder--tall { aspect-ratio: 3/4; }

/* Instructor card — sits below and slightly overlaps the frame */
.instructor-card {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  min-width: 220px;
  z-index: 10;
}

.instructor-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--blue-light) 100%);
  color: var(--white);
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.instructor-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.instructor-name {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.instructor-role {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
}

.instructor-badge {
  flex-shrink: 0;
}

/* Zebra crossing decoration */
.hero-zebra {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  gap: 0;
  pointer-events: none;
}
.zebra-stripe {
  flex: 1;
  background: rgba(255,255,255,0.08);
}
.zebra-stripe:nth-child(odd) { background: rgba(255,255,255,0.14); }


/* ═══════════════════════════════════════════════
   OFFER
   ═══════════════════════════════════════════════ */
#offer { background: var(--bg); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.offer-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.25s;
  cursor: pointer;
  user-select: none;
}
.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Featured card (Category B) */
.offer-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.offer-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}

/* Road sign shapes */
.offer-sign {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 1.5rem 0;
  align-self: flex-start;
  border-radius: 8px;
}

.sign-rect {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.75rem;
}

.sign-tri {
  width: 0;
  height: 0;
  font-size: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-bottom: 56px solid var(--navy-mid);
  position: relative;
  background: transparent;
  margin-top: 1.5rem;
}
.sign-tri::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
  white-space: nowrap;
}

/* Override sign-tri to use normal div layout */
.offer-sign.sign-tri {
  width: 56px;
  height: 52px;
  background: transparent;
  border: none;
  border-radius: 0;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background-color: var(--navy-mid);
  color: transparent;
  font-size: 0.75rem;
  position: relative;
  overflow: visible;
}
/* The text inside sign-tri needs to be shown differently */
.offer-card:not(.featured) .offer-sign {
  width: 56px;
  height: 56px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  padding-top: 22px;
}

.offer-card-body {
  flex: 1;
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.offer-title {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.offer-subtitle {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: -0.625rem;
}

.offer-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.offer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.offer-includes li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.45em;
}

.offer-age {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  padding-top: 0.5rem;
}
.offer-age svg { color: var(--text-dim); flex-shrink: 0; }

.offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--accent);
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.offer-cta:hover {
  background: var(--accent-light);
}
.offer-card.featured .offer-cta {
  background: var(--accent);
  color: var(--white);
  border-top-color: var(--accent);
}
.offer-card.featured .offer-cta:hover {
  background: var(--blue-light);
}


/* ═══════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════ */
.why-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.why-road-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--border) 0,
    var(--border) 30px,
    transparent 30px,
    transparent 50px
  );
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-icon-wrap {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.why-sign-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.why-item:hover .why-sign-circle {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(10,110,255,0.08);
}

.why-num {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.why-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.why-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-section { background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, var(--gray-100) 0%, var(--gray-200) 100%);
  aspect-ratio: 3/4;
}

.about-img-frame .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* About placeholder needs dark text (light section) */
.about-img-frame .img-placeholder {
  color: var(--text-dim);
}
.about-img-frame .img-placeholder .img-ph-icon {
  opacity: 0.45;
  filter: none;
  color: var(--text-mid);
}
.about-img-frame .img-placeholder .img-ph-icon svg path,
.about-img-frame .img-placeholder .img-ph-icon svg circle,
.about-img-frame .img-placeholder .img-ph-icon svg rect {
  stroke: var(--text-mid);
  fill: var(--gray-200);
}
.about-img-frame .img-ph-tag {
  color: var(--accent);
  background: var(--accent-light);
  border-color: rgba(10,110,255,0.2);
}
.about-img-frame .img-ph-label span:last-child {
  color: var(--text-dim);
}

.about-road-tag {
  position: absolute;
  bottom: 1.5rem;
  right: -1px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  background: var(--navy);
  border-radius: 8px 0 0 8px;
}
.road-tag-dashes {
  display: flex;
  gap: 3px;
  align-items: center;
}
.road-tag-dashes span {
  display: block;
  width: 8px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}
.road-tag-dashes span:nth-child(even) { opacity: 0.4; }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testi-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    var(--white) 0, var(--white) 24px,
    transparent 24px, transparent 42px
  );
  opacity: 0.06;
}

.testi-section .eyebrow { color: rgba(255,255,255,0.5); }
.testi-section .eyebrow::before { background: rgba(255,255,255,0.3); }
.testi-section .section-h { color: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.testi-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(10,110,255,0.25);
  pointer-events: none;
  user-select: none;
}

.testi-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  font-style: normal;
  line-height: 1.3;
}

.testi-cat {
  display: block;
  margin-top: 0.2rem;
}

.testi-fb-grid {
  align-items: start;
}
.testi-fb-card {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-color: transparent;
  border-radius: var(--r-lg);
  display: flex;
  justify-content: center;
}
.testi-fb-card:hover {
  background: var(--white);
  border-color: transparent;
}
.testi-fb-card .fb-post,
.testi-fb-card .fb-video {
  display: block;
}


/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
#faq { background: var(--bg); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-aside-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  margin-top: -0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-road-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-dash-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.06) 0,
    rgba(255,255,255,0.06) 40px,
    transparent 40px,
    transparent 70px
  );
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  margin-top: -0.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(10,110,255,0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.2rem;
}

.contact-val {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.contact-social-link {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.contact-social-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}


.contact-qr {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.25rem;
}
.contact-qr img {
  border-radius: 6px;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}
.contact-qr-label {
  display: flex;
  flex-direction: column;
}
.contact-qr-label span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.contact-qr-label small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand .nav-logo { color: var(--white); font-size: 1.05rem; }
.footer-brand .nav-logo b { color: var(--blue-light); }
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.footer-cats { display: flex; gap: 0.4rem; align-items: center; }
.footer-cats .cat-chip {
  background: rgba(10,110,255,0.15);
  color: var(--blue-light);
  border-color: rgba(10,110,255,0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}
.footer-bottom .wrap {
  display: flex;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
  .offer-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { aspect-ratio: 16/9; max-width: 100%; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    z-index: 199;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem var(--px);
    border-radius: 0;
    font-size: 0.9rem;
  }
  .nav-hamburger { display: flex; }
  .nav-end .nav-btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; padding-bottom: 5rem; }
  .hero-visual { display: none; }
  .hero-h { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-stats { width: 100%; justify-content: space-between; }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-links { gap: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 1rem; padding: 1rem; flex-wrap: wrap; }
  .stat-div { display: none; }
}
