/* ============================================================
   ROSKA CONSULTANCY & INTERIM
   Kleurenpalet: Inkt-navy · Warm ivoor · Amber-goud
============================================================ */

:root {
  /* Handtekening logo — ongewijzigd */
  --logo-gold:   #DBA500;   /* Ros */
  --logo-navy:   #0D2B50;   /* Ka op lichte achtergrond */
  --logo-ka:     #3B7EC5;   /* Ka — leesbaar op donker én wit */

  /* Kern palet */
  --ink:         #07172B;   /* diepste navy – hero, footer */
  --navy:        #0D2B50;   /* primair – knoppen, iconen */
  --navy-2:      #164275;   /* hover states */
  --amber:       #9A7200;   /* sparingly – accenten */
  --amber-mid:   #C49200;   /* iets helderder accent */

  /* Achtergronden – warm ivoor-tint */
  --paper:       #FDFCF7;   /* hoofdpagina */
  --parchment:   #F4EDE0;   /* wisselende secties */
  --linen:       #E8DFCC;   /* borders */
  --linen-2:     #D6CAAF;   /* donkerdere borders */

  /* Tekst */
  --text:        #0C1A2E;
  --text-mid:    #3B4E68;
  --text-soft:   #697A8E;

  /* Hulp */
  --white:       #FFFFFF;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-s:    0 2px 12px rgba(7,23,43,.07);
  --shadow-m:    0 6px 28px rgba(7,23,43,.11);
  --shadow-l:    0 14px 52px rgba(7,23,43,.15);
  --t:           0.28s cubic-bezier(.4,0,.2,1);
  --nav-h:       70px;

  --font-h:   'Inter', system-ui, sans-serif;
  --font-b:   'Inter', system-ui, sans-serif;
  --w:        1160px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
svg { flex-shrink: 0; }

/* ---- TYPE ---- */
h1, h2, h3 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--text); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { line-height: 1.8; }
.lead { font-size: 1.13rem; color: var(--text-mid); line-height: 1.82; }

/* ---- LAYOUT ---- */
.container { max-width: var(--w); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section-parchment { background: var(--parchment); position: relative; }
.section-dark { background: var(--ink); position: relative; }

.section-parchment::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, var(--paper) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.section-parchment::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to top, var(--paper) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.section-dark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--parchment) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 68px; }

.section-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber); border: 1px solid rgba(154,114,0,.25);
  background: rgba(154,114,0,.07);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(220,195,100,.8); border-color: rgba(220,195,100,.2); background: rgba(220,195,100,.07); }

.section-header h2::after {
  content: ''; display: block;
  width: 40px; height: 2px;
  background: var(--amber-mid); border-radius: 2px;
  margin: 14px auto 0;
}
.h2-light { color: var(--white) !important; }
.h2-light::after { background: rgba(220,195,100,.5); }

.section-caption { font-size: .92rem; color: var(--text-soft); margin-top: 4px; }
.section-intro { max-width: 560px; margin: 12px auto 0; color: var(--text-mid); font-size: 1.02rem; }
.intro-light { color: rgba(255,255,255,.5); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: var(--font-b); font-weight: 600; font-size: .94rem;
  letter-spacing: .02em; transition: all var(--t);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn-cta {
  background: var(--logo-gold); color: var(--ink);
  border-color: var(--logo-gold); font-weight: 700;
}
.btn-cta:hover {
  background: #c99500; border-color: #c99500;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(219,165,0,.4);
}
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-1px); box-shadow: var(--shadow-m); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--linen-2);
}
.btn-outline-navy:hover { border-color: var(--navy); background: rgba(13,43,80,.04); }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   LOGO
============================================================ */
.logo-wordmark { display: block; line-height: 1; }
.logo-wordmark .logo-ros,
.logo-wordmark .logo-ka { display: inline; }
.logo-ros   { font-family: var(--font-h); font-weight: 700; color: var(--logo-gold); letter-spacing: -.02em; }
.logo-ka    { font-family: var(--font-h); font-weight: 700; color: var(--logo-ka);   letter-spacing: -.02em; }
.logo-ka-w  { font-family: var(--font-h); font-weight: 700; color: var(--white);     letter-spacing: -.02em; }
.logo-subtitle {
  font-family: var(--font-b); font-size: .56rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--text-soft); display: block; margin-top: 1px;
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transform: translateY(-100%);
  opacity: 0;
  transition: background var(--t), box-shadow var(--t),
              transform .34s cubic-bezier(.4,0,.2,1), opacity .34s ease;
}
#navbar.scrolled {
  transform: translateY(0);
  opacity: 1;
  background: rgba(253,252,247,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--linen), var(--shadow-s);
}
.nav-container {
  max-width: var(--w); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; }
