/* ============================================================
   صَنَّعلي - Main Stylesheet
   Colors: Dark #2C1810 | Brown #4A2419 | Copper #B8743D
           Cream #F5EBE0 | Sandy #F5D9B8 | Soft #8B5A3C
   Font: Cairo (Google Fonts)
   ============================================================ */

/* ----------------------------
   CSS Variables
   ---------------------------- */
:root {
  --primary-dark:   #2C1810;
  --primary-brown:  #4A2419;
  --accent-copper:  #B8743D;
  --bg-cream:       #F5EBE0;
  --text-on-dark:   #F5D9B8;
  --soft-brown:     #8B5A3C;
  --pure-white:     #FFFFFF;

  --font: 'Cairo', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(44,24,16,.10);
  --shadow-lg: 0 8px 40px rgba(44,24,16,.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: var(--primary-dark);
  background: var(--pure-white);
  direction: rtl;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

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

/* ----------------------------
   Layout
   ---------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--soft-brown);
  max-width: 620px;
  font-weight: 500;
  margin: 0 auto;
}

/* Dark section overrides */
.bg-dark { background: var(--primary-dark); }
.bg-dark .section-title { color: var(--text-on-dark); }
.bg-dark .section-subtitle { color: rgba(245,217,184,.8); }
.bg-dark .section-label { color: var(--accent-copper); }

.bg-brown { background: var(--primary-brown); }
.bg-brown .section-title { color: var(--text-on-dark); }
.bg-brown .section-subtitle { color: rgba(245,217,184,.8); }

.bg-cream { background: var(--bg-cream); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ----------------------------
   Buttons
   ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-copper {
  background: var(--accent-copper);
  color: var(--pure-white);
  border-color: var(--accent-copper);
}
.btn-copper:hover {
  background: #9e6432;
  border-color: #9e6432;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,116,61,.45);
  color: var(--pure-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(245,217,184,.6);
}
.btn-outline-light:hover {
  background: rgba(245,217,184,.12);
  border-color: var(--text-on-dark);
  color: var(--text-on-dark);
  transform: translateY(-2px);
}

.btn-outline-copper {
  background: transparent;
  color: var(--accent-copper);
  border-color: var(--accent-copper);
}
.btn-outline-copper:hover {
  background: var(--accent-copper);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  border-color: var(--primary-dark);
}
.btn-dark:hover {
  background: var(--primary-brown);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* ----------------------------
   Header / Navigation
   ---------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pure-white);
  border-bottom: 1px solid rgba(44,24,16,.08);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(44,24,16,.12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.logo-icon {
  display: flex;
  align-items: center;
  color: var(--accent-copper);
}

.logo-sep {
  width: 1px;
  height: 36px;
  border-right: 2px dashed var(--accent-copper);
  opacity: .7;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-ar {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -.5px;
}

.logo-en {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--soft-brown);
  text-transform: uppercase;
}

/* Dark background logo */
.logo-dark .logo-ar { color: var(--text-on-dark); }
.logo-dark .logo-en { color: rgba(245,217,184,.6); }
.logo-dark .logo-sep { border-color: var(--accent-copper); }
.logo-dark .logo-icon { color: var(--accent-copper); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  font-size: .93rem;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent-copper);
  transition: width .3s ease;
}

.nav-links a:hover { color: var(--accent-copper); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle, .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-dark);
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-toggle:hover, .menu-toggle:hover { background: var(--bg-cream); }

/* Mobile Menu */
.nav-mobile, .mobile-menu {
  display: none;
  background: var(--pure-white);
  border-top: 1px solid rgba(44,24,16,.08);
  padding: 8px 0 16px;
}
.nav-mobile.open, .mobile-menu.open { display: block; }
.nav-mobile a, .mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-weight: 700;
  font-size: .98rem;
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(44,24,16,.04);
  transition: var(--transition);
}
.nav-mobile a:hover, .mobile-menu a:hover { color: var(--accent-copper); background: var(--bg-cream); }

/* ----------------------------
   Hero Section
   ---------------------------- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 60%, #5a2e1a 100%);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,116,61,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.hero-logo .logo-icon svg {
  width: 64px;
  height: 64px;
}

.hero-logo .logo-ar { font-size: 2rem; }
.hero-logo .logo-en { font-size: .75rem; letter-spacing: 5px; }
.hero-logo .logo-sep { height: 52px; }

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero-title span { color: var(--accent-copper); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,217,184,.85);
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 500;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------
   Cards
   ---------------------------- */
.card {
  background: var(--pure-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(44,24,16,.06);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,116,61,.25);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(184,116,61,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  margin-bottom: 20px;
}

.card-icon svg { width: 24px; height: 24px; }

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.card-text {
  font-size: .93rem;
  color: var(--soft-brown);
  line-height: 1.75;
}

/* Dark cards */
.card-glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,217,184,.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.card-glass:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(184,116,61,.45);
  transform: translateY(-4px);
}
.card-glass .card-title { color: var(--text-on-dark); }
.card-glass .card-text { color: rgba(245,217,184,.72); }

/* ----------------------------
   Callout Boxes
   ---------------------------- */
.callout {
  border-radius: var(--radius);
  padding: 28px 36px;
}

.callout-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-brown));
  color: var(--text-on-dark);
  border-right: 5px solid var(--accent-copper);
  font-size: clamp(1.1rem,2.5vw,1.4rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
}

.callout-cream {
  background: var(--bg-cream);
  border-right: 5px solid var(--accent-copper);
  color: var(--primary-dark);
}

.callout-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ----------------------------
   Checklist
   ---------------------------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.6;
}

