/* ══════════════════════════════════════════════════════════
   Badger Solar — Stylesheet
   Colour palette: navy, golden-sun, eco-green, white
   ══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:     #0A1A2E;
  --navy-mid: #0D2B4A;
  --navy-lt:  #123A66;
  --sun:      #FF6905;
  --sun-lt:   #FF8C3A;
  --sun-dk:   #CC5200;
  --green:    #00BB22;
  --green-dk: #009918;
  --white:    #FFFFFF;
  --off-white:#F4FBF4;
  --light:    #E8F5E9;
  --mid:      #CBD5E1;
  --muted:    #64748B;
  --dark:     #0A1A2E;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(13,33,55,0.12);
  --shadow-lg:0 10px 50px rgba(13,33,55,0.18);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.badge-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sun-dk);
  background: rgba(245,158,11,.12);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--sun), var(--sun-dk));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16,185,129,.4);
}
.btn-green:hover { background: var(--green-dk); transform: translateY(-2px); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(13,33,55,.97);
  backdrop-filter: blur(10px);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--sun), var(--sun-dk));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
}
.nav-logo span em {
  font-style: normal;
  color: var(--sun);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--sun);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: .55rem 1.3rem; border-radius: 50px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background-color: #0A1A2E;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpeg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  z-index: 0;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,46,.96) 0%, rgba(10,26,46,.89) 55%, rgba(10,26,46,.96) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, #0A1A2E, transparent);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-sun {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, rgba(245,158,11,.04) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse-sun 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulse-sun {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: .7; }
}
.hero-content .badge-label { font-size: .8rem; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -.5px;
}
.hero-title .highlight { color: var(--sun); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin: 0 auto 2rem;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat { color: var(--white); }
.hero-stat .hs-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
}
.hero-stat .hs-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .2rem;
}

/* ── Info Strip ── */
.info-strip {
  background: var(--navy);
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
}
.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: center;
  justify-content: center;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.info-strip-item i { color: var(--sun); font-size: 1rem; }

/* ── Why Solar ── */
.why-solar { padding: 5rem 0; background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--sun);
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(245,158,11,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sun-dk);
  margin-bottom: 1.2rem;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.why-card p { font-size: .92rem; color: var(--muted); line-height: 1.65; }

/* ── Services ── */
.services { padding: 5rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border: 1px solid rgba(13,33,55,.08);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--sun);
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.service-img .service-icon-fallback {
  position: relative;
  z-index: 1;
}
.service-body { padding: 1.5rem; }
.service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.service-body p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--sun-dk);
  transition: gap var(--transition);
}
.service-link:hover { gap: .7rem; }

/* ── How It Works ── */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,.91) 0%, rgba(26,58,92,.88) 100%);
}
.how-it-works > .container { position: relative; z-index: 1; }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub  { color: rgba(255,255,255,.65); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--sun), var(--sun-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.step-card p { font-size: .9rem; color: rgba(255,255,255,.65); }

/* ── Testimonials ── */
.testimonials { padding: 5rem 0; background: var(--off-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--sun-lt);
  position: absolute;
  top: .5rem; left: 1.2rem;
  font-family: Georgia, serif;
}
.testi-text {
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.testi-stars { color: var(--sun); margin-bottom: .8rem; font-size: .9rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sun);
  font-weight: 700;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-area { font-size: .8rem; color: var(--muted); }

/* ── CTA Banner ── */
.cta-banner {
  background-color: var(--sun-dk);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.90) 0%, rgba(217,119,6,.93) 100%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .8rem;
}
.cta-banner p { font-size: 1.05rem; color: rgba(13,33,55,.75); margin-bottom: 2rem; }
.cta-banner .btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 4px 20px rgba(13,33,55,.3); }
.cta-banner .btn-primary:hover { background: var(--navy-mid); }

/* ── Contact / Quote ── */
.contact { padding: 5rem 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--mid);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(245,158,11,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(245,158,11,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sun-dk);
  font-size: 1.1rem;
}
.ci-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.ci-body p, .ci-body a { font-size: .9rem; color: var(--muted); }
.ci-body a:hover { color: var(--sun-dk); }
.service-areas { margin-top: 2rem; }
.service-areas h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-tag {
  background: var(--light);
  color: var(--navy-mid);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(13,33,55,.12);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--sun); }

/* ── Logo Image ── */
.nav-logo .logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.footer-brand .logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: .8rem;
  display: block;
}

/* ── About Split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.about-split-img {
  position: relative;
  overflow: hidden;
}
.about-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-split-img:hover img { transform: scale(1.04); }
.about-split-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--sun);
  color: var(--navy);
  padding: .7rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  z-index: 2;
}
.about-split-content {
  background: var(--navy);
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.about-split-content > p {
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 1.8rem;
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
}
.about-bullets li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* ── Scroll-reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait — 900px */
@media (max-width: 900px) {
  .contact-grid      { grid-template-columns: 1fr; }
  .about-split       { grid-template-columns: 1fr; }
  .about-split-img   { min-height: 300px; }
  .about-split-content { padding: 2.5rem 1.5rem; }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--navy);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: .9rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
    color: rgba(255,255,255,.9);
  }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    border-bottom: none;
  }
  .hamburger { display: flex; }

  /* Section padding */
  .why-solar,
  .services,
  .how-it-works,
  .testimonials,
  .contact { padding: 3.5rem 0; }
  .cta-banner { padding: 3rem 0; }
}

/* Mobile — 640px */
@media (max-width: 640px) {
  /* Global */
  .container { padding: 0 1rem; }
  .section-header { margin-bottom: 2rem; }
  .section-sub { font-size: .95rem; margin-bottom: 2rem; }

  /* Sections */
  .why-solar,
  .services,
  .how-it-works,
  .testimonials,
  .contact { padding: 2.8rem 0; }
  .cta-banner { padding: 2.5rem 0; }

  /* Hero */
  .hero { min-height: 100svh; min-height: 100vh; align-items: flex-end; padding-bottom: 3rem; }
  .hero-content { padding-top: 90px; }
  .hero-title { font-size: 2rem; line-height: 1.2; }
  .hero-desc { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; margin-bottom: 2rem; }
  .hero-actions .btn { justify-content: center; padding: .85rem 1.5rem; font-size: .9rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }
  .hero-stat .hs-num { font-size: 1.6rem; }
  .hero-stat .hs-label { font-size: .75rem; }

  /* Info strip */
  .info-strip-inner { gap: .8rem 1.5rem; }
  .info-strip-item { font-size: .8rem; }

  /* Why Solar */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-img { height: 180px; }

  /* About split */
  .about-split-img { min-height: 260px; }
  .about-split-content { padding: 2rem 1.2rem; }
  .about-split-badge { bottom: 1rem; left: 1rem; font-size: .8rem; padding: .55rem 1rem; }
  .about-bullets li { font-size: .88rem; }

  /* How it works */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .step-card { padding: 1.5rem 1rem; }
  .step-num { width: 52px; height: 52px; font-size: 1.2rem; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .testi-card { padding: 1.5rem; }

  /* CTA */
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: .95rem; margin-bottom: 1.5rem; }

  /* Contact form */
  .contact-form-wrap { padding: 1.5rem; }
  .contact-info { padding: 0; }
  .contact-info h3 { font-size: 1.2rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.75rem; }
  .btn { font-size: .88rem; padding: .8rem 1.3rem; }
}
