/* =================================================================
   ROVAI07 — Main Stylesheet
   IDF Colors: Olive (Ground) | Navy (Sea) | Sky (Air)
   Direction: RTL | Language: Hebrew
================================================================= */

/* 1. Variables
   2. Reset & Base
   3. Typography
   4. Layout
   5. Buttons
   6. Navigation
   7. Hero
   8. Trust Bar
   9. Sections (Problem, USP, Steps, Testimonials, About, CTA)
   10. Cards
   11. Forms
   12. Footer
   13. Page Layouts (about, process, criteria)
   14. Animations
   15. Responsive
*/


/* ── 1. Variables ──────────────────────────────────────────────── */
:root {
  /* Brand — IDF Palette */
  --olive:        #4B5320;
  --olive-light:  #6B7340;
  --olive-dim:    #3D451A;
  --olive-dark:   #2A2F12;
  --navy:         #111111;
  --navy-light:   #222222;
  --sky:          #555555;
  --gold:         #C8A951;
  --gold-light:   #E0C17A;
  --gold-dark:    #A68830;

  /* Neutrals */
  --bg:           #F5F4F0;
  --bg-card:      #FFFFFE;
  --bg-section:   #ECEAE0;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-muted:   #5C5C5C;
  --text-light:   #8A8A8A;
  --border:       #D8D4C8;
  --border-light: #EAE8E0;

  /* Spacing */
  --sp-xs:  0.5rem;   /* 8px */
  --sp-sm:  1rem;     /* 16px */
  --sp-md:  2rem;     /* 32px */
  --sp-lg:  3rem;     /* 48px */
  --sp-xl:  5rem;     /* 80px */
  --sp-2xl: 7rem;     /* 112px */

  /* Layout */
  --max-width: 1180px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Typography */
  --font: 'Heebo', 'Assistant', -apple-system, sans-serif;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.07);
  --sh-md: 0 4px 24px rgba(0,0,0,0.10);
  --sh-lg: 0 8px 48px rgba(0,0,0,0.14);

  /* Transitions */
  --t: 0.22s ease;
}


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

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

body {
  font-family: var(--font);
  direction: rtl;
  text-align: right;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font);
  direction: rtl;
}


/* ── 3. Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
}

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

p  { color: var(--text-muted); }

.text-white, .text-white p, .text-white h1,
.text-white h2, .text-white h3 { color: var(--white); }

.text-white p { color: rgba(255,255,255,0.82); }

.text-gold { color: var(--gold); }

.highlight {
  color: var(--gold);
  position: relative;
}

strong { font-weight: 700; color: var(--text); }


/* ── 4. Layout ─────────────────────────────────────────────────── */
.container {
  width: min(var(--max-width), 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--sp-xl);
}

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

.section--olive {
  background: var(--olive);
  color: var(--white);
}

.section--gray {
  background: var(--bg-section);
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,81,0.12);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}

.section-header {
  margin-bottom: var(--sp-lg);
}

.section-header p {
  font-size: 1.1rem;
  margin-top: var(--sp-xs);
  max-width: 600px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ── 5. Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 1.8em;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--olive-dark);
  box-shadow: 0 4px 16px rgba(200,169,81,0.35);
}

.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(200,169,81,0.45);
}

.btn--olive {
  background: var(--olive);
  color: var(--white);
  box-shadow: var(--sh-sm);
}

.btn--olive:hover {
  background: var(--olive-light);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--olive-dark);
}

.btn--lg {
  font-size: 1.1rem;
  padding: 1em 2.4em;
}

.btn--full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}


/* ── 6. Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(to left, rgba(58,65,22,0.97) 0%, rgba(17,17,17,0.97) 38%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--t);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--olive-dark);
  letter-spacing: -0.03em;
}

.nav__logo-text {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.nav__logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4em 0.8em;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-sm);
  gap: 0.25rem;
}

.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  display: block;
  transition: background var(--t);
}

.nav__mobile a:hover { background: rgba(255,255,255,0.08); }
.nav__mobile .btn { margin-top: var(--sp-xs); width: 100%; }

.nav__mobile.open { display: flex; }


/* ── 7. Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(150deg, var(--olive-dark) 0%, var(--olive) 45%, var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 40%, rgba(200,169,81,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(91,126,166,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grid texture */
.hero::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: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  padding-block: var(--sp-xl);
}

.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.35);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4em 1em;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}