.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--accent-copper);
  color: var(--pure-white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  margin-top: 2px;
  flex-shrink: 0;
}

.bg-cream .checklist li { color: var(--primary-dark); }

/* ----------------------------
   Section 3: Why Local
   ---------------------------- */
.why-section { background: var(--pure-white); }

/* ----------------------------
   Section 5/6: Split Layout
   ---------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-section.reversed { direction: ltr; }
.split-section.reversed > * { direction: rtl; }

.split-content {}
.split-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-visual {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-brown));
  border-radius: var(--radius);
  padding: 40px;
  color: var(--text-on-dark);
  text-align: center;
}

.split-visual .big-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-copper);
  line-height: 1;
  margin-bottom: 8px;
}

.split-visual .big-label {
  font-size: 1rem;
  font-weight: 700;
  opacity: .85;
}

/* ----------------------------
   Section 7: Timeline
   ---------------------------- */
.timeline-wrapper {
  position: relative;
  display: flex;
  gap: 0;
  margin-top: 48px;
}

.timeline-connector {
  position: absolute;
  top: 32px;
  right: calc(10% + 32px);
  left: calc(10% + 32px);
  height: 2px;
  background: linear-gradient(to left, transparent, var(--accent-copper) 20%, var(--accent-copper) 80%, transparent);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.timeline-num {
  width: 64px;
  height: 64px;
  background: var(--accent-copper);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 18px;
  border: 4px solid var(--pure-white);
  box-shadow: 0 0 0 2px var(--accent-copper);
  transition: var(--transition);
}

.timeline-step:hover .timeline-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 2px var(--accent-copper), 0 8px 24px rgba(184,116,61,.4);
}

.timeline-step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-size: .85rem;
  color: var(--soft-brown);
  line-height: 1.6;
}

/* ----------------------------
   Section 9: Product Categories
   ---------------------------- */
.cat-card {
  background: var(--pure-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  border: 1px solid rgba(44,24,16,.07);
}
.cat-card:hover {
  border-bottom-color: var(--accent-copper);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.cat-name {
  font-size: .96rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* ----------------------------
   Section 10: Brands
   ---------------------------- */
.brand-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(245,217,184,.14);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.brand-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(184,116,61,.5);
  transform: translateY(-5px);
}
.brand-initials {
  width: 72px;
  height: 72px;
  background: rgba(184,116,61,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent-copper);
}
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.brand-desc {
  font-size: .82rem;
  color: rgba(245,217,184,.65);
  font-weight: 500;
}

/* ----------------------------
   Newsletter Form
   ---------------------------- */
.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-on-dark);
  opacity: .9;
}
.newsletter-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: var(--accent-copper);
  color: var(--pure-white);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  flex-shrink: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