.logo-subtitle {
  font-family: var(--font-b); font-size: .56rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-soft); display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; padding: 8px 13px;
  border-radius: var(--radius); transition: all var(--t);
  color: rgba(255,255,255,.82);
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { background: rgba(255,255,255,.1); color: var(--white); }
#navbar.scrolled .nav-links a:hover { background: var(--parchment); color: var(--navy); }
.nav-links .nav-cta {
  background: var(--logo-gold); color: var(--ink) !important; font-weight: 700; padding: 9px 20px;
}
.nav-links .nav-cta:hover { background: #c99500; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(219,165,0,.38); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius); }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--white); transition: all var(--t); }
#navbar.scrolled .nav-toggle span { background: var(--text); }
.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); }

/* ============================================================
   HERO — SVG grafiek achtergrond, tekst links
============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url('../images/hero-bg.svg') center / cover no-repeat,
    #07172B;
  overflow: hidden;
  padding-bottom: 60px;
}


.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(7,23,43,.95) 0%,
    rgba(7,23,43,.82) 38%,
    rgba(7,23,43,.42) 68%,
    rgba(7,23,43,.10) 100%
  );
}

.hero-container {
  position: relative; z-index: 3;
  max-width: var(--w); margin: 0 auto; padding: 0 28px;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  padding-top: 28px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(219,165,0,.75);
  margin-bottom: 28px;
}

.hero-logo-block { margin-bottom: 28px; }
.hero-logo-img { height: clamp(90px, 14vw, 130px); width: auto; }
.hero-logo-sub {
  font-size: .62rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: 6px; font-family: var(--font-b);
}

.hero-tagline {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white); line-height: 1.22; margin-bottom: 40px;
}
.hero-tagline span { display: block; }
.hero-tagline em   {
  display: block; font-style: italic;
  font-weight: 400;
  color: var(--logo-gold);
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.28); transition: color var(--t);
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--logo-gold); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 55%{transform:translateX(-50%) translateY(8px)} }

/* ============================================================
   ABOUT
============================================================ */
#over-oetra {
  background: linear-gradient(to bottom, var(--ink) 0, var(--paper) 112px);
}
.about-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 72px; align-items: start;
}

.about-photo-wrap { position: sticky; top: calc(var(--nav-h) + 28px); }

.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  border: 5px solid var(--white);
  outline: 1px solid var(--linen);
}
.about-photo-frame img { width: 100%; display: block; object-fit: cover; object-position: center top; }

.about-stat-row {
  display: flex; gap: 1px;
  background: var(--linen); border-radius: var(--radius);
  overflow: hidden; margin-top: 16px;
  box-shadow: var(--shadow-s);
}
.about-stat {
  flex: 1; background: var(--white); padding: 14px 8px;
  text-align: center; display: flex; flex-direction: column; gap: 3px;
}
.stat-number { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label  { font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--text-soft); }

.about-text p { color: var(--text-mid); margin-bottom: 16px; }
.about-text .lead { color: var(--text); margin-bottom: 22px; }

.value-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.value-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .83rem; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1.5px solid var(--linen);
  padding: 9px 16px; border-radius: 100px;
  box-shadow: var(--shadow-s);
  transition: all var(--t);
}
.value-pill svg { width: 14px; height: 14px; stroke: var(--amber-mid); }
.value-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: var(--shadow-m); }
.value-pill:hover svg { stroke: var(--logo-gold); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 34px 30px;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--linen);
  transition: all var(--t);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: attr(data-n);
  position: absolute; bottom: 12px; right: 20px;
  font-family: var(--font-h); font-size: 6rem; font-weight: 700;
  color: rgba(13,43,80,.18); line-height: 1;
  pointer-events: none; user-select: none;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--linen); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: background var(--t);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); border-color: transparent; }
.service-card:hover::after { background: var(--logo-gold); }

.service-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-icon-wrap.navy { background: rgba(13,43,80,.08); }
.service-icon-wrap.navy svg { stroke: var(--navy); }
.service-icon-wrap.gold { background: rgba(154,114,0,.1); }
.service-icon-wrap.gold svg { stroke: var(--amber); }

.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { color: var(--text-mid); font-size: .93rem; line-height: 1.76; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-tags span {
  font-size: .72rem; font-weight: 500;
  padding: 4px 11px; border-radius: 100px;
  background: var(--parchment); color: var(--text-soft);
  border: 1px solid var(--linen);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-bottom: 60px; }

.testimonial-card {
  background: var(--white); border: 1px solid var(--linen);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 16px;
  box-shadow: var(--shadow-s); transition: all var(--t);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--linen-2); }

.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c, var(--navy)); color: var(--white);
  font-family: var(--font-h); font-weight: 700; font-size: .78rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .05em;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
}

