/* ============================================================
   FLEAK ENERGY — STYLESHEET
   ============================================================ */

/* ── GOOGLE FONTS (loaded in HTML) ─────────────────────────── */

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --bg:        #050d0a;
  --bg2:       #071109;
  --bg3:       #0a1a13;
  --card:      #0d1f19;
  --card2:     #102518;
  --border:    rgba(52, 211, 153, 0.12);
  --border2:   rgba(52, 211, 153, 0.22);
  --accent:    #34d399;
  --accent2:   #10b981;
  --accent3:   #6ee7b7;
  --accent4:   #059669;
  --text:      #e2ede9;
  --muted:     #7aada0;
  --muted2:    #4d8075;
  --white:     #ffffff;
  --gold:      #fbbf24;
  --shadow:    0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.3);
  --radius:    16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; }

/* ── UTILITY ────────────────────────────────────────────────── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-desc {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.tag {
  display: inline-block;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 0.45rem;
  margin-bottom: 0.45rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #050d0a;
  padding: 0.88rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Sora', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--accent3);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(52, 211, 153, 0.32);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 0.88rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Sora', sans-serif;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(52, 211, 153, 0.07);
  transform: translateY(-1px);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
   nav {
      position: fixed;
       left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5%;
      background: rgba(5,13,10,0.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo img {
      height: 52px;
      width: auto;
    }

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

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: var(--accent); }

    .nav-cta {
      background: var(--accent);
      color: #050d0a !important;
      padding: 0.55rem 1.4rem;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background 0.25s, transform 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--accent3) !important;
      transform: translateY(-1px);
      color: #050d0a !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--accent);
      transition: all 0.3s;
    }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9rem 5% 5rem;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1600&q=85&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.22) saturate(0.8);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-img { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,13,10,0.6) 0%, rgba(5,13,10,0.1) 40%, rgba(5,13,10,0.85) 100%),
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(52,211,153,0.06) 0%, transparent 70%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52,211,153,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,211,153,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 60%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(52,211,153,0.09);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 0.35rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.06;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 620px;
  font-size: 1.12rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-sub em { color: var(--text); font-style: normal; font-weight: 400; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 5.5rem;
  animation: fadeUp 1s ease 0.5s both;
  background: rgba(13,31,25,0.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.stat-block {
  flex: 1;
  text-align: center;
  padding: 1.6rem 2rem;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 7rem 5%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(13,31,25,0.92);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  backdrop-filter: blur(8px);
}
.about-img-badge strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-img-badge span { font-size: 0.75rem; color: var(--muted); }

.about-quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  margin-top: 1.8rem;
  position: relative;
  overflow: hidden;
}
.about-quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.about-quote-card p {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1.2rem;
}

/* ============================================================
   OPPORTUNITY
   ============================================================ */
.opportunity-section { padding: 7rem 5%; }

.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.opp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.opp-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.opp-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.4s;
}
.opp-card:hover .opp-card-img { filter: brightness(0.9) saturate(1); }

.opp-card-body { padding: 1.5rem; }
.opp-icon {
  width: 44px; height: 44px;
  background: rgba(52,211,153,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.opp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.opp-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   TRANSITION BANNER
   ============================================================ */
.transition-section {
  padding: 5rem 5%;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.transition-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.t-pill { text-align: center; }
.t-from {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--muted2);
  text-decoration: line-through;
  text-decoration-color: rgba(77,128,117,0.5);
  margin-bottom: 0.2rem;
}
.t-to {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.t-arrow { font-size: 1.4rem; color: var(--border2); }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-section { padding: 7rem 5%; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.sol-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.sol-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.sol-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.75);
  transition: filter 0.4s, transform 0.5s;
}
.sol-card:hover .sol-card-img {
  filter: brightness(0.88) saturate(1);
  transform: scale(1.04);
}
.sol-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.sol-card-num {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(13,31,25,0.85);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.2rem 0.7rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  backdrop-filter: blur(6px);
}
.sol-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sol-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.sol-card ul {
  list-style: none;
  padding: 0;
  flex: 1;
}
.sol-card ul li {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.28rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.sol-card ul li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}

/* Wide card spanning 2 cols */
.sol-card.wide {
  grid-column: span 2;
  flex-direction: row;
}
.sol-card.wide .sol-card-img-wrap {
  width: 55%;
  flex-shrink: 0;
}
.sol-card.wide .sol-card-img {
  height: 100%;
}
.sol-card.wide .sol-card-body { padding: 2rem 2.2rem; }

/* ============================================================
   WHY FLEAK
   ============================================================ */
.why-section {
  padding: 7rem 5%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.why-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
  transition: transform 0.6s ease;
}
.why-img-wrap:hover img { transform: scale(1.04); }
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,10,0.8) 0%, transparent 50%);
}
.why-img-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  font-size: 0.85rem;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
}

.why-items { display: flex; flex-direction: column; gap: 1.6rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-dot {
  width: 46px; height: 46px;
  background: rgba(52,211,153,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.why-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   METRICS BAR
   ============================================================ */
.metrics-section { padding: 5rem 5%; }
.metrics-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
}
.metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
}
.metric-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.metric-row:last-child { border-bottom: none; }
.metric-name { font-size: 0.85rem; color: var(--muted); min-width: 160px; }
.metric-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(52,211,153,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.metric-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent4), var(--accent3));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.metric-bar.animated { transform: scaleX(1); }
.metric-val {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 52px;
  text-align: right;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 7rem 5%; text-align: center; }
.contact-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.contact-box > p { color: var(--muted); margin-bottom: 2.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(52,211,153,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.78rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  width: 100%;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.09);
}
.form-group select option { background: #0d1f19; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #030907;
  border-top: 1px solid var(--border);
  padding: 3.5rem 5%;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-logo img { height: 46px; }
.footer-copy { font-size: 0.83rem; color: var(--muted); text-align: center; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color 0.22s;
}
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   IMAGE GALLERY STRIP
   ============================================================ */
.gallery-strip {
  padding: 0 5% 5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.75);
  transition: transform 0.5s ease, filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.92) saturate(1.1);
}
.gallery-item-label {
  position: absolute;
  bottom: 0.9rem; left: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .opp-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-card.wide { grid-column: span 2; }
  .metrics-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 0.9rem 4%; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
   
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(7,17,9,0.97);
    border-top: 1px solid var(--border);
    padding: 1rem 4%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }

  .hero { padding: 8rem 4% 4rem; }
  .hero-stats {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:last-child { border-bottom: none; }

  .about-section,
  .opportunity-section,
  .solutions-section,
  .why-section,
  .contact-section,
  .metrics-section { padding: 5rem 4%; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }

  .opp-grid { grid-template-columns: 1fr; }

  .solutions-grid { grid-template-columns: 1fr; }
  .sol-card.wide { grid-column: span 1; flex-direction: column; }
  .sol-card.wide .sol-card-img-wrap { width: 100%; height: 200px; }
  .sol-card.wide .sol-card-img { height: 200px; }

  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-img-wrap { order: -1; }

  .contact-box { padding: 2.2rem 1.6rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .transition-pills { gap: 1.2rem; }
  .metrics-inner { padding: 2rem 1.5rem; }
  .metrics-grid { gap: 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .opp-card-img { height: 150px; }
}
