/* ============================================
   WARDA HOLDINGS GROUP — DESIGN SYSTEM v3
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --navy:        #0F2A4A;
  --navy-deep:   #091d33;
  --navy-mid:    #163654;
  --navy-light:  #1e4a73;
  --white:       #FFFFFF;
  --off-white:   #F8F9FB;
  --grey-light:  #F2F4F7;
  --grey-mid:    #E4E7EC;
  --grey-text:   #6B7280;
  --grey-dark:   #374151;
  --black:       #0D0D0D;

  /* Display font: Cormorant Garamond — refined, editorial, professional */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --nav-height: 72px;
  --max-width:  1200px;
  --radius:     4px;

  --ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --transition:      0.28s var(--ease);
  --transition-slow: 0.55s var(--ease);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem);   font-weight: 500; }
h2 { font-size: clamp(2.2rem, 4vw,   3.6rem);  font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw,   1.8rem);  font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--grey-dark); font-size: 0.95rem; }

/* Light text helpers — always use on dark backgrounds */
.text-white   { color: var(--white) !important; }
.text-white-60 { color: rgba(255,255,255,0.60) !important; }
.text-white-40 { color: rgba(255,255,255,0.40) !important; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.2rem; height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

/* ── LAYOUT ────────────────────────────────── */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.section     { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }

/* ── LOGO SVG ──────────────────────────────── */
/*
  The Warda logo is an inline SVG rendered wherever .logo-svg appears.
  It uses a geometric W mark inside a shield/diamond shape,
  paired with the wordmark in Cormorant Garamond.
  Two variants: .logo--dark (white on transparent) and .logo--light (navy on white).
*/
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-logo__mark {
  flex-shrink: 0;
  width: 40px;
  height: 44px;
}
.site-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-logo__sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-top: 1px;
}

/* Dark background variant */
.site-logo--dark .site-logo__name { color: var(--white); }
.site-logo--dark .site-logo__sub  { color: rgba(255,255,255,0.4); }
/* Light background variant */
.site-logo--light .site-logo__name { color: var(--navy); }
.site-logo--light .site-logo__sub  { color: var(--grey-text); }
/* Footer variant */
.site-logo--footer .site-logo__name { color: rgba(255,255,255,0.7); }
.site-logo--footer .site-logo__sub  { color: rgba(255,255,255,0.25); }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  display: flex; align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--grey-mid);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}
.nav--on-dark { background: transparent; }

.nav__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--grey-dark); transition: color var(--transition); position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--navy); transition: width var(--transition);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--navy); font-weight: 600; }

/* On dark hero — links are white */
.nav--on-dark .nav__link { color: rgba(255,255,255,0.75); }
.nav--on-dark .nav__link::after { background: var(--white); }
.nav--on-dark .nav__link:hover { color: var(--white); }
.nav--on-dark .nav__link.active { color: var(--white); }

.nav__cta {
  font-family: var(--font-body); font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.08em; padding: 0.5rem 1.25rem;
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: var(--navy-mid); transform: translateY(-1px); }
.nav--on-dark .nav__cta { background: var(--white); color: var(--navy); }
.nav--on-dark .nav__cta:hover { background: var(--grey-light); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); transition: all var(--transition);
}
.nav--on-dark .nav__hamburger span { background: var(--white); }
.nav.scrolled .nav__hamburger span { background: var(--navy); }

.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--white); padding: 1.5rem 2rem;
  flex-direction: column; gap: 0.25rem;
  border-bottom: 1px solid var(--grey-mid);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08); z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-size: 0.9rem; font-weight: 500; color: var(--grey-dark);
  padding: 0.7rem 0; border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--navy); }
.nav__mobile-cta {
  margin-top: 0.75rem; text-align: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.85rem; background: var(--navy); color: var(--white);
  border-radius: var(--radius);
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 0.85rem 1.75rem;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,42,74,0.2); }

.btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--grey-mid); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

.btn--ghost-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn--ghost-white:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy-deep);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 65% 40%, black 20%, transparent 68%);
}
.hero__glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(22,54,84,0.7) 0%, transparent 65%);
  right: -150px; top: -150px; pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: center;
  min-height: calc(100vh - var(--nav-height)); padding: 4rem 0;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65); margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.7s var(--ease) forwards 0.1s;
}
.hero__tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 7px #4ade80; flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);          /* ✓ white on dark */
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.7s var(--ease) forwards 0.2s;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.55);  /* ✓ muted white on dark */
  line-height: 1.85; max-width: 500px;
  margin-bottom: 2.5rem; font-weight: 300;
  opacity: 0; animation: fadeUp 0.7s var(--ease) forwards 0.3s;
}