.t-body { flex: 1; min-width: 0; }
.t-body blockquote {
  font-size: .91rem; line-height: 1.78; color: var(--text-mid);
  font-style: italic; margin-bottom: 14px;
  padding-left: 18px; position: relative;
}
.t-body blockquote::before {
  content: '\201C'; font-family: var(--font-h); font-size: 3rem;
  color: var(--amber-mid); opacity: .3;
  line-height: 0; position: absolute; top: 20px; left: 0;
}
.t-body footer { display: flex; flex-direction: column; gap: 1px; }
.t-body footer strong { font-size: .87rem; color: var(--navy); font-weight: 600; }
.t-body footer span  { font-size: .79rem; color: var(--text-mid); }
.t-body footer time  { font-size: .72rem; color: var(--text-soft); }

/* ============================================================
   REVIEW FORM
============================================================ */
.review-form-section {
  background: var(--white); border: 1px solid var(--linen);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-s);
}
.review-form-header { margin-bottom: 32px; }
.review-form-header h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.review-form-header p  { color: var(--text-mid); margin-bottom: 18px; font-size: .96rem; }
.linkedin-btn { font-size: .83rem; padding: 9px 18px; }

/* ============================================================
   FORMS (shared)
============================================================ */
.review-form, .contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); letter-spacing: .01em; }

/* light labels on dark contact section */
.section-dark .form-group label { color: rgba(255,255,255,.7); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px; font-size: .94rem;
  border: 1.5px solid var(--linen-2); border-radius: var(--radius);
  color: var(--text); background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none; width: 100%; appearance: none;
}
.section-dark .form-group input,
.section-dark .form-group textarea,
.section-dark .form-group select {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.section-dark .form-group input::placeholder,
.section-dark .form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23697A8E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,43,80,.1);
}
.section-dark .form-group input:focus,
.section-dark .form-group textarea:focus {
  border-color: rgba(219,165,0,.6); box-shadow: 0 0 0 3px rgba(219,165,0,.12);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #dc2626; }
.form-group textarea { resize: vertical; min-height: 118px; }

.form-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .8rem; color: var(--text-soft);
  background: rgba(13,43,80,.04); border-left: 2px solid var(--linen-2);
  padding: 10px 13px; border-radius: 0 var(--radius) var(--radius) 0;
}
.form-note svg { color: var(--navy); margin-top: 1px; }

.form-message { font-size: .88rem; padding: 12px 15px; border-radius: var(--radius); display: none; }
.form-message.success { display: block; background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.22); color: #15803d; }
.form-message.error   { display: block; background: rgba(220,38,38,.07); border: 1px solid rgba(220,38,38,.18); color: #b91c1c; }

/* ============================================================
   TIMELINE
============================================================ */
.sectors-timeline { max-width: 740px; margin: 0 auto; position: relative; }
.sectors-timeline::before {
  content: ''; position: absolute;
  left: 24px; top: 28px; bottom: 28px; width: 1.5px;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--linen) 100%);
}

.timeline-item { display: flex; gap: 24px; align-items: flex-start; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px var(--parchment), 0 0 0 5px var(--linen);
  z-index: 1;
}
.timeline-dot svg { width: 20px; height: 20px; stroke: var(--logo-gold); }

.timeline-card {
  background: var(--white); border: 1px solid var(--linen);
  border-left: 3px solid var(--amber-mid);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 26px; flex: 1;
  box-shadow: var(--shadow-s); transition: all var(--t);
}
.timeline-card:hover { box-shadow: var(--shadow-m); transform: translateX(4px); }
.timeline-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 7px; }
.timeline-card p  { font-size: .91rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 12px; }
.tl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-tags span {
  font-size: .71rem; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(13,43,80,.07); color: var(--navy);
  border: 1px solid rgba(13,43,80,.12);
}
.tl-period { font-size: .72rem; font-weight: 600; color: var(--amber); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.tl-header { display: flex; align-items: center; gap: 12px; margin-bottom: 7px; }
.tl-logo { height: 28px; width: auto; object-fit: contain; flex-shrink: 0; }

/* ============================================================
   CONTACT — donkere sectie
============================================================ */
.contact-grid { display: grid; grid-template-columns: 290px 1fr; gap: 56px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  transition: all var(--t);
}
.contact-item:hover { background: rgba(255,255,255,.09); border-color: rgba(219,165,0,.25); }

.contact-icon-wrap {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(219,165,0,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap svg { width: 17px; height: 17px; stroke: var(--logo-gold); fill: none; }

.contact-item > div strong {
  display: block; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 2px;
}
.contact-item > div span,
.contact-item > div a { font-size: .88rem; color: rgba(255,255,255,.7); }
.contact-item > div a:hover { color: var(--logo-gold); }

.contact-available {
  display: flex; align-items: center; gap: 10px;
  font-size: .83rem; font-weight: 500; color: #4ade80;
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.18);
  padding: 12px 16px; border-radius: var(--radius);
}
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #4ade80; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.45)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0)} }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #040e1c;
  position: relative;
}
#footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--ink) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.footer-inner { padding: 68px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.06); align-items: center; }

.footer-logo-img { height: 60px; width: auto; margin-bottom: 4px; display: block; margin-left: auto; margin-right: auto; }
.f-subtitle { font-size: .55rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 14px; }
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.38); line-height: 1.62; max-width: 220px; }