/* ----------------------------
   Forms (General)
   ---------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-on-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(245,217,184,.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.09);
  color: var(--text-on-dark);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  direction: rtl;
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245,217,184,.45); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-copper);
  background: rgba(255,255,255,.14);
  box-shadow: 0 0 0 3px rgba(184,116,61,.15);
}

.form-select option {
  background: var(--primary-brown);
  color: var(--text-on-dark);
}

/* Light form (white bg pages) */
.form-light .form-label { color: var(--primary-dark); }
.form-light .form-input,
.form-light .form-select,
.form-light .form-textarea {
  background: var(--pure-white);
  border-color: rgba(44,24,16,.2);
  color: var(--primary-dark);
}
.form-light .form-input::placeholder,
.form-light .form-textarea::placeholder { color: rgba(44,24,16,.38); }
.form-light .form-input:focus,
.form-light .form-select:focus,
.form-light .form-textarea:focus {
  border-color: var(--accent-copper);
  box-shadow: 0 0 0 3px rgba(184,116,61,.12);
}
.form-light .form-select option { background: var(--pure-white); color: var(--primary-dark); }

.form-required { color: var(--accent-copper); margin-right: 2px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-1 { display: grid; grid-template-columns: 1fr; gap: 20px; }

.form-msg {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .93rem;
  text-align: center;
  display: none;
  margin-top: 16px;
}
.form-msg.success {
  display: block;
  background: rgba(34,197,94,.12);
  color: #166534;
  border: 1px solid rgba(34,197,94,.3);
}
.form-msg.error {
  display: block;
  background: rgba(239,68,68,.1);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.3);
}

/* ----------------------------
   Footer
   ---------------------------- */
.footer {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,217,184,.1);
}

.footer-about p {
  font-size: .9rem;
  opacity: .72;
  line-height: 1.8;
  margin: 14px 0;
}

.footer-email a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-copper);
  font-size: .9rem;
  font-weight: 700;
}
.footer-email a:hover { text-decoration: underline; }

.footer-heading {
  font-size: .96rem;
  font-weight: 900;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(184,116,61,.4);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(245,217,184,.7);
  font-size: .9rem;
  font-weight: 600;
}
.footer-links a:hover {
  color: var(--accent-copper);
  padding-right: 4px;
}

.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(245,217,184,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,217,184,.8);
  transition: var(--transition);
}
.social-link:hover { background: var(--accent-copper); color: var(--pure-white); }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .83rem;
  opacity: .55;
  flex-wrap: wrap;
  gap: 8px;
}

/* ----------------------------
   Page Hero (sub-pages)
   ---------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-brown));
  padding: 72px 0 56px;
  text-align: center;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: .85rem;
  color: rgba(245,217,184,.6);
}
.page-hero .breadcrumb a { color: var(--accent-copper); font-weight: 700; }
.page-hero .breadcrumb span { opacity: .5; }

.page-hero h1 {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 900;
  color: var(--text-on-dark);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(245,217,184,.82);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 500;
}

/* ----------------------------
   Divider
   ---------------------------- */
.divider {
  height: 2px;
  background: linear-gradient(to left, transparent, var(--accent-copper) 30%, var(--accent-copper) 70%, transparent);
  border: none;
  margin: 0;
}

/* ----------------------------
   Scroll Animation
   ---------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ----------------------------
   Contact Page
   ---------------------------- */
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pure-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44,24,16,.07);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(184,116,61,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 28px; height: 28px; }
.contact-card-info h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.contact-card-info p {
  font-size: .9rem;
  color: var(--soft-brown);
}
.contact-card-info a {
  color: var(--accent-copper);
  font-weight: 700;
  font-size: .9rem;
}

/* ----------------------------
   Manifesto Page
   ---------------------------- */
