/* ═══════════════════════════════════════════════════════
   RISQUEVERT — Design System v2.0
   Forest green palette · Outfit typeface · Earthy accents
═══════════════════════════════════════════════════════ */

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

:root {
  /* Background layers */
  --bg:  #0F2218;
  --bg2: #152E22;
  --bg3: #1B3A2D;

  /* Surfaces */
  --surface:  rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.09);

  /* Brand accents */
  --lime:       #76B900;
  --lime-glow:  rgba(118,185,0,0.15);
  --blue:       #1565C0;
  --blue-glow:  rgba(21,101,192,0.15);
  --amber:      #d49a4d;
  --terra:      #c0664e;
  --green-leaf: #7aa07f;

  /* Legacy compat — keeps inline styles in HTML working */
  --green:      #76B900;
  --green-dark: #4d7a00;
  --green-glow: rgba(118,185,0,0.15);

  /* Text */
  --text:       #F5EDE0;
  --text-muted: rgba(245,237,224,0.55);

  /* Typography — single family throughout */
  --font:  'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font2: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius: 14px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* Gradient text — amber (risk) → lime (health) — tells the brand story */
.gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section typography */
.section-title {
  font-family: var(--font2);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* Section label — small uppercase dot + text */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime-glow);
}

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ═══ BUTTONS ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--lime) 100%);
  color: #fff;
  box-shadow: 0 0 28px rgba(21,101,192,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(118,185,0,0.28), 0 8px 24px rgba(0,0,0,0.3);
}
.btn-full { width: 100%; justify-content: center; }
.btn-linkedin {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  background: #0077b5; color: #fff;
  border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn-linkedin:hover { background: #005fa3; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,119,181,0.4); }

/* ═══ NAVBAR ════════════════════════════════════════════ */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 0; transition: all 0.4s ease; }
#navbar.scrolled {
  background: rgba(15,34,24,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; transition: opacity 0.2s; margin-right: 24px; }
.nav-logo:hover { opacity: 0.85; }
.nav-logo svg { height: 52px; width: auto; transition: all 0.3s; filter: drop-shadow(0 0 8px rgba(118,185,0,0.22)); }
.logo-img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--lime)) !important;
  color: #fff !important; padding: 10px 24px;
  border-radius: 999px; font-weight: 700 !important;
}

/* ═══ HERO ═══════════════════════════════════════════════ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 100px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
#satelliteCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.45; }

/* Diagonal field-row texture — mirrors the brand slide aesthetic */
.hero-field-rows {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -30deg,
    transparent, transparent 32px,
    rgba(79,117,86,0.07) 32px,
    rgba(79,117,86,0.07) 34px
  );
  pointer-events: none;
}

/* Large decorative lens circle — right side */
.hero-lens {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse 60% 50% at 35% 40%, rgba(213,154,77,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 65% 60%, rgba(118,185,0,0.06) 0%, transparent 55%);
  border: 1px solid rgba(118,185,0,0.08);
  box-shadow: inset 0 0 80px rgba(45,125,50,0.06), 0 0 100px rgba(45,125,50,0.05);
  pointer-events: none;
}
.hero-lens-inner {
  position: absolute;
  width: 450px; height: 450px;
  top: 50%; right: 50px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(118,185,0,0.05);
  pointer-events: none;
}

/* Ambient orbs — amber top-right, lime bottom-left */
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.18; }
.orb1 { width: 550px; height: 550px; background: radial-gradient(circle, var(--amber), transparent); top: -150px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--lime), transparent); bottom: 0; left: -100px; }

.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center; width: 100%;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(213,154,77,0.10); border: 1px solid rgba(213,154,77,0.25);
  border-radius: 999px; padding: 8px 20px;
  font-size: 0.85rem; font-weight: 600; color: var(--amber); margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(213,154,77,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(213,154,77,0); }
}

.hero-title { font-family: var(--font2); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.price-hint { font-size: 0.9rem; color: var(--text-muted); }
.price-hint strong { color: var(--text); font-size: 1.2rem; }
.trust-signals { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); }
.trust-signals span { font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 8px; }

