/* ============================================================
   EKVARTA — MAIN STYLESHEET
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=DM+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --orange: #FF6B1A;
  --orange-soft: #FF8C42;
  --orange-pale: #FFF0E6;
  --black: #1A1A1A;
  --dark: #2C2C2C;
  --cream: #FFFAF6;
  --warm-grey: #F7F4EF;
  --green: #2DB87A;
  --green-pale: #E6F9F0;
  --slate: #1A2332;
  --white: #FFFFFF;
  --red: #E53E3E;
  --red-pale: #FFF5F5;
  --blue: #3182CE;
  --blue-pale: #EBF8FF;

  --font-heading: 'Fredoka One', cursive;
  --font-body: 'DM Sans', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(26,26,26,0.08);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.12);
  --shadow-lg: 0 16px 48px rgba(26,26,26,0.16);
  --shadow-orange: 0 8px 32px rgba(255,107,26,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.22, 1.8, 0.36, 1);

  --nav-height: 72px;
  --content-max: 1200px;
  --content-wide: 1400px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--dark); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark);
}

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

.container-wide {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-lg {
  padding: 120px 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-muted { color: #666; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-label.white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,26,0.35);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(45,184,122,0.3);
}

.btn-whatsapp:hover {
  background: #25a86b;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(45,184,122,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* WhatsApp ripple */
.btn-whatsapp::after,
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 currentColor;
  opacity: 0.3;
  animation: ripple-pulse 2s ease-out infinite;
}

/* ── Navigation ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo .ek { color: var(--black); }
.logo .varta { color: var(--orange); }

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--orange);
  background: var(--orange-pale);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  opacity: 0.6;
}

.nav-item:hover .chevron,
.nav-item.active .chevron {
  transform: rotate(180deg);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.06);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}

.mega-menu a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.mega-menu a .icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
  font-size: 1.1rem;
}

.search-btn:hover {
  background: var(--warm-grey);
  color: var(--orange);
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background: var(--warm-grey); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  right: -100%;
  width: min(360px, 100vw);
  height: calc(100vh - var(--nav-height));
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-section { margin-bottom: 24px; }

.mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
  padding: 0 8px;
}

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #fff6f0 50%, var(--warm-grey) 100%);
}

.hero-content { padding: 80px 0 80px 0; }
.hero-content > * + * { margin-top: 24px; }

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--black);
}

.hero-h1 span { color: var(--orange); }

.hero-body {
  font-size: 1.1rem;
  color: #555;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  animation: float-card 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 16px;
}

.service-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--warm-grey);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}

.service-mini-item:last-child { border-bottom: none; }
.service-mini-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-1 { top: 80px; right: -20px; animation: float-badge 4s ease-in-out infinite; }
.hero-badge-2 { bottom: 100px; left: -30px; animation: float-badge 4s ease-in-out infinite 2s; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-blob-1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; right: -100px;
  animation: blob-drift 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px; height: 300px;
  background: var(--green);
  bottom: -80px; left: -80px;
  animation: blob-drift 10s ease-in-out infinite reverse;
}

/* ── Ticker ── */
.ticker {
  background: var(--black);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  padding-right: 24px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.ticker-item .sep {
  color: var(--orange);
  font-size: 0.7rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  border-color: var(--orange);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-top: 4px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 10px;
}

.card-body {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 16px;
  transition: var(--transition);
}

.card-link:hover { gap: 10px; }

/* Service card with tilt */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

/* Guide card */
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
  transition: var(--transition);
  height: 100%;
}

.guide-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.guide-card .tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 12px;
}

/* ── Dark section ── */
.section-dark {
  background: var(--slate);
  color: var(--white);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .section-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }

/* ── Accordion ── */
.accordion { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }

.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--black);
  background: var(--white);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.accordion-trigger:hover { background: var(--orange-pale); color: var(--orange); }
.accordion-trigger.open { background: var(--orange-pale); color: var(--orange); }

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  background: var(--white);
}

.accordion-content.open { max-height: 800px; }

.accordion-body {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff6ef 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

.page-hero h1 { margin-bottom: 16px; }

.page-hero .lead { max-width: 640px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--orange); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: #aaa; }
.breadcrumb .current { color: #999; }

/* ── Emergency styling ── */
.emergency-alert {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.emergency-alert h2, .emergency-alert h3 { color: var(--white); }

.emergency-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--orange);
  display: block;
}

.emergency-box {
  background: var(--red-pale);
  border: 2px solid var(--red);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}

/* ── Content layout ── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.sticky-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.toc-list { list-style: none; }
.toc-list li { margin-bottom: 4px; }
.toc-list a {
  font-size: 0.875rem;
  color: var(--dark);
  padding: 6px 10px;
  display: block;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}
.toc-list a:hover { background: var(--orange-pale); color: var(--orange); }

/* ── Key facts box ── */
.key-facts {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 36px;
}

.key-facts h3 {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.key-facts ul {
  list-style: none;
}

.key-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.key-facts li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Step by step ── */
.step-list { list-style: none; counter-reset: steps; }

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  counter-increment: steps;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-content p { font-size: 0.95rem; }

/* ── Helpful links ── */
.helpful-links {
  list-style: none;
}

.helpful-links li {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.helpful-links li:last-child { border-bottom: none; }

.helpful-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.helpful-links a:hover { color: var(--orange); padding-left: 8px; }
.helpful-links a::before { content: '→'; color: var(--orange); }

/* ── Phone number display ── */
.phone-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-grey);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.phone-display a {
  color: var(--black);
  font-weight: 700;
  font-size: 1.15rem;
}

.phone-display a:hover { color: var(--orange); }

/* ── Table of contents ── */
.toc-box {
  background: var(--warm-grey);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 36px;
}

.toc-box h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.toc-box ol {
  padding-left: 20px;
}

.toc-box ol li {
  margin-bottom: 8px;
}

.toc-box a {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 500;
}

.toc-box a:hover { text-decoration: underline; }

/* ── Author / date bar ── */
.author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin: 24px 0 32px;
  font-size: 0.875rem;
  color: #666;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.author-bar strong { color: var(--dark); }

/* ── WhatsApp CTA section ── */
.whatsapp-cta {
  background: linear-gradient(135deg, var(--green) 0%, #1a9e66 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: var(--white);
  margin-top: 48px;
}

.whatsapp-cta h2 { color: var(--white); margin-bottom: 12px; }
.whatsapp-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.footer-logo .ek { color: var(--white); }
.footer-logo .varta { color: var(--orange); }

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 6px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a { color: rgba(255,255,255,0.8); font-weight: 500; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--orange);
}

.cookie-banner.show { bottom: 0; }

.cookie-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--dark);
  flex: 1;
}