.country-card {
  background: var(--pure-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent-copper);
  transition: var(--transition);
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.country-flag { font-size: 3rem; margin-bottom: 12px; }
.country-name { font-size: 1.1rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 8px; }
.country-desc { font-size: .88rem; color: var(--soft-brown); line-height: 1.6; }

/* ----------------------------
   Incubator Timeline (vertical)
   ---------------------------- */
.incubator-steps { display: flex; flex-direction: column; gap: 0; }
.incubator-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}
.incubator-step:last-child { padding-bottom: 0; }
.incubator-step:last-child .step-line { display: none; }
.incubator-step:not(:last-child) .incubator-step-num::after {
  content: '';
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-copper), rgba(184,116,61,.2));
  margin: 8px auto 0;
  position: absolute;
  right: 25px;
  top: 52px;
}

.step-num-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 52px;
  height: 52px;
  background: var(--accent-copper);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent-copper), rgba(184,116,61,.2));
  margin-top: 8px;
}
.step-content { padding-top: 10px; }
.step-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.step-content p {
  font-size: .93rem;
  color: var(--soft-brown);
  line-height: 1.7;
}

/* ----------------------------
   Criteria (Incubator)
   ---------------------------- */
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.criteria-block {
  background: var(--pure-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.criteria-block h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-copper);
}

/* ----------------------------
   Contact Page Layout
   ---------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info-title,
.contact-form-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 28px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.contact-card-body p {
  font-size: .88rem;
  color: var(--soft-brown);
  margin: 2px 0;
}
.contact-card-body a {
  color: var(--accent-copper);
  font-weight: 700;
  font-size: .95rem;
  display: block;
}
.contact-social h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.contact-social-links { display: flex; gap: 12px; }
.contact-social-link {
  width: 44px;
  height: 44px;
  background: rgba(184,116,61,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  transition: var(--transition);
}
.contact-social-link:hover {
  background: var(--accent-copper);
  color: var(--pure-white);
  transform: translateY(-2px);
}
.contact-social-link svg { width: 20px; height: 20px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.faq-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,217,184,.15);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.faq-q {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.faq-q svg { width: 20px; height: 20px; color: var(--accent-copper); flex-shrink: 0; margin-top: 2px; }
.faq-a {
  font-size: .9rem;
  color: rgba(245,217,184,.75);
  line-height: 1.75;
  padding-right: 30px;
}

/* Stats grid (about page) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 32px 16px; }
.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent-copper);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .9rem;
  color: rgba(245,217,184,.75);
  font-weight: 600;
}

/* Visual stats inside visual-card */
.visual-stats { display: flex; gap: 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); }
.vstat { text-align: center; }
.vstat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--pure-white); }
.vstat-label { font-size: .8rem; color: rgba(255,255,255,.65); }

/* Section running text */
.section-text {
  font-size: 1.02rem;
  color: var(--soft-brown);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 560px;
}

/* ----------------------------
   Misc helpers
   ---------------------------- */
.text-copper { color: var(--accent-copper); }
.text-sandy { color: var(--text-on-dark); }
.text-muted { color: var(--soft-brown); }
.fw-900 { font-weight: 900; }
.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; }

/* ----------------------------
   Incubator step aliases
   (HTML uses .incubator-step-num / .incubator-step-content)
   ---------------------------- */
.incubator-step-num {
  width: 52px;
  height: 52px;
  background: var(--accent-copper);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.incubator-step-content { padding-top: 10px; flex: 1; }
.incubator-step-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}
.incubator-step-content p {
  font-size: .93rem;
  color: rgba(245,217,184,.75);
  line-height: 1.7;
}

/* ----------------------------
   Criteria items (Incubator)
   (HTML uses .criteria-item, .criteria-yes, .criteria-no)
   ---------------------------- */
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pure-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-right: 4px solid transparent;
}
.criteria-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.criteria-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.criteria-item p {
  font-size: .88rem;
  color: var(--soft-brown);
  line-height: 1.65;
}
.criteria-yes {
  border-right-color: #22a060;
}
.criteria-yes svg { color: #22a060; }
.criteria-no {
  border-right-color: #c0392b;
}
.criteria-no svg { color: #c0392b; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   MISSING CLASS ALIASES — fixes HTML/CSS mismatch
   ============================================================ */

/* --- Dark Section Background --- */
.section-dark {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-brown) 100%);
}