/* Hero offer card */
.offer-card {
  position: relative;
  background: rgba(15,34,24,0.78);
  border: 1px solid rgba(118,185,0,0.22);
  border-radius: 24px; padding: 40px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
}
.oc-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; background: var(--lime);
  filter: blur(80px); opacity: 0.09; z-index: 0; pointer-events: none;
}
.oc-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  color: #fff; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 20px; letter-spacing: 0.12em; margin-bottom: 20px; position: relative; z-index: 1;
}
.oc-title { font-family: var(--font2); font-size: 1.45rem; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.oc-desc { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 24px; position: relative; z-index: 1; }
.oc-features { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; position: relative; z-index: 1; font-size: 0.92rem; font-weight: 500; }
.oc-features li { color: var(--text); }

/* ═══ ABOUT ═════════════════════════════════════════════ */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.about-img { width: 100%; height: auto; display: block; }
.scan-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: rgba(118,185,0,0.8);
  box-shadow: 0 0 20px 5px rgba(118,185,0,0.4);
  animation: scan 4s linear infinite; z-index: 2; pointer-events: none;
}
@keyframes scan { 0%{top:0;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:100%;opacity:0} }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--font2); font-size: 2.5rem; font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: 8px; }
.about-stats span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* ═══ PROBLEM ════════════════════════════════════════════ */
.problem { background: var(--bg2); }
.problem-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.problem-timeline::before {
  content: '';
  position: absolute; left: 52px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, rgba(192,102,78,0.5), rgba(192,102,78,0.04));
}
.prob-item { display: flex; gap: 30px; align-items: flex-start; padding: 40px 0; position: relative; }
.prob-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.05); }
.prob-number { font-family: var(--font2); font-size: 3.5rem; font-weight: 900; color: rgba(192,102,78,0.12); line-height: 1; flex-shrink: 0; width: 80px; text-align: center; letter-spacing: -2px; }
.prob-body { display: flex; gap: 28px; align-items: flex-start; flex: 1; background: var(--surface); border: 1px solid rgba(192,102,78,0.12); border-radius: var(--radius); padding: 32px; transition: all 0.4s ease; }
.prob-body:hover { border-color: rgba(192,102,78,0.35); transform: translateX(8px); box-shadow: 0 8px 40px rgba(192,102,78,0.07); }
.prob-icon-wrap { font-size: 2.2rem; background: rgba(192,102,78,0.10); border: 1px solid rgba(192,102,78,0.18); border-radius: 14px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prob-text h3 { font-family: var(--font2); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.prob-text p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 16px; }
.prob-impact { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; background: rgba(192,102,78,0.10); border: 1px solid rgba(192,102,78,0.22); color: var(--amber); padding: 6px 14px; border-radius: 999px; }
.prob-impact strong { color: var(--terra); font-weight: 700; }

/* ═══ PACKAGES ═══════════════════════════════════════════ */
.packages { background: var(--bg); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.package-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative; overflow: hidden;
}

/* Unique top-accent color per card — inset shadow trick */
.package-card:nth-child(1) { box-shadow: inset 0 3px 0 var(--green-leaf); }
.package-card:nth-child(2) { box-shadow: inset 0 3px 0 var(--terra); }
.package-card:nth-child(3) { box-shadow: inset 0 3px 0 var(--blue); }
.package-card:nth-child(4) { box-shadow: inset 0 3px 0 var(--amber); }
.package-card:nth-child(5) { box-shadow: inset 0 3px 0 var(--lime); }
.package-card:nth-child(6) { box-shadow: inset 0 3px 0 var(--lime); }
.package-card:nth-child(7) { box-shadow: inset 0 3px 0 var(--lime); }

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(118,185,0,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 3px 0 var(--lime);
}
.pkg-icon { font-size: 2.2rem; margin-bottom: 20px; display: inline-block; padding: 12px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid var(--border); transition: transform 0.4s; animation: floatIcon 6s ease-in-out infinite; }
@keyframes floatIcon { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.package-card:hover .pkg-icon { transform: scale(1.1) rotate(5deg); animation: none; }
.package-card h3 { font-family: var(--font2); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.package-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* Premium card ribbon */
.premium-pkg { background: linear-gradient(145deg, var(--surface), rgba(118,185,0,0.06)); border-color: rgba(118,185,0,0.22); }
.premium-pkg::before { content: 'Best Value'; position: absolute; top: 20px; right: -30px; background: linear-gradient(135deg, var(--blue), var(--lime)); color: #fff; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; padding: 4px 30px; transform: rotate(45deg); }

/* ═══ HOW IT WORKS ═══════════════════════════════════════ */
.how { background: var(--bg2); }
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.how-visual { display: flex; align-items: center; justify-content: center; }

/* Inline SVG satellite illustration */
.sat-visual { display: flex; flex-direction: column; align-items: center; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.sat-satellite { width: 100%; max-width: 260px; animation: floatSat 5s ease-in-out infinite; }
.sat-svg { width: 100%; height: auto; filter: drop-shadow(0 0 12px rgba(118,185,0,0.35)); }
@keyframes floatSat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.beam-line { animation: beamPulse 2s linear infinite; }
@keyframes beamPulse { 0%{stroke-dashoffset:0} 100%{stroke-dashoffset:-28} }
.sat-field { width: 100%; margin-top: 8px; }
.field-svg { width: 100%; height: auto; border-radius: 8px; }
.field-scan { animation: scanField 3s linear infinite; }
@keyframes scanField { 0%{y1:2;y2:2} 100%{y1:128;y2:128} }
.field-legend { display: flex; justify-content: center; gap: 20px; margin-top: 12px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }

/* Step list */
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.h-step { display: flex; gap: 24px; align-items: flex-start; }
.h-num { background: linear-gradient(135deg, var(--blue), var(--lime)); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font2); flex-shrink: 0; font-size: 1.1rem; box-shadow: 0 0 16px rgba(118,185,0,0.2); }
.h-step h4 { font-family: var(--font2); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.h-step p { color: var(--text-muted); font-size: 0.93rem; }

/* ═══ CONTACT ════════════════════════════════════════════ */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
.contact-email { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 500; color: var(--text); margin-top: 20px; }
.ce-icon { font-size: 1.3rem; }
.contact-email a { transition: color 0.2s; }
.contact-email a:hover { color: var(--lime); }
.price-hint-large { font-size: 1.15rem; color: var(--text-muted); padding: 18px 20px; background: var(--surface); border-left: 3px solid var(--lime); border-radius: 0 var(--radius) var(--radius) 0; }
.price-hint-large strong { color: var(--lime); font-size: 1.3rem; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius)*1.4); padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15,34,24,0.85);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; color: var(--text);
  font-family: var(--font); font-size: 0.95rem; outline: none; transition: 0.3s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(118,185,0,0.12); }
.form-group select option { background: var(--bg); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; text-align: center; color: var(--lime); font-weight: 600; padding: 14px; background: rgba(118,185,0,0.08); border: 1px solid rgba(118,185,0,0.20); border-radius: 10px; }

/* ═══ CAREERS ════════════════════════════════════════════ */
.careers { background: var(--bg2); padding-bottom: 120px; }
.careers-single { max-width: 700px; margin: 0 auto; text-align: center; }
.careers-single p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.vacancy-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(118,185,0,0.08); border: 1px solid rgba(118,185,0,0.18); border-radius: 999px; padding: 8px 18px; font-size: 0.88rem; font-weight: 600; color: var(--lime); margin-bottom: 28px; }
.vb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(213,154,77,0.3); flex-shrink: 0; }
.careers-single .vacancy-badge { justify-content: center; }
.careers-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 20px; }
.careers-single .careers-actions { justify-content: center; }
.linkedin-hint { font-size: 0.88rem; color: var(--text-muted); font-style: italic; }
.careers-single .linkedin-hint { text-align: center; }

