/* ===========================================
   IAM CONNECT — Style Principal
   Design: Luxe Tropical, Gabon Pro
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:      #0a1f2e;
  --deep:      #061422;
  --gold:      #c8972a;
  --gold-lt:   #e8b84b;
  --sky:       #1a6fa8;
  --sky-lt:    #e8f4fd;
  --white:     #ffffff;
  --off-white: #f7f8fa;
  --text:      #1e2a35;
  --muted:     #6b7c8d;
  --border:    #dde4ea;
  --green-gabon: #009a44;
  --yellow-gabon: #fcd116;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); }
h3 { font-size: 1.25rem; color: var(--navy); }
p  { color: var(--muted); }
strong { color: var(--text); }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GABON STRIPE ── */
.gabon-stripe {
  display: flex;
  height: 5px;
  width: 100%;
}
.gabon-stripe span:nth-child(1) { flex:1; background: var(--green-gabon); }
.gabon-stripe span:nth-child(2) { flex:1; background: var(--yellow-gabon); }
.gabon-stripe span:nth-child(3) { flex:1; background: var(--sky); }

/* ── HEADER ── */
header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-area img {
  height: 44px;
  border-radius: 6px;
  object-fit: contain;
}

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin: 0;
}

.logo-text p {
  font-size: 0.72rem;
  color: var(--gold-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* ── NAVIGATION ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  background: var(--gold-lt) !important;
}

/* Burger */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.burger-menu span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 50%, #0d2d44 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,151,42,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,111,168,0.15) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,0.15);
  border: 1px solid rgba(200,151,42,0.4);
  color: var(--gold-lt);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-gabon);
  box-shadow: 0 0 8px var(--green-gabon);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h2 em {
  color: var(--gold-lt);
  font-style: normal;
}

.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,42,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-lt);
  line-height: 1;
}

.stat-card .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Hero visual */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-img-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hero-img-card:first-child {
  grid-column: 1 / -1;
  height: 200px;
}

.hero-img-card:not(:first-child) {
  height: 140px;
}

.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-img-card .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,20,34,0.7));
  padding: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.trust-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
section {
  padding: 80px 24px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  max-width: 580px;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* ── SERVICES GRID ── */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,31,46,0.12);
  border-color: var(--gold);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  opacity: 0.9;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img .cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card-body p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  flex: 1;
}

.service-card-body ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-card-body ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA LINK ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.link-arrow:hover { gap: 12px; }

/* ── WHY SECTION ── */
.why-section {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-map-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-map-card::before {
  content: '🌍';
  position: absolute;
  font-size: 140px;
  opacity: 0.08;
  top: -20px; right: -20px;
}

.why-map-card h3 {
  color: var(--gold-lt);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.why-map-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.why-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--sky-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-item-text h4 {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 0.85rem;
  margin: 0;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.contact-info p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--navy); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,42,0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.5);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 36px;
  border-radius: 5px;
  opacity: 0.8;
}

.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  text-align: right;
}

/* ── SERVICE DETAIL PAGES ── */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  padding: 72px 24px 56px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(200,151,42,0.1) 0%, transparent 60%);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover { color: var(--gold-lt); }

.page-hero h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 620px;
}

/* Content body for service pages */
.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
}

.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-main h3 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.content-main h3:first-child { margin-top: 0; }

.content-main ul {
  list-style: none;
  margin-bottom: 20px;
}

.content-main ul li {
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.content-main ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: 700;
}

.content-main ol {
  margin: 0 0 20px 20px;
}

.content-main ol li {
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.content-sidebar {}

.sidebar-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  object-fit: cover;
  min-height: 220px;
  background: var(--off-white);
}

.sidebar-cta {
  background: var(--sky-lt);
  border: 1px solid rgba(26,111,168,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.sidebar-cta h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1rem;
}

.sidebar-cta p {
  font-size: 0.87rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: var(--sky);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
}

.btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* ── PRODUCT GRID (impression/materiel) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,46,0.1);
  border-color: var(--sky);
}

.product-card img {
  height: 160px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h4 {
  color: var(--navy);
  margin: 8px 0;
  font-size: 1rem;
}

.product-card p,
.product-card ul {
  text-align: left;
  font-size: 0.87rem;
}

.tag {
  display: inline-block;
  background: var(--sky-lt);
  color: var(--sky);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.category-title {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  margin: 48px 0 20px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* ── DARK BANNER ── */
.dark-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d44 100%);
  color: var(--white);
  padding: 48px 36px;
  border-radius: 16px;
  text-align: center;
  margin-top: 56px;
}

.dark-banner h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.dark-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

/* ── CCTV CARD SPECIFICS ── */
.cat-badge--red {
  background: #c0392b !important;
  color: white !important;
}

.link-arrow--red { color: #c0392b !important; }

.service-card--cctv .service-card-img {
  background: #0d1b2a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cctv-icon-bg {
  position: absolute;
  font-size: 72px;
  opacity: 0.15;
  pointer-events: none;
}

.service-card--cctv .service-card-img img:not([style*="display:none"]) ~ .cctv-icon-bg {
  display: none;
}

/* CCTV promo banner */
.cctv-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #1a0000 0%, #3d0e0e 50%, #1a0000 100%);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 16px;
  padding: 28px 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cctv-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cctv-cta-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.cctv-cta-left h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.cctv-cta-left p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 0;
}

.btn-cctv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}

.btn-cctv:hover {
  background: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

@media (max-width: 768px) {
  .cctv-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .btn-cctv { width: 100%; justify-content: center; }
}
@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .contact-grid,
  .content-layout { grid-template-columns: 1fr; }
  
  .hero-visual { display: none; }
  
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    gap: 2px;
  }

  .nav-links.mobile-visible { display: flex; }

  .nav-links a {
    padding: 13px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .burger-menu { display: flex; }

  .form-row { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }

  section { padding: 56px 24px; }

  .content-layout { grid-template-columns: 1fr; }

  .trust-inner { gap: 20px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }

  .dark-banner { padding: 32px 24px; }
}