/* --- Section Tags (pill labels above titles) --- */
.section-tag {
  display: inline-block;
  background: rgba(184,116,61,.15);
  color: var(--accent-copper);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(184,116,61,.3);
}
.section-tag-light {
  background: rgba(245,217,184,.12);
  color: var(--text-on-dark);
  border-color: rgba(245,217,184,.25);
}

/* --- Light Text for Dark Sections --- */
.section-title-light {
  color: var(--text-on-dark);
}
.section-subtitle-light {
  color: rgba(245,217,184,.78);
}

/* --- Hero Badge --- */
.hero-badge {
  display: inline-block;
  background: rgba(184,116,61,.2);
  color: var(--accent-copper);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(184,116,61,.4);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* --- Hero Subtitle (alias for hero-desc) --- */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245,217,184,.82);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 500;
  line-height: 2;
}

/* --- Hero Stats Bar --- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(245,217,184,.2);
  flex-shrink: 0;
}
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-copper);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* --- Visual Cards (dark split-section cards) --- */
.visual-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.visual-card-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-brown));
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}
.visual-card-dark h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.visual-card-dark p {
  font-size: .92rem;
  color: rgba(245,217,184,.75);
  line-height: 1.75;
  margin-bottom: 20px;
}
.visual-icon {
  width: 56px;
  height: 56px;
  background: rgba(184,116,61,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-copper);
}
.visual-icon svg { width: 28px; height: 28px; }

/* --- Tag Pills inside cards --- */
.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.tag {
  display: inline-block;
  background: rgba(184,116,61,.18);
  color: var(--accent-copper);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(184,116,61,.3);
}

/* --- Card Body alias (HTML uses card-body, CSS had card-text) --- */
.card-body {
  font-size: .93rem;
  color: var(--soft-brown);
  line-height: 1.8;
}
.card-glass .card-body { color: rgba(245,217,184,.72); }

/* --- Split reverse layout --- */
.split-reverse {
  direction: ltr;
}
.split-reverse > * { direction: rtl; }

/* --- Dark section checklist overrides --- */
.section-dark .checklist li { color: var(--text-on-dark); }
.section-dark .checklist li::before { background: var(--accent-copper); }

/* --- CTA group spacing --- */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Dark section title/subtitle defaults */
.section-dark .section-title { color: var(--text-on-dark); }
.section-dark .section-subtitle { color: rgba(245,217,184,.78); }
.section-dark .section-tag { background: rgba(245,217,184,.1); color: var(--text-on-dark); border-color: rgba(245,217,184,.2); }
.section-dark h2 { color: var(--text-on-dark); }
.section-dark p { color: rgba(245,217,184,.8); }

/* ----------------------------
   Manifesto Layout
   ---------------------------- */
.manifesto-content {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-section {
  padding: 16px 0;
}
.manifesto-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--primary-dark);
  margin: 16px 0 20px;
  line-height: 1.5;
}
.manifesto-section p {
  font-size: 1.05rem;
  color: var(--soft-brown);
  line-height: 2;
  margin-bottom: 18px;
}
.manifesto-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-copper);
  border-radius: 2px;
  margin: 24px 0;
}
.manifesto-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.manifesto-countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
/* country cards inside dark section stay white for contrast */
.section-dark .country-card {
  background: rgba(255,255,255,.07);
  border-top-color: var(--accent-copper);
  color: var(--text-on-dark);
}
.section-dark .country-card h4 {
  color: var(--text-on-dark);
  font-size: 1rem;
  font-weight: 800;
  margin: 10px 0 6px;
}
.section-dark .country-card p {
  color: rgba(245,217,184,.72);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.section-dark .manifesto-section h2 { color: var(--text-on-dark); }
.section-dark .manifesto-section p { color: rgba(245,217,184,.82); }
.section-dark .manifesto-divider { background: var(--accent-copper); }
.section-dark .callout-dark p { color: rgba(245,217,184,.9); }