/* Role cards */
.role-cards { display: flex; flex-direction: column; gap: 18px; }
.role-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s ease; }
.role-card:hover { border-color: var(--lime); transform: translateX(-6px); }
.role-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.role-tag.future { background: rgba(213,154,77,0.10); color: var(--amber); border: 1px solid rgba(213,154,77,0.28); }
.role-card h4 { font-family: var(--font2); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.role-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ═══ FOOTER ═════════════════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 0 0; position: relative; }
/* Lime gradient strip at top of footer */
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--lime), var(--blue)); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand-col p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; margin: 16px 0 20px; line-height: 1.7; }
.footer-logo-img { height: 90px; width: auto; }
.footer-brand-col svg { height: 90px; width: auto; }
.footer-social { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: #0077b5; background: rgba(0,119,181,0.10); border: 1px solid rgba(0,119,181,0.28); padding: 8px 16px; border-radius: 999px; transition: all 0.3s; }
.footer-social:hover { background: #0077b5; color: #fff; transform: translateY(-2px); }
.footer-col h5 { font-family: var(--font2); font-weight: 700; margin-bottom: 20px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom p:last-child { color: var(--lime); font-style: italic; }

/* ═══ HAMBURGER ══════════════════════════════════════════ */
.hamburger { display: none; background: transparent; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; transition: all 0.3s ease; border-radius: 2px; }

/* ═══ RESPONSIVE ═════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-content, .how-layout, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; text-align: center; }
  .hero-actions { justify-content: center; }
  .trust-signals { justify-content: center; }
  .hero-lens, .hero-lens-inner { display: none; }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hamburger { display: block; margin-left: auto; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
    background: rgba(15,34,24,0.98); backdrop-filter: blur(12px);
    border-left: 1px solid var(--border);
    flex-direction: column; padding: 100px 30px 40px;
    gap: 24px; transition: right 0.4s ease;
    align-items: flex-start; box-shadow: -10px 0 40px rgba(0,0,0,0.6); z-index: 999;
  }
  .nav-links.active { right: 0; }
  .nav-cta { text-align: center; display: inline-block; padding: 12px 30px !important; margin-top: 12px; }

  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-logo { z-index: 1001; margin-right: 0; }
  .nav-logo svg { height: 40px; }
  .logo-img { height: 40px !important; }
}

@media (max-width: 900px) {
  .package-grid { grid-template-columns: 1fr; }
  .prob-body { flex-direction: column; }
  .problem-timeline::before { display: none; }
  .prob-number { width: auto; font-size: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