.cookie-text a { color: var(--orange); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--orange-soft);
}

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Tabs ── */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--warm-grey);
  padding: 6px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: var(--dark);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) { color: var(--orange); }

.tab-pane { display: none; animation: fade-in 0.3s ease; }
.tab-pane.active { display: block; }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.badge-orange { background: var(--orange-pale); color: var(--orange); }
.badge-green { background: var(--green-pale); color: var(--green); }
.badge-blue { background: var(--blue-pale); color: var(--blue); }

/* ── Resource card ── */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.resource-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.resource-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}

.resource-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* ── Related pages ── */
.related-pages {
  background: var(--warm-grey);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}

.related-pages h3 { margin-bottom: 20px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-card:hover {
  color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── Was this helpful ── */
.helpful-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--warm-grey);
  border-radius: var(--radius-md);
  margin: 32px 0;
}

.helpful-box p { margin: 0; font-weight: 600; font-size: 0.95rem; }

.helpful-btn {
  font-size: 1.4rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.helpful-btn:hover { background: var(--orange-pale); transform: scale(1.2); }

/* ── Number counter ── */
.counter { font-variant-numeric: tabular-nums; }

/* ── Eligibility checker ── */
.checker-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.checker-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.checker-progress-step {
  flex: 1;
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.checker-progress-step.active { background: var(--orange); }
.checker-progress-step.done { background: var(--green); }

.checker-step {
  display: none;
  animation: slide-in 0.4s ease;
}

.checker-step.active { display: block; }

.checker-question {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--black);
}

.checker-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checker-option {
  padding: 16px 20px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
}

.checker-option:hover, .checker-option.selected {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
}

/* ── Results ── */
.result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
}

.result-icon { font-size: 1.6rem; flex-shrink: 0; }
.result-title { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 2px; }
.result-desc { font-size: 0.85rem; color: #666; margin: 0; }

.result-item.yes { border-left: 4px solid var(--green); }
.result-item.maybe { border-left: 4px solid var(--orange); }
.result-item.no { border-left: 4px solid #ccc; }

/* ── Location grid ── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.location-card:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

/* ── A-Z jargon ── */
.az-section { margin-bottom: 32px; }
.az-letter {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--orange);
  border-bottom: 2px solid var(--orange-pale);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.jargon-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.jargon-term { font-weight: 700; color: var(--black); margin-bottom: 4px; }
.jargon-abbr { color: var(--orange); font-weight: 600; }
.jargon-def { font-size: 0.9rem; color: #555; margin: 0; }

/* ── Pricing ── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--orange);
  position: relative;
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--orange);
  margin: 16px 0 4px;
}

.pricing-per { font-size: 0.875rem; color: #888; }

/* ── Blog card ── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--orange-pale), var(--warm-grey));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.blog-meta .cat {
  color: var(--orange);
  font-weight: 600;
}

.blog-card-title {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--black);
}

.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--orange); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 16px;
}

/* ── Contact form ── */
.contact-form .form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--warm-grey);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,26,0.1);
}

.form-control::placeholder { color: #aaa; }

/* ── Utility ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-content { padding: 100px 0 40px; }
  .hero-visual { display: none; }
  .hero-body { max-width: 100%; margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .checker-options { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 600px) {
  :root { --nav-height: 64px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .whatsapp-cta { padding: 32px 20px; }
  .cookie-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .tab-nav { flex-direction: column; border-radius: var(--radius-md); }

  /* prevent buttons being full-width everywhere — only in hero/cta contexts */
  .hero-buttons .btn,
  .whatsapp-cta .btn { width: 100%; justify-content: center; }

  /* inline flex rows that should stack on mobile */
  [style*="display:flex"][style*="gap:16px"],
  [style*="display: flex"][style*="gap: 16px"] { flex-wrap: wrap; }

  /* service list items — keep icon + text side by side */
  .page-hero { padding: calc(var(--nav-height) + 32px) 0 32px; }

  /* step list */
  .step-item { gap: 12px; }
  .step-number { width: 32px; height: 32px; font-size: 0.9rem; flex-shrink: 0; }

  /* pricing / quote CTA box padding */
  [style*="padding:40px"] { padding: 28px 20px !important; }

  /* author bar stack */
  .author-bar { flex-direction: column; gap: 4px; }

  /* accordion */
  .accordion-trigger { font-size: 0.95rem; padding: 16px 18px; }
  .accordion-body { padding: 0 18px 18px; }

  /* checker */
  .checker-options { grid-template-columns: 1fr; }

  /* nav inner on very small screens */
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
}
