@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

/* ============================================
   RADKULMA — Core Stylesheet
   Palette: White #FFFFFF | Forest #1B4332 | Orange #F97316 | Blue #0284C7
   ============================================ */

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

:root {
  --white:   #FFFFFF;
  --forest:  #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark:  #132a1f;
  --orange:  #F97316;
  --orange-light: #FED7AA;
  --blue:    #0284C7;
  --blue-light: #BAE6FD;
  --gray-50: #F8FAFC;
  --gray-100:#F1F5F9;
  --gray-200:#E2E8F0;
  --gray-300:#CBD5E1;
  --gray-400:#94A3B8;
  --gray-600:#475569;
  --gray-700:#334155;
  --gray-800:#1E293B;
  --gray-900:#0F172A;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--forest-dark);
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { max-width: 72ch; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 820px; }

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

/* ===== GRID ===== */
.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-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

/* ===== FLEXBOX HELPERS ===== */
.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-20 { gap: 20px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  letter-spacing: .02em; text-transform: uppercase;
  transition: all .22s ease; white-space: nowrap;
}
.btn--primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.btn--primary:hover { background: #ea6407; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.45); }
.btn--forest {
  background: var(--forest); color: var(--white);
  box-shadow: 0 4px 14px rgba(27,67,50,.3);
}
.btn--forest:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--white); }
.btn--outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: #0369a1; transform: translateY(-2px); }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn--lg { padding: 16px 40px; font-size: 1.1rem; }

/* ===== TAGS / BADGES ===== */
.tag {
  display: inline-block; padding: 4px 12px;
  border-radius: 20px; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.tag--forest { background: rgba(27,67,50,.1); color: var(--forest); }
.tag--orange { background: rgba(249,115,22,.12); color: #c2550a; }
.tag--blue { background: rgba(2,132,199,.1); color: #015c8b; }
.tag--gray { background: var(--gray-100); color: var(--gray-600); }

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  display: inline-block; color: var(--orange);
  font-family: var(--font-heading); font-weight: 700;
  font-size: .9rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 600px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 24px; }
.card__title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--forest-dark); }
.card__text { font-size: .92rem; color: var(--gray-600); line-height: 1.65; }
.card__footer { padding: 0 24px 24px; }
.card__meta { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: var(--gray-400); margin-top: 12px; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  color: var(--forest);
}
.nav__logo-icon {
  width: 36px; height: 36px; background: var(--forest);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.nav__logo-icon svg { width: 20px; height: 20px; fill: var(--white); }
.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__link {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: .92rem; font-weight: 500; color: var(--gray-700);
  transition: all .18s; position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--forest); background: var(--gray-50); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 200;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block; padding: 10px 16px;
  font-size: .9rem; color: var(--gray-700);
  transition: all .15s;
}
.nav__dropdown a:hover { background: var(--gray-50); color: var(--forest); padding-left: 22px; }
.nav__dropdown-divider { height: 1px; background: var(--gray-100); margin: 4px 0; }

.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius); cursor: pointer;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--forest-dark); border-radius: 2px;
  transition: all .22s;
}

.nav__mobile {
  display: none; flex-direction: column; padding: 16px 24px 20px;
  background: var(--white); border-top: 1px solid var(--gray-100);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 10px 0; font-size: .95rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: var(--forest-dark);
  min-height: 88vh; display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .45;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(19,42,31,.82) 0%, rgba(19,42,31,.45) 60%, rgba(2,132,199,.2) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 60px 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-family: var(--font-heading);
  font-size: .9rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 20px;
}
.hero__title {
  color: var(--white); margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__title em { font-style: normal; color: var(--orange); }
.hero__sub {
  color: rgba(255,255,255,.82); font-size: 1.1rem;
  max-width: 600px; line-height: 1.75; margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.5); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--forest); color: var(--white);
  padding: 32px 0;
}
.stats-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-heading); font-size: 2.6rem;
  font-weight: 800; color: var(--orange); line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label { font-size: .85rem; color: rgba(255,255,255,.7); letter-spacing: .04em; }