.hero__badge::before {
  content: '★';
  font-size: 0.7rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-sm);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: var(--sp-md);
  max-width: 520px;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: var(--sp-md);
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.hero__phone a {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--t);
}

.hero__phone a:hover { color: var(--gold); }

.hero__guarantees {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.hero__guarantee-item .icon {
  color: var(--gold);
  font-size: 1rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.hero__img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--sh-lg);
}

.hero__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.hero__img-sm {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.10);
}

/* Image placeholders */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  text-align: center;
  padding: var(--sp-sm);
}

.img-placeholder .icon { font-size: 2rem; opacity: 0.5; }

.img-placeholder--light {
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--border-light) 100%);
  color: var(--text-light);
}


/* ── 8. Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding-block: 1.25rem;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-item__text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--olive);
  line-height: 1.2;
}

.trust-item__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}


/* ── 9. Sections ───────────────────────────────────────────────── */

/* Problem Section */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.problem__stat {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.problem__stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
}

.problem__stat-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.problem__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.problem__stat-item {
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.problem__stat-item:last-child { border-bottom: none; padding-bottom: 0; }

.problem__content h2 { color: var(--white); margin-bottom: 1rem; }
.problem__content p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.85; }
.problem__content p + p { margin-top: var(--sp-sm); }

.problem__source {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--sp-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}


/* USP Section */
.usp__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.usp-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-sm);
}

.usp-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.usp-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.usp-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5 0%, #fff8e1 100%);
}

.usp-card--featured .usp-card__icon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.usp-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(200,169,81,0.15);
  border-radius: 100px;
  padding: 0.2em 0.7em;
  margin-bottom: 0.5rem;
}


/* Calculator CTA Section */
.calc-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.calc-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.calc-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  align-items: center;
}

.calc-cta h2 { color: var(--white); }
.calc-cta p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-top: 0.5rem; }

.calc-cta__visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--sp-md);
  min-width: 280px;
}

.calc-preview__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.calc-preview__item:last-child { border-bottom: none; }

.calc-preview__check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--olive-dark);
  flex-shrink: 0;
  font-weight: 900;
}


/* Steps Section */
.steps__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.steps__list::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(to left, var(--olive) 0%, var(--gold) 50%, var(--olive) 100%);
  opacity: 0.25;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-sm);
  padding-top: 0;
}

.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--olive);
  margin-bottom: var(--sp-sm);
  position: relative;
  z-index: 1;
  transition: border-color var(--t), background var(--t);
}

.step:hover .step__num {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5, #fff8e1);
}

.step__icon {
  font-size: 1.6rem;
  margin-bottom: var(--sp-xs);
}

.step h4 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-md);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-family: serif;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card__criterion {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(75,83,32,0.1);
  color: var(--olive);
  border-radius: 100px;
  padding: 0.15em 0.6em;
  margin-top: 0.25rem;
}


/* About Mini Section */
.about-mini__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-mini__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-sm);
}

