/* =============================================================
   FibreState Website — Stylesheet v2.0
   Brand: Slate #3C5865, Orange #F7941D, Green #8DC63F, Light Slate #E3EAEE
   ============================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --slate: #3C5865;
  --slate-90: #4A6A78;
  --slate-dark: #2A404A;
  --orange: #F7941D;
  --orange-dark: #E07F0A;
  --green: #8DC63F;
  --light-slate: #E3EAEE;
  --light-slate-soft: #F2F6F8;
  --white: #FFFFFF;
  --text: #1F2D34;
  --text-soft: #556872;
  --border: #D7DFE3;
  --font-display: 'Aptos', 'Aptos Display', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Aptos', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(60,88,101,0.08), 0 1px 3px rgba(60,88,101,0.06);
  --shadow-md: 0 4px 12px rgba(60,88,101,0.10), 0 2px 4px rgba(60,88,101,0.06);
  --shadow-lg: 0 12px 32px rgba(60,88,101,0.14), 0 4px 8px rgba(60,88,101,0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--slate); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { color: var(--text); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.eyebrow.light { color: rgba(255,255,255,0.9); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section.dark { background: var(--slate); color: var(--white); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p { color: rgba(255,255,255,0.85); }
.section.tint { background: var(--light-slate-soft); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.9rem 1.6rem; font-weight: 600; font-size: 0.98rem; border-radius: var(--radius); transition: all 0.25s var(--ease); white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 2px 0 var(--orange-dark); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(247,148,29,0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-secondary:hover { background: var(--white); color: var(--slate); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--slate); border: 1.5px solid var(--slate); }
.btn-ghost:hover { background: var(--slate); color: var(--white); }
.btn-link { color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s var(--ease); }
.btn-link::after { content: '\2192'; transition: transform 0.2s var(--ease); }
.btn-link:hover { gap: 0.65rem; }
.btn-link:hover::after { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(60,88,101,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.3s var(--ease); }
.site-header.scrolled { background: rgba(60,88,101,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--gutter); max-width: var(--max); margin: 0 auto; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 0.4rem; align-items: center; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; padding: 0.55rem 0.95rem; border-radius: var(--radius); transition: all 0.2s var(--ease); position: relative; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { content: ''; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.3rem; height: 2px; background: var(--orange); }
.nav-cta { margin-left: 0.6rem; padding: 0.55rem 1.1rem; background: var(--orange); color: var(--white) !important; border-radius: var(--radius); font-weight: 600 !important; }
.nav-cta:hover { background: var(--orange-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--slate); padding: 1.5rem var(--gutter); gap: 0.5rem; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), visibility 0s linear 0.35s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), visibility 0s linear 0s; }
  .nav-links a { padding: 0.7rem 1rem; font-size: 1.05rem; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 1.5rem 0 0 !important; padding: 0.7rem 1.4rem !important; text-align: center; border-radius: var(--radius); display: inline-block; align-self: flex-start; font-size: 1rem !important; }
}

/* ---------- Hero (Home) ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; background: var(--slate-dark); color: var(--white); padding-top: 80px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; background-image: url('../assets/posters/poster1.jpg'); background-size: cover; background-position: center; }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease-out; }
.hero-video video.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(42,64,74,0.55) 0%, rgba(60,88,101,0.30) 50%, rgba(42,64,74,0.45) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; padding-block: 4rem; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; margin-bottom: 1.5rem; }
.hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 38ch; margin-bottom: 2.5rem; line-height: 1.5; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.video-controls { position: absolute; bottom: 2.5rem; right: var(--gutter); z-index: 3; display: flex; align-items: center; gap: 1rem; }
.video-arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); display: grid; place-items: center; font-size: 1.1rem; transition: all 0.2s var(--ease); backdrop-filter: blur(8px); }
.video-arrow:hover { background: var(--orange); border-color: var(--orange); }
.video-dots { display: flex; gap: 0.5rem; }
.video-dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.3); transition: background 0.25s var(--ease); cursor: pointer; }
.video-dot.active { background: var(--orange); }

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .video-controls { bottom: 1.5rem; right: 1rem; }
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  background: var(--slate);
  color: var(--white);
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(247,148,29,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  width: 100%;
}

.page-hero-text { position: relative; }

.page-hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.page-hero-sub { color: rgba(255,255,255,0.88); font-size: clamp(1.05rem, 1.6vw, 1.2rem); }

.page-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.page-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Portrait variant - shows full image without cropping (e.g. for tall building shots) */
.page-hero-image.portrait {
  aspect-ratio: auto;
  background: var(--slate-dark);
}
.page-hero-image.portrait img {
  height: auto;
  max-height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { display: none; }
}

/* ---------- Section heading ---------- */
.section-head { max-width: 70ch; margin: 0 auto 3rem; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-soft); font-size: 1.1rem; line-height: 1.55; }