.footer-nav h4,
.footer-contact-col h4 {
  color: rgba(255,255,255,.9); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: .86rem; color: rgba(255,255,255,.42); transition: color var(--t); }
.footer-nav a:hover { color: var(--logo-gold); }

.footer-contact-col a:first-of-type { display: block; font-size: .86rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.footer-contact-col a:first-of-type:hover { color: var(--logo-gold); }
.footer-contact-col p { font-size: .78rem; color: rgba(255,255,255,.28); line-height: 1.7; margin-bottom: 16px; }

.f-linkedin {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.14); padding: 7px 14px; border-radius: var(--radius);
  transition: all var(--t);
}
.f-linkedin:hover { border-color: var(--logo-gold); color: var(--logo-gold); background: rgba(219,165,0,.07); }

.footer-bottom {
  padding: 20px 0; display: flex; flex-direction: column;
  align-items: center; gap: 5px; text-align: center;
}
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.22); }
.footer-slogan { font-family: var(--font-h); font-style: italic; color: rgba(219,165,0,.35) !important; font-size: .85rem !important; }

/* ============================================================
   RESPONSIVE — TABLET (960px)
============================================================ */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { position: static; max-width: 260px; margin: 0 auto; }
  .value-strip { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .sectors-timeline::before { left: 20px; }
  .nav-logo-img { height: 44px; }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET / LARGE PHONE (700px)
============================================================ */
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-logo-img { height: 90px; }

  /* Hero — fix empty space caused by browser chrome on mobile/tablet */
  #hero { align-items: flex-start; min-height: 100dvh; }
  .hero-content { padding-top: calc(var(--nav-h) + 52px); padding-bottom: 60px; }

  /* Service card watermark number — smaller so it doesn't overlap text */
  .service-card::before { font-size: 3.8rem; bottom: 10px; right: 14px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (600px)
============================================================ */
@media (max-width: 600px) {
  :root { --nav-h: 62px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 44px; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(4,14,28,.97); backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; padding: 16px 20px; gap: 4px;
    transform: translateY(-100%); opacity: 0;
    transition: transform var(--t), opacity var(--t); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: .98rem; color: rgba(255,255,255,.8) !important; border-radius: var(--radius); }
  .nav-links .nav-cta { justify-content: center; color: var(--ink) !important; }
  .nav-logo-img { height: 38px; }
  .logo-subtitle { font-size: .5rem; }

  /* Hero — anchor content below nav instead of centering in full viewport */
  #hero { align-items: flex-start; min-height: 100dvh; }
  .hero-content { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 60px; }
  .hero-logo-img { height: 76px; }
  .hero-logo-sub { font-size: .56rem; letter-spacing: .25em; }
  .hero-tagline { font-size: 1.9rem; }

  /* About stats — prevent long label from overflowing */
  .about-stat-row { margin-top: 12px; }
  .about-stat { padding: 14px 4px; }
  .stat-label { letter-spacing: .03em; font-size: .6rem; word-break: break-word; }

  .value-strip { gap: 8px; }
  .value-pill { font-size: .78rem; padding: 8px 13px; }

  /* Service cards — shrink watermark number so it doesn't cover text */
  .service-card::before { font-size: 3.2rem; bottom: 8px; right: 12px; }

  /* Timeline */
  .tl-header { flex-wrap: wrap; gap: 8px; }
  .tl-logo { height: 22px; }

  .form-row { grid-template-columns: 1fr; }
  .review-form-section { padding: 28px 20px; }

  .sectors-timeline::before { display: none; }
  .timeline-item { flex-direction: column; gap: 10px; padding-bottom: 22px; }
  .timeline-card { border-radius: var(--radius); }

  /* Footer — center all columns under the logo */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-nav { text-align: center; }
  .footer-nav ul { align-items: center; }
  .footer-contact-col { text-align: center; }
  .footer-bottom { padding: 16px 0; }
}

@media print {
  #navbar, .hero-scroll, .btn, form, #footer { display: none; }
  .section { padding: 20px 0; }
  .reveal { opacity: 1; transform: none; }
}