.about-mini__img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-mini__img-sm {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-mini__content h2 { margin-bottom: var(--sp-sm); }
.about-mini__content p  { font-size: 1rem; line-height: 1.85; margin-bottom: var(--sp-sm); }

.about-mini__names {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

.about-mini__person {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-mini__person-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}

.about-mini__person-info strong {
  display: block;
  font-size: 0.9rem;
}

.about-mini__person-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* Final CTA */
.final-cta {
  background: linear-gradient(150deg, var(--olive-dark) 0%, var(--olive) 60%, var(--olive-dim) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,169,81,0.07) 0%, transparent 70%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.final-cta h2 { color: var(--white); margin-bottom: var(--sp-sm); font-size: clamp(1.8rem,4vw,2.8rem); }
.final-cta p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: var(--sp-md); }

.final-cta .btn-group {
  justify-content: center;
}


/* ── 10. Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-sm);
}


/* ── 11. Forms ─────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--sp-sm);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.8em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  direction: rtl;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(75,83,32,0.1);
}

.form-input::placeholder { color: var(--text-light); }

/* Calculator / Multi-step form */
.calculator-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  max-width: 680px;
  margin-inline: auto;
}

.calc-progress {
  height: 5px;
  background: var(--bg-section);
}

.calc-progress__bar {
  height: 100%;
  background: linear-gradient(to left, var(--gold) 0%, var(--olive) 100%);
  transition: width 0.4s ease;
}

.calc-header {
  padding: var(--sp-md) var(--sp-md) var(--sp-sm);
  border-bottom: 1px solid var(--border-light);
}

.calc-step-indicator {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.calc-header h3 {
  font-size: 1.3rem;
  color: var(--text);
}

.calc-body {
  padding: var(--sp-md);
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9em 1.1em;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  text-align: right;
  width: 100%;
}

.calc-option:hover {
  border-color: var(--olive-light);
  background: rgba(75,83,32,0.04);
}

.calc-option.selected {
  border-color: var(--olive);
  background: rgba(75,83,32,0.07);
}

.calc-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
  position: relative;
  margin-right: auto;
}

.calc-option.selected .calc-option__radio {
  border-color: var(--olive);
  background: var(--olive);
}

.calc-option.selected .calc-option__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.calc-footer {
  padding: var(--sp-sm) var(--sp-md);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.calc-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5em;
  transition: color var(--t);
}

.calc-back:hover { color: var(--text); }

/* Result screen */
.calc-result {
  padding: var(--sp-md);
  text-align: center;
}

.calc-result__icon {
  font-size: 3.5rem;
  margin-bottom: var(--sp-sm);
}

.calc-result__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.calc-result__tag {
  display: inline-block;
  background: rgba(75,83,32,0.1);
  color: var(--olive);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  padding: 0.3em 1em;
  margin-bottom: var(--sp-sm);
}

.calc-result__tag--gold {
  background: rgba(200,169,81,0.15);
  color: var(--gold-dark);
}

.calc-result__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

.calc-guarantee {
  background: rgba(75,83,32,0.06);
  border: 1px solid rgba(75,83,32,0.15);
  border-radius: var(--radius);
  padding: 0.8em 1.2em;
  font-size: 0.88rem;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}


/* Contact form in calculator */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.contact-form .form-input {
  font-size: 1rem;
  padding: 0.9em 1em;
}


/* ── 12. Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-sm);
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: var(--sp-sm);
}

.footer__contact-list a,
.footer__contact-list span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}

.footer__contact-list a:hover { color: var(--white); }

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p, .footer__bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer__social a:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.footer__social-icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color var(--t);
}
.footer__social-icon:hover { color: var(--white); }

.blog-card { position: relative; cursor: pointer; }
.blog-card__read-more::after {
  content: '';
  position: absolute;
  inset: 0;
}

.high-contrast { filter: contrast(1.5) brightness(0.9); }
.high-contrast .site-header { border-bottom: 2px solid #fff; }


/* ── 13. Page Layouts ──────────────────────────────────────────── */

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
  padding: calc(68px + var(--sp-xl)) 0 var(--sp-xl);
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: var(--sp-sm); }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 600px; margin-inline: auto; }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--sp-sm);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* Criterion page */
.criterion-content {
  max-width: 860px;
  margin-inline: auto;
}

.criterion-content h2 {
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border-light);
}

.criterion-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.criterion-content p { margin-bottom: var(--sp-sm); font-size: 1rem; }

.criterion-content ul {
  list-style: none;
  margin-bottom: var(--sp-sm);
}

.criterion-content ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.4em 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.criterion-content ul li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 800;
  flex-shrink: 0;
}

.criterion-docs {
  background: var(--bg-section);
  border-right: 4px solid var(--olive);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-md);
  margin-block: var(--sp-md);
}

.criterion-docs h4 {
  margin-bottom: 0.75rem;
  color: var(--olive);
}

.info-box {
  background: rgba(200,169,81,0.08);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: var(--radius);
  padding: var(--sp-sm) var(--sp-md);
  margin-block: var(--sp-sm);
}

.info-box p { font-size: 0.9rem; color: var(--text-muted); }