/* ---------- Three-panel grid ---------- */
.three-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

/* ---------- Four-panel grid (Option C - 4-across, compresses) ---------- */
.four-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .four-panel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .four-panel { grid-template-columns: 1fr; } }

.panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.panel::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.panel:hover::before { transform: scaleX(1); }
.panel-icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--light-slate-soft); border-radius: var(--radius); color: var(--orange); margin-bottom: 1.2rem; }
.panel h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.panel p { color: var(--text-soft); line-height: 1.55; font-size: 0.93rem; }

/* ---------- Two-card layout ---------- */
.two-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* ---------- Three-card layout ---------- */
.three-card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .three-card { grid-template-columns: 1fr; } }
.card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); position: relative; transition: all 0.3s var(--ease); }
.card.dark { background: var(--slate); color: var(--white); border-color: transparent; }
.card.dark h3 { color: var(--white); }
.card.dark p { color: rgba(255,255,255,0.85); }
.card-tag { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 3px; margin-bottom: 1.5rem; }
.card h3 { margin-bottom: 1rem; }
.card p { margin-bottom: 1.8rem; line-height: 1.55; }

/* ---------- Stat blocks ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stat { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--border); position: relative; overflow: hidden; }
.stat::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 30px; height: 3px; background: var(--orange); }
.section.dark .stat { background: var(--slate-90); border-color: rgba(255,255,255,0.1); }
.stat-number { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-label { font-size: 0.88rem; color: var(--text-soft); font-weight: 600; letter-spacing: 0.02em; }
.section.dark .stat-label { color: rgba(255,255,255,0.85); }

/* ---------- Value list ---------- */
.value-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.value { display: flex; gap: 1rem; padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.25s var(--ease); }
.value:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.value-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--light-slate); display: grid; place-items: center; color: var(--orange); }
.value h4 { color: var(--slate); margin-bottom: 0.3rem; font-size: 1rem; }
.value p { color: var(--text-soft); font-size: 0.93rem; line-height: 1.5; margin: 0; }

/* ---------- Process Circle ---------- */
.process-circle-wrap { position: relative; max-width: 640px; margin: 0 auto; aspect-ratio: 1 / 1; }
.process-svg { width: 100%; height: 100%; overflow: visible; }
.process-step { position: absolute; width: 150px; text-align: center; transform: translate(-50%, -50%); }
.process-step .step-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: 3px solid var(--orange); display: grid; place-items: center; margin: 0 auto 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--slate); box-shadow: var(--shadow-md); transition: all 0.3s var(--ease); }
.process-step:hover .step-circle { background: var(--orange); color: var(--white); transform: scale(1.05); }
.process-step .step-name { font-weight: 700; color: var(--slate); font-size: 0.95rem; margin-bottom: 0.3rem; }
.process-step .step-desc { font-size: 0.75rem; color: var(--text-soft); line-height: 1.4; }
.process-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 180px; }
.process-center .total { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--slate); line-height: 1; }
.process-center .total-label { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.3rem; }

@media (max-width: 700px) {
  .process-circle-wrap { aspect-ratio: auto; max-width: 480px; }
  .process-svg { display: none; }
  .process-step { position: static; transform: none; width: auto; display: flex; align-items: center; gap: 1rem; text-align: left; margin-bottom: 1rem; padding: 1rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); }
  .process-step .step-circle { margin: 0; width: 60px; height: 60px; flex-shrink: 0; }
  .process-center { display: none; }
}

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 1rem; max-width: 700px; margin: 0 auto; }
.check-item { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); border-left: 4px solid var(--orange); }
.check-item .check-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; margin-top: 2px; }
.check-item p { margin: 0; color: var(--text); line-height: 1.55; }

/* ---------- Pillar grid ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pillar { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); transition: all 0.3s var(--ease); }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.pillar-num { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange); margin-bottom: 0.8rem; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.pillar p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* ---------- Steps ---------- */
.steps { max-width: 800px; margin: 0 auto; }
.step-row { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-number { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.step-text { flex: 1; padding-top: 0.5rem; font-size: 1.05rem; color: var(--text); font-weight: 500; }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.timeline-item { background: var(--white); padding: 1.8rem 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); position: relative; }
.timeline-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.timeline-month { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--orange); margin-bottom: 0.5rem; }
.timeline-title { font-weight: 700; color: var(--slate); margin-bottom: 0.5rem; font-size: 1.05rem; }
.timeline-desc { font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; }