.hero__actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s var(--ease) forwards 0.4s;
}

.hero__cards {
  display: flex; flex-direction: column; gap: 0.65rem;
  opacity: 0; animation: fadeIn 0.9s var(--ease) forwards 0.55s;
}
.hero__card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.9rem;
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.hero__card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); transform: translateX(4px); }
.hero__card-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: rgba(255,255,255,0.75);
}
.hero__card-icon svg { width: 16px; height: 16px; }
.hero__card-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500;
  color: var(--white);          /* ✓ white on dark */
  margin-bottom: 0.1rem;
}
.hero__card-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4); /* ✓ muted white on dark */
  line-height: 1.4;
}
.hero__card-arrow { margin-left: auto; color: rgba(255,255,255,0.18); font-size: 0.85rem; transition: color var(--transition), transform var(--transition); }
.hero__card:hover .hero__card-arrow { color: rgba(255,255,255,0.55); transform: translateX(3px); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0; animation: fadeIn 1s var(--ease) forwards 1s; z-index: 2;
}
.hero__scroll-text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.hero__scroll-bar { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent); animation: scrollDrop 2s ease-in-out infinite; }

/* ── LOGOBAR ───────────────────────────────── */
.logobar { border-top: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid); padding: 1.25rem 0; background: var(--white); }
.logobar__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: space-between; }
.logobar__label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-text); white-space: nowrap; }
.logobar__sectors { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.logobar__sector {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--navy); padding: 0.28rem 0.75rem;
  border: 1px solid var(--grey-mid); border-radius: 100px;
  transition: all var(--transition);
}
.logobar__sector:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── INTRO ─────────────────────────────────── */
.intro { background: var(--white); }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.intro__left h2 { margin-bottom: 1.5rem; }
.intro__left p  { font-size: 1rem; line-height: 1.85; margin-bottom: 1.1rem; }
.intro__left .btn { margin-top: 1rem; }
.intro__right { border: 1px solid var(--grey-mid); border-radius: 10px; overflow: hidden; }
.intro__pillar { padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--grey-mid); display: flex; gap: 1rem; align-items: flex-start; transition: background var(--transition); }
.intro__pillar:last-child { border-bottom: none; }
.intro__pillar:hover { background: var(--off-white); }
.intro__pillar-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); }
.intro__pillar-icon svg { width: 16px; height: 16px; }
.intro__pillar h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 0.3rem; }
.intro__pillar p  { font-size: 0.8rem; color: var(--grey-text); line-height: 1.65; }

/* ── SECTORS GRID ──────────────────────────── */
.sectors { background: var(--off-white); }
.sectors__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap; }
.sectors__header h2 { max-width: 400px; }
.sectors__header p  { max-width: 320px; font-size: 0.88rem; text-align: right; color: var(--grey-text); }
.sectors__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.sector-card {
  background: var(--white); border: 1px solid var(--grey-mid); border-radius: 10px;
  padding: 1.6rem 1.4rem; display: flex; flex-direction: column;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.sector-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-slow); }
.sector-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,42,74,0.1); }
.sector-card:hover::before { transform: scaleX(1); }
.sector-card__num { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; color: var(--grey-text); margin-bottom: 1rem; }
.sector-card__icon { width: 34px; height: 34px; color: var(--navy); margin-bottom: 1rem; }
.sector-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--black); margin-bottom: 0.5rem; line-height: 1.25; }
.sector-card__desc  { font-size: 0.76rem; color: var(--grey-text); line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.sector-card__link  { font-size: 0.7rem; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; display: flex; align-items: center; gap: 0.3rem; opacity: 0; transform: translateY(4px); transition: opacity var(--transition), transform var(--transition); }
.sector-card:hover .sector-card__link { opacity: 1; transform: translateY(0); }

/* ── WHY ───────────────────────────────────── */
.why { background: var(--white); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.why__left h2   { margin-bottom: 1.2rem; }
.why__left > p  { font-size: 1rem; line-height: 1.85; margin-bottom: 2rem; }
.why__points    { display: flex; flex-direction: column; gap: 1.25rem; }
.why__point { display: flex; gap: 1.2rem; padding: 1.4rem; border-radius: 8px; border: 1px solid var(--grey-mid); transition: border-color var(--transition), box-shadow var(--transition); }
.why__point:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(15,42,74,0.07); }
.why__point-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--grey-mid); line-height: 1; flex-shrink: 0; width: 2rem; transition: color var(--transition); }
.why__point:hover .why__point-num { color: var(--navy); }
.why__point h4 { font-family: var(--font-display); font-weight: 600; color: var(--black); margin-bottom: 0.35rem; font-size: 1.05rem; }
.why__point p  { font-size: 0.83rem; line-height: 1.7; }