/* ===== ROUTE CARD ===== */
.route-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.route-card__img { width: 100%; height: 210px; object-fit: cover; }
.route-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.route-card__region {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange); margin-bottom: 8px;
}
.route-card__title { font-size: 1.3rem; color: var(--forest-dark); margin-bottom: 10px; }
.route-card__desc { font-size: .9rem; color: var(--gray-600); flex: 1; margin-bottom: 16px; }
.route-card__stats {
  display: flex; gap: 16px; padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.route-stat {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; text-align: center;
}
.route-stat__val { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--forest); }
.route-stat__key { font-size: .72rem; color: var(--gray-400); letter-spacing: .04em; text-transform: uppercase; }
.route-card__footer { padding: 0 22px 22px; }

/* ===== PROFILE STRIP ===== */
.profile-strip {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 20px 24px; margin: 16px 0;
}
.profile-bar {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.profile-bar:last-child { margin-bottom: 0; }
.profile-bar__label { font-size: .8rem; color: var(--gray-600); min-width: 90px; }
.profile-bar__track {
  flex: 1; height: 8px; background: var(--gray-200);
  border-radius: 4px; overflow: hidden;
}
.profile-bar__fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  transition: width .8s ease;
}
.profile-bar__fill--orange { background: linear-gradient(90deg, #c2550a, var(--orange)); }
.profile-bar__fill--blue { background: linear-gradient(90deg, #015c8b, var(--blue)); }
.profile-bar__val { font-size: .8rem; font-weight: 600; color: var(--forest); min-width: 36px; text-align: right; }

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: .95rem; background: var(--white);
}
.compare-table th {
  background: var(--forest); color: var(--white);
  padding: 16px 20px; font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; text-align: left;
  letter-spacing: .03em;
}
.compare-table th.highlight { background: var(--orange); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table td.check { color: var(--forest); font-size: 1.1rem; }
.compare-table td.cross { color: #dc2626; }
.compare-table td strong { color: var(--forest-dark); }

/* ===== ACCOMMODATION CARDS ===== */
.accom-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.accom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.accom-card__img { width: 100%; height: 180px; object-fit: cover; }
.accom-card__body { padding: 20px; flex: 1; }
.accom-card__type {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue); margin-bottom: 6px;
}
.accom-card__name { font-size: 1.1rem; color: var(--forest-dark); margin-bottom: 8px; }
.accom-card__location { font-size: .85rem; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.accom-card__features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.accom-card__feature {
  padding: 3px 10px; background: var(--gray-100);
  border-radius: 20px; font-size: .75rem; color: var(--gray-600);
}
.accom-card__footer { padding: 0 20px 20px; display: flex; align-items: center; justify-content: space-between; }
.accom-card__price { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--forest); }
.accom-card__price span { font-size: .8rem; font-weight: 400; color: var(--gray-400); }

/* ===== INTERVIEW BLOCK ===== */
.interview-block {
  background: var(--gray-50); border-radius: var(--radius-lg);
  overflow: hidden; display: grid; grid-template-columns: 280px 1fr;
}
.interview-block__sidebar {
  background: var(--forest); padding: 40px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.interview-block__portrait {
  width: 120px; height: 120px; border-radius: 50%;
  border: 4px solid var(--orange); object-fit: cover; margin-bottom: 16px;
}
.interview-block__name { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.interview-block__role { color: rgba(255,255,255,.7); font-size: .85rem; }
.interview-block__social { display: flex; gap: 10px; margin-top: 20px; }
.interview-block__social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: .8rem; transition: background .2s;
}
.interview-block__social a:hover { background: var(--orange); }
.interview-block__content { padding: 40px; }
.interview-block__tag { color: var(--orange); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.interview-block__title { font-size: 1.6rem; margin-bottom: 20px; }
.interview-block__qa { margin-bottom: 20px; }
.interview-block__q { font-weight: 600; color: var(--forest); margin-bottom: 6px; font-size: .95rem; }
.interview-block__a { color: var(--gray-600); font-size: .95rem; line-height: 1.7; }

/* ===== ELEVATION INFOGRAPHIC ===== */
.elevation-strip {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.elevation-strip__title { font-size: 1rem; font-weight: 600; color: var(--forest-dark); margin-bottom: 20px; }
.elevation-chart { display: flex; align-items: flex-end; gap: 3px; height: 80px; }
.elevation-bar {
  flex: 1; background: linear-gradient(to top, var(--forest), var(--forest-light));
  border-radius: 2px 2px 0 0; min-height: 4px;
  transition: opacity .2s;
}
.elevation-bar:hover { opacity: .75; }
.elevation-labels { display: flex; justify-content: space-between; margin-top: 8px; }
.elevation-label { font-size: .72rem; color: var(--gray-400); }

/* ===== MAP REGION NAV ===== */
.region-nav {
  background: var(--forest-dark); padding: 24px 0;
}
.region-nav__list {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.region-nav__list::-webkit-scrollbar { display: none; }
.region-nav__item {
  padding: 12px 24px; font-family: var(--font-heading);
  font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.65);
  border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap; cursor: pointer;
  transition: all .2s;
  text-decoration: none; display: block;
}
.region-nav__item:hover, .region-nav__item.active {
  color: var(--white); background: rgba(255,255,255,.06);
}
.region-nav__item.active { border-bottom: 2px solid var(--orange); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--gray-400); padding: 16px 0;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray-300); }

/* ===== ROUTE HERO (subpages) ===== */
.page-hero {
  background: var(--forest-dark); color: var(--white);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .35;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(19,42,31,.9) 40%, rgba(19,42,31,.5) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__eyebrow {
  color: var(--orange); font-family: var(--font-heading);
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 12px;
}
.page-hero__title { color: var(--white); margin-bottom: 16px; }
.page-hero__sub { color: rgba(255,255,255,.75); max-width: 580px; font-size: 1rem; }

/* ===== ARTICLE CONTENT ===== */
.article-content h2 { font-size: 1.8rem; color: var(--forest-dark); margin: 40px 0 14px; }
.article-content h3 { font-size: 1.35rem; color: var(--forest); margin: 30px 0 10px; }
.article-content p { color: var(--gray-700); line-height: 1.8; margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content li { margin-bottom: 8px; color: var(--gray-700); line-height: 1.7; }
.article-content strong { color: var(--forest-dark); }
.article-content blockquote {
  border-left: 4px solid var(--orange); padding: 16px 24px;
  background: var(--gray-50); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.article-content blockquote p { color: var(--gray-700); font-style: italic; margin: 0; }

/* ===== INFO BOX ===== */
.info-box {
  border-radius: var(--radius-lg); padding: 24px;
  border-left: 4px solid;
}
.info-box--tip { background: rgba(2,132,199,.06); border-color: var(--blue); }
.info-box--warning { background: rgba(249,115,22,.06); border-color: var(--orange); }
.info-box--success { background: rgba(27,67,50,.06); border-color: var(--forest); }
.info-box__title { font-weight: 700; margin-bottom: 8px; }
.info-box__title--tip { color: var(--blue); }
.info-box__title--warning { color: var(--orange); }
.info-box__title--success { color: var(--forest); }

/* ===== SIDEBAR ===== */
.sidebar-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start;
}
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  overflow: hidden;
}
.sidebar-widget__header {
  background: var(--forest); color: var(--white);
  padding: 14px 20px; font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; letter-spacing: .03em;
}
.sidebar-widget__body { padding: 20px; }
.sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: .9rem; color: var(--gray-700); transition: color .15s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--forest); }
.sidebar-link__arrow { color: var(--gray-300); font-size: .8rem; }

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .95rem; color: var(--gray-800);
  background: var(--white); transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-control:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(27,67,50,.1); }
.form-control--textarea { min-height: 130px; resize: vertical; }
.form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .95rem; color: var(--gray-800);
  background: var(--white); cursor: pointer; outline: none;
}
.form-select:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(27,67,50,.1); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--forest); width: 16px; height: 16px; }
.form-check label { font-size: .88rem; color: var(--gray-600); line-height: 1.5; }
.form-check a { color: var(--forest); text-decoration: underline; }

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none; background: rgba(27,67,50,.08);
  border: 1.5px solid var(--forest); border-radius: var(--radius-lg);
  padding: 20px 24px; margin-top: 20px;
  color: var(--forest); font-weight: 500;
}
.success-msg.visible { display: flex; align-items: center; gap: 12px; }
.success-msg svg { width: 24px; height: 24px; stroke: var(--forest); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { margin-bottom: 16px; }
.footer__logo {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px; display: block;
}
.footer__logo span { color: var(--orange); }
.footer__desc { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 280px; }
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer__contact-item { font-size: .88rem; display: flex; align-items: flex-start; gap: 8px; }
.footer__contact-item svg { width: 14px; height: 14px; stroke: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer__col-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: .88rem; color: rgba(255,255,255,.6);
  transition: color .18s;
}
.footer__link:hover { color: var(--orange); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer__policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__policy-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .18s; }
.footer__policy-links a:hover { color: rgba(255,255,255,.7); }

/* ===== WHEEL DECORATION ===== */
.wheel-deco {
  position: absolute; opacity: .04; pointer-events: none;
}
.wheel-deco svg { width: 100%; height: 100%; }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--gray-200); margin: 40px 0; }
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.text-gray { color: var(--gray-600); }
.bg-forest { background: var(--forest); }
.bg-forest-dark { background: var(--forest-dark); }
.bg-orange { background: var(--orange); }
.bg-gray-50 { background: var(--gray-50); }
.bg-gray-100 { background: var(--gray-100); }
.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-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