/* ---------- Journey Timeline (horizontal, numbered) ---------- */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; max-width: 1100px; margin: 0 auto; }
.journey::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background: var(--orange); opacity: 0.3; z-index: 0; }
.journey-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center; position: relative; z-index: 1; transition: all 0.3s var(--ease); }
.journey-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.journey-num { width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; display: grid; place-items: center; margin: 0 auto 1rem; box-shadow: 0 4px 12px rgba(247,148,29,0.3); }
.journey-step h4 { color: var(--slate); margin-bottom: 0.6rem; font-size: 1rem; }
.journey-step p { color: var(--text-soft); font-size: 0.85rem; line-height: 1.5; margin: 0; }
@media (max-width: 900px) {
  .journey { grid-template-columns: 1fr; gap: 1rem; }
  .journey::before { display: none; }
  .journey-step { display: flex; align-items: flex-start; text-align: left; gap: 1rem; padding: 1.25rem; }
  .journey-num { margin: 0; flex-shrink: 0; width: 50px; height: 50px; font-size: 1.2rem; }
  .journey-step > div { flex: 1; }
}

/* ---------- What is fibre explainer ---------- */
.fibre-explainer { max-width: 760px; margin: 0 auto; text-align: center; padding: 2.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); border-left: 4px solid var(--orange); }
.fibre-explainer p { font-size: 1.08rem; color: var(--text); line-height: 1.65; margin: 0; }

/* ---------- Office cards (Contact page) ---------- */
.office-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 720px; margin: 0 auto 2.5rem; }
@media (max-width: 600px) { .office-cards { grid-template-columns: 1fr; } }
.office-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all 0.25s var(--ease); border-left: 4px solid var(--orange); }
.office-card:hover { box-shadow: var(--shadow-md); }
.office-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 0.5rem; }
.office-address { color: var(--text); font-size: 0.95rem; line-height: 1.55; margin-bottom: 0.85rem; }
.office-link { color: var(--orange); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s var(--ease); }
.office-link::after { content: '\2192'; transition: transform 0.2s var(--ease); }
.office-link:hover { gap: 0.55rem; }

/* ---------- Backed by Oreana strip ---------- */
.oreana-strip { background: var(--slate); color: var(--white); padding: 4rem 0; position: relative; overflow: hidden; }
.oreana-strip::before { content: ''; position: absolute; top: -50%; right: -20%; width: 70%; height: 200%; background: radial-gradient(circle, rgba(141,198,63,0.12) 0%, transparent 60%); }
.oreana-content { display: grid; grid-template-columns: 1fr 1.8fr; gap: 3rem; align-items: center; position: relative; }
.oreana-stat { text-align: center; }
.oreana-stat .big { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -0.03em; }
.oreana-stat .big-label { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 0.5rem; }
.oreana-text { position: relative; }
.oreana-text-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.oreana-logo { height: 36px; width: auto; opacity: 0.95; }
.oreana-text h3 { color: var(--white); margin-bottom: 0; }
.oreana-text p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; line-height: 1.6; }
@media (max-width: 700px) { .oreana-content { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- CTA Banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--slate) 0%, var(--slate-dark) 100%); color: var(--white); padding: clamp(3.5rem, 7vw, 5rem) 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-banner-content { position: relative; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Contact Form ---------- */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--slate); margin-bottom: 0.4rem; }
.form-field .req { color: var(--orange); }
.form-field input, .form-field select, .form-field textarea { font: inherit; font-size: 0.97rem; padding: 0.85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--white); color: var(--text); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,148,29,0.15); }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-submit { margin-top: 1.5rem; text-align: right; }
.form-success { display: none; padding: 1rem 1.25rem; background: rgba(141,198,63,0.12); border: 1px solid var(--green); border-radius: var(--radius); color: #4a7619; font-weight: 500; margin-top: 1rem; }
.form-success.visible { display: block; }

/* ---------- Careers ---------- */
.careers-empty { text-align: center; padding: 4rem 2rem; background: var(--light-slate-soft); border-radius: var(--radius-lg); border: 1.5px dashed var(--border); max-width: 700px; margin: 0 auto; }
.careers-empty h3 { margin-bottom: 0.75rem; }
.careers-empty p { color: var(--text-soft); margin-bottom: 1.5rem; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.2s var(--ease); }
.faq-item:hover { border-color: var(--orange); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; font-weight: 600; color: var(--slate); font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; font-weight: 300; color: var(--orange); transition: transform 0.25s var(--ease); flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.5rem 1.4rem; color: var(--text-soft); line-height: 1.6; font-size: 0.97rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(2, 1fr); gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand img { height: 38px; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; max-width: 35ch; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-addresses { display: flex; gap: 2.5rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-addresses .addr { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: baseline; }
.footer-addresses .addr-label { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; flex-shrink: 0; }
.footer-addresses .addr-text { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Footer addresses strip ---------- */
.footer-addresses { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; display: flex; gap: 2.5rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0; }
.footer-address-item { display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5; }
.footer-address-item strong { color: rgba(255,255,255,0.85); font-weight: 700; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.12em; flex-shrink: 0; padding-top: 0.1rem; }
.footer-address-item span { display: block; }
@media (max-width: 700px) { .footer-addresses { flex-direction: column; gap: 1.25rem; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
