/* ── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162436;
  --navy-light: #1E3A5F;
  --red:        #B22234;
  --red-hover:  #8B1A28;
  --gold:       #C9922A;
  --gold-light: #F5D98B;
  --white:      #FFFFFF;
  --off-white:  #F7F7F5;
  --light:      #F0F2F5;
  --mid-grey:   #6B7280;
  --dark:       #1A1A1A;
  --text:       #2D2D2D;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max: 1140px;
  --radius: 4px;
  --nav-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* Anchor targets: offset so the fixed nav never covers the section heading */
section[id], div[id] { scroll-margin-top: calc(var(--nav-height) + 16px); }

/* ── NAV ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-hover) !important; color: var(--white) !important; }

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

/* Background geometric accent */
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178,34,52,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 50%, var(--navy-light) 100%);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-heading em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
}

.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

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

/* Hero right — stats/chips */
.hero-right {
  display: flex; flex-direction: column; gap: 1rem;
}

.hero-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-chip:nth-child(2) { animation-delay: 0.1s; border-left-color: var(--gold); }
.hero-chip:nth-child(3) { animation-delay: 0.2s; border-left-color: var(--navy-light); }
.hero-chip:nth-child(4) { animation-delay: 0.3s; border-left-color: var(--red); }

.hero-chip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.hero-chip-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HEADER (non-home pages) ─────────────────────────────────────── */
#page-header {
  background: var(--navy);
  padding: calc(var(--nav-height) + 56px) 2rem 56px;
  position: relative;
  overflow: hidden;
}

#page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 50%, var(--navy-light) 100%);
}

#page-header .section-inner { position: relative; z-index: 1; }
#page-header .section-heading { color: var(--white); }
#page-header .section-sub { color: rgba(255,255,255,0.6); max-width: 640px; }
#page-header .section-label { color: var(--gold); }
#page-header .section-label::before { background: var(--gold); }

/* ── SECTION BASE ──────────────────────────────────────────────────────── */
section { padding: 80px 2rem; }

.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--mid-grey);
  max-width: 560px;
  line-height: 1.75;
}

.section-cta { margin-top: 2rem; }

/* ── SERVICES ──────────────────────────────────────────────────────────── */
#services { background: var(--off-white); }

.services-header { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #ddd;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover { background: #FAFBFC; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.3rem;
}

.service-items li {
  font-size: 0.825rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.service-items li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--red);
  font-size: 0.75rem;
}

.service-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}

.service-link:hover { color: var(--red-hover); text-decoration: underline; }

/* ── WHY CIVELON ───────────────────────────────────────────────────────── */
#why { background: var(--navy); }

#why .section-heading { color: var(--white); }
#why .section-sub     { color: rgba(255,255,255,0.55); }
#why .section-label   { color: var(--gold); }
#why .section-label::before { background: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s, border-top-color 0.2s;
}

.why-card:nth-child(2) { border-top-color: var(--gold); }
.why-card:nth-child(3) { border-top-color: #4A8FBF; }
.why-card:nth-child(4) { border-top-color: #4A8F6A; }
.why-card:nth-child(5) { border-top-color: var(--red); }
.why-card:nth-child(6) { border-top-color: var(--gold); }

.why-card:hover { background: rgba(255,255,255,0.06); }

.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── PROCESS ───────────────────────────────────────────────────────────── */
#process { background: var(--light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 14%;
  width: 72%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1.25rem;
  position: relative; z-index: 1;
}

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--red);
}

.process-step:nth-child(2) .process-num { box-shadow: 0 0 0 3px var(--gold); }
.process-step:nth-child(3) .process-num { box-shadow: 0 0 0 3px #4A8FBF; }
.process-step:nth-child(4) .process-num { box-shadow: 0 0 0 3px #4A8F6A; }

.process-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-text {
  font-size: 0.825rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

.process-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  position: relative;
}

.process-row2::before {
  content: '';
  position: absolute;
  top: 28px; left: 17%;
  width: 66%; height: 2px;
  background: linear-gradient(90deg, #4A8F6A, var(--red));
  z-index: 0;
}

/* ── FOUNDER ───────────────────────────────────────────────────────────── */
#founder {
  background: var(--white);
  border-top: 1px solid #eee;
}

.founder-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.founder-left {
  position: relative;
}

.founder-badge {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-badge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.founder-initial {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.founder-initial img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Larger portrait treatment for the About page */
.founder-badge.photo-large .founder-initial {
  width: 200px; height: 200px;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}

.founder-quote {
  position: relative;
  padding-left: 2rem;
}

.founder-quote::before {
  content: '\201C';
  position: absolute;
  left: -0.25rem; top: -1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: 0.4;
}

.founder-quote p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.founder-quote p:last-of-type { margin-bottom: 1.5rem; }

.founder-sig {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
#faq { background: var(--off-white); }

.faq-list {
  margin-top: 2.5rem;
  max-width: 760px;
  display: flex; flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ── CONTACT ───────────────────────────────────────────────────────────── */
#contact {
  background: var(--navy);
  padding: 60px 2rem;
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

#contact .section-heading { color: var(--white); font-size: 2rem; }
#contact .section-label   { color: var(--gold); }
#contact .section-label::before { background: var(--gold); }

.contact-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-top: 0.75rem;
  line-height: 1.75;
}

.contact-details {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}

.contact-item {
  display: flex; align-items: center; gap: 1rem;
}

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-val {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.contact-val strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
}

.contact-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-right h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-right p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.contact-right .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-right .btn-outline {
  display: block; text-align: center; width: 100%;
  border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
}

.sectors {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sectors-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.sector-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}

.sector-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ── QUOTE FORM MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(6,14,22,0.72);
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: 6vh 1.25rem;
  overflow-y: auto;
}

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

.modal-panel {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--red);
  max-width: 620px;
  width: 100%;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.modal-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.modal-panel > p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  border: none;
  background: var(--off-white);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--mid-grey);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: #eee; color: var(--navy); }

/* ── CONTACT FORM (used inside the modal) ─────────────────────────────── */
.contact-form {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.contact-form .field-full { grid-column: 1 / -1; }

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form button[type="submit"] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  justify-self: start;
}

.contact-form button[type="submit"]:hover { background: var(--red-hover); }
.contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }

.contact-form .form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: -0.4rem;
}

.form-status {
  margin-top: 1.1rem;
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.success { display: block; background: #E8F5EC; color: #1E5E33; border: 1px solid #B9DFC4; }
.form-status.error   { display: block; background: #FBEAEA; color: #8B1A28; border: 1px solid #F0C4C4; }

/* Honeypot field — hidden from real visitors, catches simple bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

@media (max-width: 600px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ── FLOATING WHATSAPP BUTTON (mobile) ────────────────────────────────── */
.whatsapp-float {
  display: none;
  position: fixed;
  right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 90;
  transition: transform 0.15s;
}

.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .whatsapp-float { display: flex; }
}

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: #060E16;
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

footer span { color: var(--gold); }

footer .footer-links {
  margin-top: 0.5rem;
}

footer .footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.75rem;
  margin: 0 0.5rem;
}

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

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .process-row2     { grid-template-columns: 1fr 1fr; }
  .process-row2::before { display: none; }
  .founder-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner    { grid-template-columns: 1fr; }

  /* Mobile nav: collapse into a toggleable dropdown instead of disappearing */
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy);
    border-bottom: 3px solid var(--red);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open { max-height: 400px; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a.nav-cta {
    margin: 0.75rem 2rem;
    text-align: center;
    border-top: none;
  }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-row2  { grid-template-columns: 1fr; }
}