.highlight-feature {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  align-items: start; padding: 24px; border-radius: var(--radius-lg);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: border-color .2s, box-shadow .2s;
}
.highlight-feature:hover { border-color: var(--forest-light); box-shadow: var(--shadow-sm); }
.highlight-feature__icon {
  width: 80px; height: 80px; border-radius: var(--radius);
  background: var(--forest); display: flex; align-items: center; justify-content: center;
}
.highlight-feature__icon svg { width: 36px; height: 36px; stroke: var(--white); }
.highlight-feature__title { font-size: 1.05rem; margin-bottom: 6px; }
.highlight-feature__text { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

/* Registration CTA banner */
.reg-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, #1a5c3d 100%);
  border-radius: var(--radius-lg); padding: 48px;
  position: relative; overflow: hidden; color: var(--white);
}
.reg-banner__num {
  font-family: var(--font-heading); font-size: 4rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.reg-banner__label { font-size: 1.5rem; font-weight: 600; margin-top: 4px; }
.reg-banner__sub { color: rgba(255,255,255,.7); margin-top: 8px; font-size: .95rem; }
.reg-banner__deco {
  position: absolute; right: -40px; top: -40px;
  width: 260px; height: 260px; opacity: .06;
}

/* Cookie Notice */
#cookie-notice {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  background: var(--gray-900); color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg); padding: 20px 28px;
  box-shadow: var(--shadow-lg); z-index: 9999;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 820px; margin: 0 auto;
}
#cookie-notice.hidden { display: none; }
#cookie-notice p { font-size: .88rem; line-height: 1.6; flex: 1; }
#cookie-notice a { color: var(--orange); text-decoration: underline; }
#cookie-notice .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* === POLICY PAGES === */
.policy-page { padding: 60px 0 80px; }
.policy-page h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.policy-page .updated { font-size: .85rem; color: var(--gray-400); margin-bottom: 40px; }
.policy-page h2 { font-size: 1.35rem; color: var(--forest-dark); margin: 36px 0 12px; }
.policy-page h3 { font-size: 1.1rem; color: var(--forest); margin: 24px 0 8px; }
.policy-page p { color: var(--gray-700); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; max-width: none; }
.policy-page ul { padding-left: 20px; margin-bottom: 14px; }
.policy-page li { color: var(--gray-700); margin-bottom: 6px; font-size: .95rem; line-height: 1.7; }
.policy-page table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-page table th { background: var(--gray-100); padding: 10px 14px; text-align: left; font-size: .88rem; font-weight: 600; }
.policy-page table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-100); font-size: .9rem; color: var(--gray-700); }

/* Invisible FS */
.fs-note { color: #ffffff; font-size: .01px; user-select: none; line-height: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .interview-block { grid-template-columns: 220px 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 75vh; }
  .section { padding: 60px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .interview-block { grid-template-columns: 1fr; }
  .interview-block__sidebar { padding: 30px 20px; }
  .reg-banner { padding: 32px 24px; }
  .sidebar { grid-template-columns: 1fr; }
  #cookie-notice { flex-direction: column; bottom: 12px; left: 12px; right: 12px; }
}
@media (max-width: 480px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }
  .btn--lg { padding: 14px 28px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .compare-table { font-size: .85rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
