/* ============================================
   PESTGUARD PRO — STYLESHEET
   File: style.css
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
  --green:       #1a6b3a;
  --green-dark:  #0f4224;
  --green-light: #27a358;
  --lime:        #7ec83c;
  --gold:        #e6a817;
  --cream:       #f9f5ec;
  --dark:        #111a13;
  --gray:        #5a6b5c;
  --light:       #eef4ee;
  --white:       #ffffff;
  --radius:      4px;
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 200;
  background: rgba(10, 30, 15, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  border-bottom: 1px solid rgba(126, 200, 60, 0.2);
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: var(--white); letter-spacing: 2px;
}
.nav-logo-text span { color: var(--lime); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--lime); }
.nav-cta {
  background: var(--lime); color: var(--dark);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; text-decoration: none;
  font-size: 13px; letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: #96db50; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
  z-index: 210;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white); display: block; transition: 0.3s;
}
/* Hamburger → X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0;
  width: 100%;
  background: rgba(10, 30, 15, 0.99);
  padding: 12px 5% 24px;
  z-index: 190;
  flex-direction: column;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 15px 0; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.5px; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--lime); }
.mobile-menu a:last-child { border-bottom: none; }
.wa-mobile { color: #25d366 !important; font-weight: 700 !important; }

/* Semi-transparent overlay behind mobile menu */
.menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 180;
}
.menu-overlay.show { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--lime); color: var(--dark);
  padding: 15px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #96db50; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126,200,60,0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.btn-white {
  background: var(--white); color: var(--green);
  padding: 16px 36px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366 !important; color: #fff !important; }
.btn-submit {
  background: var(--lime); color: var(--dark);
  padding: 16px 36px; border: none; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; cursor: pointer;
  font-family: 'Barlow', sans-serif; letter-spacing: 0.5px;
  transition: all 0.2s; align-self: flex-start;
}
.btn-submit:hover { background: #96db50; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh; position: relative;
  overflow: hidden; display: flex; align-items: center;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,40,18,0.93) 0%, rgba(5,20,10,0.86) 60%, rgba(0,0,0,0.72) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600') center/cover no-repeat;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--lime) 0, var(--lime) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 5% 100px;
  max-width: 720px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(126,200,60,0.15);
  border: 1px solid rgba(126,200,60,0.4);
  color: var(--lime); padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.95; color: var(--white);
  letter-spacing: 2px; margin-bottom: 20px;
}
h1 span { color: var(--lime); display: block; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 48px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--lime); line-height: 1;
}
.stat-label {
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px; z-index: 2;
}
.hero-scroll span {
  color: rgba(255,255,255,0.4);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(126,200,60,0.7), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green-dark);
  padding: 18px 5%;
  display: flex; align-items: center;
  justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 13px; font-weight: 500;
}
.trust-icon { font-size: 17px; }

/* ── SECTION SHARED ── */
section { padding: 88px 5%; }
.section-tag {
  display: inline-block; color: var(--green);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; line-height: 1.1;
  color: var(--dark); margin-bottom: 16px;
}
h2 span { color: var(--green-light); }
.section-desc {
  font-size: 16px; color: var(--gray);
  line-height: 1.7; max-width: 560px;
}
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 24px;
  margin-bottom: 52px; flex-wrap: wrap;
}
.center-header {
  justify-content: center; text-align: center;
  flex-direction: column; align-items: center;
}
.center-desc { text-align: center; margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--dark);
}
.service-card {
  background: var(--white); padding: 36px 28px;
  transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--lime);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: var(--dark); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-title,
.service-card:hover .service-text { color: var(--white); }
.service-card:hover .service-num { color: rgba(255,255,255,0.08); }
.service-card:hover .service-icon { background: var(--green); }
.service-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 60px;
  color: rgba(0,0,0,0.05);
  position: absolute; top: 14px; right: 18px;
  line-height: 1; transition: color 0.3s;
}
.service-icon {
  width: 50px; height: 50px; background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; transition: background 0.3s;
}
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin-bottom: 10px; transition: color 0.3s;
}
.service-text {
  font-size: 14px; color: var(--gray);
  line-height: 1.65; transition: color 0.3s;
}