/* ── CTA BAND ──────────────────────────────── */
.cta-band {
  background: var(--navy);       /* dark background */
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
/* Force all text inside CTA band to be light — dark bg */
.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band h4,
.cta-band p,
.cta-band__text h2 {
  color: var(--white) !important;
}
.cta-band__text p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 1rem;
}
.cta-band__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── PAGE HERO (INNER PAGES) ───────────────── */
.page-hero {
  background: var(--navy);       /* dark background */
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; }
/* ✓ All text inside page hero must be light */
.page-hero__content h1 {
  color: var(--white);           /* ✓ white heading */
  margin: 0.75rem 0 1rem;
}
.page-hero__content p {
  color: rgba(255,255,255,0.55); /* ✓ muted white */
  max-width: 560px; font-size: 1rem;
}

/* ── APPROACH PAGE ─────────────────────────── */
.approach-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.approach-step { padding: 2rem; border: 1px solid var(--grey-mid); border-radius: 10px; transition: all var(--transition); }
.approach-step:hover { border-color: var(--navy); box-shadow: 0 8px 32px rgba(15,42,74,0.07); }
.approach-step__num { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; color: var(--grey-text); text-transform: uppercase; margin-bottom: 0.75rem; }
.approach-step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--black); margin-bottom: 0.75rem; }
.approach-step p  { font-size: 0.86rem; line-height: 1.75; }
.approach-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.approach-value { padding: 1.75rem; border: 1px solid var(--grey-mid); border-radius: 10px; transition: all var(--transition); }
.approach-value:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,42,74,0.07); }
.approach-value__icon { width: 36px; height: 36px; background: var(--navy); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--white); }
.approach-value__icon svg { width: 16px; height: 16px; }
.approach-value h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; }
.approach-value p  { font-size: 0.8rem; line-height: 1.7; }

/* ── SECTORS PAGE ──────────────────────────── */
.sector-nav-strip { background: var(--white); border-bottom: 1px solid var(--grey-mid); position: sticky; top: var(--nav-height); z-index: 100; }
.sector-nav-strip ul { display: flex; overflow-x: auto; scrollbar-width: none; }
.sector-nav-strip ul::-webkit-scrollbar { display: none; }
.sector-nav-strip a { display: block; padding: 0.85rem 1.2rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-text); border-bottom: 2px solid transparent; white-space: nowrap; transition: color var(--transition), border-color var(--transition); }
.sector-nav-strip a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.sector-full { padding: 4rem 0; border-bottom: 1px solid var(--grey-mid); }
.sector-full:nth-child(even) { background: var(--off-white); }
.sector-full__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.sector-full__meta { position: sticky; top: calc(var(--nav-height) + 48px + 2rem); }
.sector-full__num { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: var(--grey-mid); line-height: 1; margin-bottom: 0.5rem; }
.sector-full__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--black); margin-bottom: 1.5rem; line-height: 1.2; }
.sector-full__body > p { font-size: 0.98rem; margin-bottom: 1.1rem; line-height: 1.85; }
.sector-full__features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 1.75rem; }
.sector-feature { display: flex; align-items: flex-start; gap: 0.55rem; padding: 0.85rem 1rem; background: var(--white); border: 1px solid var(--grey-mid); border-radius: 6px; }
.sector-full:nth-child(even) .sector-feature { background: var(--white); }
.sector-feature__check { width: 14px; height: 14px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.sector-feature p { font-size: 0.8rem; color: var(--grey-dark); font-weight: 500; line-height: 1.4; }

/* ── CONTACT PAGE ──────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; padding: 7rem 0; }
.contact-info h2   { margin-bottom: 1rem; }
.contact-info > p  { font-size: 0.98rem; line-height: 1.85; margin-bottom: 2.5rem; }
.contact-details   { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.25rem; }
.contact-detail    { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-detail__icon { width: 36px; height: 36px; background: var(--off-white); border: 1px solid var(--grey-mid); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.contact-detail__icon svg { width: 15px; height: 15px; }
.contact-detail__content strong { display: block; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 0.15rem; }
.contact-detail__content span   { font-size: 0.85rem; color: var(--grey-text); }

/* Dark box — all text must be light */
.contact-sectors-box {
  padding: 1.5rem; background: var(--navy); border-radius: 10px;
}
.contact-sectors-box .eyebrow {
  color: rgba(255,255,255,0.4); /* ✓ light on dark */
}
.contact-sectors-box .eyebrow::before { background: rgba(255,255,255,0.25); }
.contact-sectors-list { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.75rem; }
.contact-sectors-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65); /* ✓ light on dark */
  display: flex; align-items: center; gap: 0.6rem;
}
.contact-sectors-list li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); flex-shrink: 0; }