/* About page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.team-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.team-card__content {
  padding: var(--sp-md);
}

.team-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.team-card__role {
  color: var(--olive);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: var(--sp-sm);
}

.team-card__bio {
  font-size: 0.92rem;
  line-height: 1.75;
}


/* ── 14. Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up {
  animation: fadeUp 0.5s ease both;
}

.animate-in {
  animation: fadeIn 0.4s ease both;
}

[data-delay="1"] { animation-delay: 0.1s; }
[data-delay="2"] { animation-delay: 0.2s; }
[data-delay="3"] { animation-delay: 0.3s; }
[data-delay="4"] { animation-delay: 0.4s; }
[data-delay="5"] { animation-delay: 0.5s; }


/* ── 15. Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
  }

  .steps__list::before { display: none; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .hero__visual { order: -1; }

  .hero__img-main { aspect-ratio: 16/7; }

  .usp__cards,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .problem__grid,
  .about-mini__grid,
  .calc-cta__inner {
    grid-template-columns: 1fr;
  }

  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 768px) {
  :root {
    --sp-xl: 3.5rem;
    --sp-2xl: 5rem;
  }

  .nav__links,
  .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .steps__list { grid-template-columns: 1fr 1fr; }

  .grid-2 { grid-template-columns: 1fr; }

  .trust-bar__inner { gap: var(--sp-sm); }
  .trust-divider { display: none; }

  .hero__guarantees { gap: var(--sp-sm); }

  .footer__grid { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps__list { grid-template-columns: 1fr; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  .about-mini__names { flex-direction: column; }
}

/* Smooth transitions on page load */
.site-header,
.hero,
.trust-bar {
  animation: fadeIn 0.3s ease;
}


/* ── Nav Dropdown ─────────────────────────────────────────────── */
.has-dropdown { position: relative; }

.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.3em;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4em 0.8em;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}

.nav__dropdown-btn:hover,
.has-dropdown.open .nav__dropdown-btn,
.has-dropdown.active .nav__dropdown-btn {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__arrow {
  font-size: 0.7em;
  transition: transform var(--t);
  display: inline-block;
  margin-right: 0.2em;
}

.has-dropdown.open .nav__arrow { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.35rem;
  min-width: 200px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 200;
}

.has-dropdown.open .nav__dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__dropdown-menu li { list-style: none; }

.nav__dropdown-menu a {
  display: block;
  padding: 0.6em 0.9em;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  border-radius: calc(var(--radius) - 2px);
  transition: background var(--t), color var(--t);
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}


/* ── Mobile Nav Group ─────────────────────────────────────────── */
.nav__mobile-group { display: flex; flex-direction: column; }

.nav__mobile-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  transition: background var(--t);
  background: none;
  border: none;
  font-family: var(--font);
  text-align: right;
  cursor: pointer;
}

.nav__mobile-group-btn:hover,
.nav__mobile-group-btn.open { background: rgba(255,255,255,0.08); }

.nav__mobile-group-btn span { transition: transform var(--t); }
.nav__mobile-group-btn.open span { transform: rotate(180deg); }

.nav__mobile-sub {
  display: none;
  flex-direction: column;
  padding-right: 1rem;
  border-right: 2px solid rgba(255,255,255,0.12);
  margin-right: 1rem;
  margin-bottom: 0.25rem;
}

.nav__mobile-sub.open { display: flex; }

.nav__mobile-phone {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  display: block;
  transition: background var(--t);
  margin-top: 0.25rem;
}

.nav__mobile-phone:hover { background: rgba(255,255,255,0.08); }


/* ── Modal / Popup ────────────────────────────────────────────── */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: min(680px, 95vw);
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: fadeUp 0.3s ease both;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: background var(--t), color var(--t);
  z-index: 10;
  line-height: 1;
}

.modal__close:hover {
  background: var(--border);
  color: var(--text);
}


/* ── Blog Styles ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--border-light) 100%);
}

.blog-card__body {
  padding: var(--sp-sm) var(--sp-md) var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  display: flex;
  gap: 1rem;
}

.blog-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  background: rgba(75,83,32,0.1);
  border-radius: 100px;
  padding: 0.2em 0.7em;
  margin-bottom: 0.5rem;
}

.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; color: var(--text); }

.blog-card__excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--olive);
  margin-top: 1rem;
  transition: color var(--t);
}

.blog-card__read-more:hover { color: var(--olive-light); }

/* Blog post article */
.blog-post { max-width: 760px; margin-inline: auto; }

.blog-post__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: var(--sp-md);
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.blog-post article h2 {
  font-size: 1.4rem;
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
  color: var(--text);
  border-top: 1px solid var(--border-light);
  padding-top: var(--sp-md);
}

.blog-post article h2:first-of-type { border-top: none; padding-top: 0; }

.blog-post article h3 { font-size: 1.1rem; margin-top: var(--sp-md); margin-bottom: 0.5rem; }

.blog-post article p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: var(--sp-sm);
  color: var(--text-muted);
}

.blog-post article ul,
.blog-post article ol { margin-bottom: var(--sp-sm); padding-right: 1.5rem; }