/* ── WHY US ── */
#why { background: var(--dark); }
#why h2 { color: var(--white); }
#why .section-desc { color: rgba(255,255,255,0.55); }
#why .section-tag { color: var(--lime); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 52px;
}
.why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px; transition: background 0.3s;
}
.why-item:hover {
  background: rgba(126,200,60,0.08);
  border-color: rgba(126,200,60,0.2);
}
.why-item-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.why-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.why-item-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── PROCESS ── */
#process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 52px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 35px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light), transparent);
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: var(--green); position: relative;
}
.step-circle::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px dashed rgba(39,163,88,0.3);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.step-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.testi-card {
  background: var(--white); padding: 28px;
  border-radius: 2px; border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.avatar-green { background: #1a6b3a; }
.avatar-dark  { background: #0f4224; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testi-location { font-size: 12px; color: var(--gray); }

/* ── CTA BAND ── */
#cta-band {
  background: var(--green); padding: 64px 5%;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  color: var(--white); letter-spacing: 2px; margin-bottom: 6px;
}
.cta-band-text p { color: rgba(255,255,255,0.75); font-size: 16px; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--dark); }
#contact h2 { color: var(--white); }
#contact .section-tag { color: var(--lime); }
#contact .section-desc { color: rgba(255,255,255,0.5); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; margin-top: 52px;
}
.contact-info-item {
  display: flex; gap: 14px;
  margin-bottom: 28px; align-items: flex-start;
}
.contact-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(126,200,60,0.15);
  border: 1px solid rgba(126,200,60,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.contact-info-label {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px;
}
.contact-info-val { color: var(--white); font-size: 15px; font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 1px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 12px 14px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif; font-size: 15px;
  transition: border-color 0.2s; outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lime); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

/* Form feedback messages */
.form-feedback {
  display: none;
  font-size: 14px; padding: 12px 16px;
  border-radius: var(--radius); margin-top: 4px;
}
.form-success {
  background: rgba(39,163,88,0.15);
  border: 1px solid rgba(39,163,88,0.4);
  color: #7ec83c;
}
.form-error {
  background: rgba(220,50,50,0.12);
  border: 1px solid rgba(220,50,50,0.35);
  color: #f87171;
}

/* ── FOOTER ── */
footer {
  background: #060f08; padding: 48px 5% 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand p {
  color: rgba(255,255,255,0.4); font-size: 14px;
  line-height: 1.7; margin-top: 12px; max-width: 280px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--white);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-bottom span { color: var(--lime); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999; width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.65);
  animation: none;
}
@keyframes waFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: absolute; right: 68px;
  background: var(--dark); color: var(--white);
  font-size: 13px; font-weight: 500;
  padding: 6px 12px; border-radius: 20px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =========================================
   RESPONSIVE BREAKPOINTS
   =========================================

   Sizes covered:
   - Large desktop : 1200px+   (default above)
   - Desktop       : 1024px
   - Tablet        :  900px
   - Small tablet  :  768px
   - Large mobile  :  640px
   - Mobile        :  480px
   - Small mobile  :  360px
   ========================================= */

/* ── 1024px — DESKTOP ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 900px — TABLET ── */
@media (max-width: 900px) {
  nav { padding: 0 4%; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; }

  .hero-content { padding: 120px 4% 80px; }
  .hero-scroll { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 768px — SMALL TABLET ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  section { padding: 64px 4%; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-header .btn-primary { align-self: flex-start; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }

  #cta-band { padding: 48px 4%; flex-direction: column; align-items: flex-start; }
  .cta-band-btns { width: 100%; }
  .btn-white { flex: 1; justify-content: center; }

  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 640px — LARGE MOBILE ── */
@media (max-width: 640px) {
  nav { height: 60px; padding: 0 4%; }
  .mobile-menu { top: 60px; }
  .nav-logo-text { font-size: 22px; }
  .nav-logo-icon { width: 32px; height: 32px; font-size: 17px; }

  section { padding: 56px 4%; }

  h1 { font-size: clamp(42px, 12vw, 70px); }
  .hero-content { padding: 100px 4% 64px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 34px; }

  .trust-bar { gap: 16px; padding: 16px 4%; }
  .trust-item { font-size: 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 24px 20px; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; text-align: center; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
}

/* ── 480px — MOBILE ── */
@media (max-width: 480px) {
  section { padding: 48px 4%; }
  .hero-content { padding: 90px 4% 56px; }
  .hero-badge { font-size: 10px; letter-spacing: 1px; }
  .hero-sub { font-size: 14px; }

  h2 { font-size: clamp(26px, 7vw, 36px); }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step { max-width: 280px; margin: 0 auto; }

  .testi-card { padding: 22px; }

  .contact-info-val { font-size: 14px; }

  #cta-band { padding: 40px 4%; }
  .cta-band-btns { flex-direction: column; }
  .btn-white { width: 100%; justify-content: center; }
}

/* ── 360px — SMALL MOBILE ── */
@media (max-width: 360px) {
  nav { padding: 0 3%; }
  section { padding: 44px 3%; }
  .hero-content { padding: 88px 3% 48px; }

  h1 { font-size: 38px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 9px; }

  .trust-bar { flex-direction: column; align-items: flex-start; padding: 14px 3%; gap: 10px; }

  .service-card { padding: 22px 16px; }
  .why-item { padding: 20px 16px; }

  .footer-top { padding: 0; }
}