.contact-form { background: var(--white); border: 1px solid var(--grey-mid); border-radius: 12px; padding: 2.5rem; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--black); margin-bottom: 0.35rem; }
.contact-form__sub { font-size: 0.82rem; color: var(--grey-text); margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.15rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea { font-family: var(--font-body); font-size: 0.9rem; padding: 0.65rem 0.9rem; border: 1px solid var(--grey-mid); border-radius: var(--radius); background: var(--off-white); color: var(--black); outline: none; transition: border-color var(--transition), box-shadow var(--transition); appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,42,74,0.07); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.73rem; color: var(--grey-text); margin-top: 0.9rem; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success__icon { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--white); }
.form-success__icon svg { width: 22px; height: 22px; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--black); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.88rem; }

/* ── REASSURE STRIP ────────────────────────── */
.reassure-strip { border-top: 1px solid var(--grey-mid); background: var(--off-white); padding: 2.5rem 0; }
.reassure-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.reassure-item__num { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 0.2rem; }
.reassure-item__label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-text); }

/* ── FOOTER ────────────────────────────────── */
.footer { background: #0a0a0f; padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
.footer__brand-desc { font-size: 0.83rem; color: rgba(255,255,255,0.32); line-height: 1.8; margin-top: 1rem; max-width: 280px; }
.footer__canada { display: flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.footer__col-title { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link { font-size: 0.82rem; color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer__link:hover { color: rgba(255,255,255,0.8); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.73rem; color: rgba(255,255,255,0.18); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.73rem; color: rgba(255,255,255,0.18); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.45); }

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scrollDrop { 0%,100%{opacity:.25;transform:scaleY(1)} 50%{opacity:.7;transform:scaleY(1.15)} }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.08s; }
.reveal-delay-2 { transition-delay:.16s; }
.reveal-delay-3 { transition-delay:.24s; }
.reveal-delay-4 { transition-delay:.32s; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .hero__content  { grid-template-columns: 1fr; }
  .hero__cards    { display: none; }
  .sectors__grid  { grid-template-columns: repeat(3,1fr); }
  .intro__grid, .why__grid { grid-template-columns:1fr; gap:3rem; }
  .footer__top    { grid-template-columns:1fr 1fr; }
  .approach-values { grid-template-columns:1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display:none; }
  .nav__hamburger { display:flex; }
  .sectors__grid  { grid-template-columns:1fr 1fr; }
  .approach-steps { grid-template-columns:1fr; }
  .approach-values { grid-template-columns:1fr; }
  .sector-full__inner { grid-template-columns:1fr; gap:2rem; }
  .sector-full__meta  { position:static; }
  .sector-full__features { grid-template-columns:1fr; }
  .contact-layout { grid-template-columns:1fr; gap:3rem; padding:3rem 0; }
  .form-grid      { grid-template-columns:1fr; }
  .footer__top    { grid-template-columns:1fr; gap:2rem; }
  .cta-band__inner { flex-direction:column; text-align:center; }
  .cta-band__actions { justify-content:center; }
  .reassure-strip__inner { grid-template-columns:1fr; gap:1.5rem; }
  .sectors__header { flex-direction:column; align-items:flex-start; }
  .sectors__header p { text-align:left; }
  .hero__actions { flex-direction:column; }
  .hero__actions .btn { width:100%; justify-content:center; }
  .logobar__inner { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 480px) {
  .sectors__grid { grid-template-columns:1fr; }
  .reassure-strip__inner { grid-template-columns:1fr; }
}