.blog-post article ul { list-style: disc; }
.blog-post article ol { list-style: decimal; }

.blog-post article li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.blog-post article strong { color: var(--text); }

.blog-cta-box {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  text-align: center;
  margin: var(--sp-lg) 0;
}

.blog-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.blog-cta-box p  { color: rgba(255,255,255,0.8); margin-bottom: var(--sp-sm); }


/* ── Documents Page ───────────────────────────────────────────── */
.doc-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  margin-bottom: var(--sp-md);
  box-shadow: var(--sh-sm);
}

.doc-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--border-light);
}

.doc-section__icon { font-size: 1.5rem; }

.doc-section__title { font-size: 1.2rem; font-weight: 800; color: var(--text); }

.doc-list { display: flex; flex-direction: column; gap: 0.5rem; }

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 1em;
  background: var(--bg-section);
  border-radius: var(--radius);
  gap: 1rem;
  transition: background var(--t);
}

.doc-item:hover { background: var(--border-light); }

.doc-item__info { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.doc-item__icon { font-size: 1.2rem; }

.doc-item__name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.doc-item__desc { font-size: 0.78rem; color: var(--text-light); }

.doc-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--olive);
  padding: 0.4em 0.9em;
  border: 1.5px solid var(--olive);
  border-radius: 100px;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}

.doc-download:hover { background: var(--olive); color: var(--white); }


/* ── Testimonials Full Page ───────────────────────────────────── */
.testimonials-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.testimonial-card--featured { border-color: var(--gold); background: linear-gradient(135deg,#fffdf5,#fff8e1); }


/* ── DIY Page ─────────────────────────────────────────────────── */
.diy-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.diy-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.diy-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.diy-step__content h3 { font-size: 1.1rem; margin-bottom: 0.4rem; padding-top: 0.8rem; }
.diy-step__content p  { font-size: 0.95rem; line-height: 1.75; }

.diy-warning {
  background: linear-gradient(135deg, rgba(200,169,81,0.08), rgba(200,169,81,0.04));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  margin: var(--sp-lg) 0;
}

.diy-warning h3 { color: var(--gold-dark); margin-bottom: var(--sp-sm); }
.diy-warning ul { padding-right: 1.2rem; list-style: disc; }
.diy-warning li { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0.4rem; }


/* ── Careers Page ─────────────────────────────────────────────── */
.job-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.job-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.job-card__icon { font-size: 2rem; margin-bottom: var(--sp-sm); }
.job-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.job-card__type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  background: rgba(75,83,32,0.1);
  border-radius: 100px;
  padding: 0.2em 0.7em;
  margin-bottom: var(--sp-sm);
}

.job-card p  { font-size: 0.9rem; line-height: 1.7; }
.job-card ul { list-style: disc; padding-right: 1.2rem; margin-top: var(--sp-xs); }
.job-card li { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.3rem; }

.careers-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-lg);
  box-shadow: var(--sh-md);
  max-width: 600px;
  margin-inline: auto;
}

.careers-form h2 { margin-bottom: var(--sp-md); text-align: center; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}


/* ── Who Is Eligible Page ─────────────────────────────────────── */
.eligible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.eligible-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}

.eligible-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.eligible-card__icon { font-size: 2.5rem; margin-bottom: var(--sp-sm); }
.eligible-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.eligible-card p  { font-size: 0.88rem; line-height: 1.65; }

.eligible-card--military  { border-top: 3px solid var(--gold); }
.eligible-card--residence { border-top: 3px solid var(--olive); }
.eligible-card--work      { border-top: 3px solid var(--sky); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-md) 0;
  font-size: 0.92rem;
}

.comparison-table th {
  background: var(--olive);
  color: var(--white);
  padding: 0.75em 1em;
  font-weight: 700;
  text-align: right;
}

.comparison-table td {
  padding: 0.7em 1em;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  vertical-align: middle;
}

.comparison-table tr:nth-child(even) td { background: var(--bg-section); }
.comparison-table .yes { color: var(--olive); font-weight: 700; }
.comparison-table .no  { color: var(--text-light); }


/* ── Additional Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .blog-grid,
  .testimonials-grid-full { grid-template-columns: 1fr 1fr; }
  .eligible-grid           { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .blog-grid,
  .testimonials-grid-full,
  .job-cards { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }

  .diy-step { grid-template-columns: 44px 1fr; }
  .diy-step__num { width: 44px; height: 44px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 0.5em 0.6em; }
}
