/* ============================================
   STYLE.CSS — RocketPro Tech (Professional)
   Theme: Deep Navy + Indigo/Violet Blue
   Exact original palette: #6366f1 #8b5cf6
   #0f172a #1e293b #0a4e89 #6d9ebb #c9b06a
   Fonts: Plus Jakarta Sans + Outfit
   Fully Responsive | Zero Overflow
============================================ */

/* ── CSS VARIABLES ── */
:root {
  /* Original palette preserved exactly */
  --navy: #0f172a;
  --navy2: #1e293b;
  --navy3: #0d1b35;
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --indigo-dark: #4f46e5;
  --blue-mid: #0a4e89;
  --blue-steel: #6d9ebb;
  --gold: #c9b06a;
  --gold2: #d4a04a;
  /* Extended palette */
  --indigo-glow: rgba(99, 102, 241, 0.25);
  --violet-glow: rgba(139, 92, 246, 0.2);
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-bg: #f1f5f9;
  --border-light: #e2e8f0;
  --muted: #94a3b8;
  --text-dark: #0f172a;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-deep:    #060e1e;
      --bg-mid:     #0b1a35;
      --bg-card:    rgba(255,255,255,0.05);
      --bg-hover:   rgba(79,195,247,0.12);
      --accent:     #4fc3f7;
      --accent-dim: rgba(79,195,247,0.35);
      --text-white: #f0f6ff;
      --text-muted: #7a9cc0;
      --border:     rgba(255,255,255,0.09);
      --border-active: rgba(79,195,247,0.5);
      --radius-sm:  10px;
      --radius-md:  16px;
      --radius-lg:  22px;
      --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  padding-top: 80px;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #7b6cff55, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--indigo);
}

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

.section-header.light h2 span {
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: #64748b;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.light .section-sub {
  color: var(--muted);
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-tag.light {
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, var(--blue-mid), #0c5fa8);
  color: #e0f0ff;
  font-size: 0.8rem;
  position: fixed;
  font-weight: 500;
  padding: 8px 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.topbar-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-inner i {
  color: #93c5fd;
  margin-right: 6px;
}

.topbar a {
  color: #bfdbfe;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.topbar a:hover {
  color: #fff;
  position: fixed;
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 16, 32, 0.97);
  position: fixed;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(99, 102, 241, 0.2);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

/* .navbar .container .logo h2 a{
  font-size: 0.75rem;
} */

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

.logo img {
  height: 40px;
}

.logo h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.3px;
}

nav#main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav#main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.1px;
}

nav#main-nav a:hover,
nav#main-nav a.nav-active {
  color: var(--white);
  background: rgba(99, 102, 241, 0.15);
}

nav#main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px var(--indigo-glow);
}

nav#main-nav a.nav-cta:hover {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--indigo-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 91vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  background: var(--navy);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Hero orbs — clipped inside hero overflow:hidden */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s infinite ease-in-out;
}

.hero-orb1 {
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 70%);
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.hero-orb2 {
  width: min(450px, 50vw);
  height: min(450px, 50vw);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 70%);
  bottom: -100px;
  left: -60px;
  animation-delay: -5s;
}

.hero-orb3 {
  width: min(280px, 30vw);
  height: min(280px, 30vw);
  background: radial-gradient(circle, rgba(10, 78, 137, 0.3), transparent 70%);
  top: 35%;
  left: 45%;
  animation-delay: -9s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-28px) scale(1.03);
  }
}

.hero-container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  animation: fadeSlideDown 0.7s both;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--indigo);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }

  60% {
    box-shadow: 0 0 0 7px rgba(99, 102, 241, 0);
  }
}

.brand {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: fadeSlideDown 0.7s 0.1s both;
}

.hero h1 {
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
  animation: fadeSlideDown 0.7s 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--indigo), var(--violet), var(--blue-steel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-left>p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.8px;
  animation: fadeSlideDown 0.7s 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.7s 0.4s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 28px var(--indigo-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-3px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: fadeSlideDown 0.7s 0.5s both;
  flex-wrap: wrap;
}

.hstat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hstat-line {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Hero right */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeSlideRight 0.9s 0.3s both;
}

.hero-img-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame img {
  position: relative;
  z-index: 3;
  /* border-radius:50%; */
  padding: 8px 20px;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.3));
}

.frame-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  animation: circlePulse 4s infinite ease-in-out;
}

.fc1 {
  width: 420px;
  height: 420px;
  border-color: rgba(99, 102, 241, 0.2);
  animation-delay: 0s;
}

.fc2 {
  width: 580px;
  height: 580px;
  border-color: rgba(139, 92, 246, 0.1);
  animation-delay: -2s;
}

.frame-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: orbFloat 8s infinite ease-in-out;
}

@keyframes circlePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── FEATURES ── */
.features {
  background: var(--off-white);
  padding: 96px 5%;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 36px 24px 28px;
  border-radius: var(--radius);
  text-align: left;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.13);
  border-color: rgba(99, 102, 241, 0.25);
}

.fc-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px var(--indigo-glow);
}

.fc-icon i {
  font-size: 22px;
  color: white;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
}

.fc-bar {
  /* kept for structure, now handled by ::before */
  display: none;
}

/* ── ADVANTAGES ── */
.advantages {
  background: var(--navy2);
  padding: 96px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.adv-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.1) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.advantages-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.adv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.adv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.35s;
}

.adv-card:hover::after {
  opacity: 1;
}

.adv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 50px rgba(99, 102, 241, 0.18);
}

.adv-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.adv-num {
  font-size: 40px;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.15);
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.adv-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-icon i {
  font-size: 20px;
  color: var(--indigo);
}

.adv-card:hover .adv-icon {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border-color: transparent;
}

.adv-card:hover .adv-icon i {
  color: white;
}

.adv-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.adv-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── COVERAGE ── */
.coverage {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--navy3);
  padding-bottom: 20px;
}

.coverage-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(10, 78, 137, 0.15), transparent 50%);
  pointer-events: none;
}

.tech {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  text-align: center;
  padding: 64px 20px 10px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.tech span {
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coverage-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px 5% 70px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.coverage-left,
.coverage-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coverage-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon i {
  font-size: 16px;
  color: #a5b4fc;
}

.coverage-item span {
  flex: 1;
}

.ci-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.coverage-item:hover {
  background: rgba(99, 102, 241, 0.14);
  border-color: rgba(99, 102, 241, 0.45);
  transform: scale(1.02);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.2);
}

.coverage-item:hover .ci-icon {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
}

.coverage-item:hover .ci-icon i {
  color: white;
}

.coverage-item:hover .ci-arrow {
  color: var(--indigo);
  transform: translateX(3px);
}

.coverage-center {
  display: flex;
  justify-content: center;
}

.glass-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 22px;
  padding: 22px;
  max-width: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-shine {
  position: absolute;
  top: -60%;
  left: -30%;
  width: 160%;
  height: 60%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), transparent);
  transform: rotate(-15deg);
  pointer-events: none;
}

.work1 {
  width: 100%;
  height: auto;
  max-height: 175px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 14px;
}

#coverage-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  display: block;
  min-height: 52px;
  transition: opacity 0.25s ease;
}

/* new coverage text styles */
html { scroll-behavior: smooth; }

    body {
      background: var(--bg-deep);
      font-family: 'DM Sans', sans-serif;
      color: var(--text-white);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Animated mesh background ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 20% 30%, rgba(79,195,247,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(30,80,160,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(10,30,70,0.6) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .section {
      position: relative;
      z-index: 1;
      max-width: 1140px;
      margin: 0 auto;
      padding: clamp(40px, 8vw, 90px) clamp(16px, 4vw, 40px);
      text-align: center;
    }

    /* ── Header ── */
    .badge {
      display: inline-block;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 5px;
      color: var(--accent);
      border: 1px solid var(--accent-dim);
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 22px;
      backdrop-filter: blur(8px);
    }

    h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 800;
      color: var(--text-white);
      line-height: 1.1;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    h2 span { color: var(--accent); }

    .subtitle {
      font-size: clamp(13px, 1.6vw, 15px);
      color: var(--text-muted);
      margin-bottom: clamp(36px, 6vw, 60px);
      font-weight: 300;
    }

    /* ── Main grid (desktop: 3 cols) ── */
    .grid {
      display: grid;
      grid-template-columns: 1fr 260px 1fr;
      grid-template-rows: auto;
      gap: 14px;
      align-items: center;
    }

    .col { display: flex; flex-direction: column; gap: 12px; }

    /* ── Service item ── */
    .service-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: clamp(14px, 2vw, 20px) clamp(14px, 2vw, 22px);
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
      text-align: left;
      -webkit-tap-highlight-color: transparent;
      position: relative;
      overflow: hidden;
    }

    .service-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(79,195,247,0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity var(--transition);
    }

    .service-item:hover::before,
    .service-item.active::before { opacity: 1; }

    .service-item:hover,
    .service-item.active {
      background: var(--bg-hover);
      border-color: var(--border-active);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(79,195,247,0.12);
    }

    .service-item .left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .icon-wrap {
      width: clamp(36px, 4vw, 44px);
      height: clamp(36px, 4vw, 44px);
      background: rgba(79,195,247,0.15);
      border: 1px solid rgba(79,195,247,0.25);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(16px, 2vw, 20px);
      flex-shrink: 0;
      transition: background var(--transition), border-color var(--transition);
    }

    .service-item:hover .icon-wrap,
    .service-item.active .icon-wrap {
      background: rgba(79,195,247,0.28);
      border-color: var(--accent);
    }

    .name {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(13px, 1.4vw, 15px);
      font-weight: 500;
      color: var(--text-white);
    }

    .arrow {
      color: var(--accent);
      font-size: 18px;
      opacity: 0.6;
      transition: opacity var(--transition), transform var(--transition);
    }

    .service-item:hover .arrow,
    .service-item.active .arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    /* ── Center card ── */
    .center-card {
      background: rgba(79,195,247,0.08);
      border: 1px solid var(--border-active);
      border-radius: var(--radius-lg);
      padding: 22px 18px 24px;
      backdrop-filter: blur(16px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
      position: relative;
      overflow: hidden;
    }

    .center-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.6;
    }

    .card-img-wrap {
      width: 100%;
      height: clamp(120px, 18vw, 160px);
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 16px;
      background: rgba(0,0,0,0.3);
    }

    #coverage-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.18s ease;
      display: block;
    }

    #coverage-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(13px, 1.5vw, 15px);
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 8px;
      transition: opacity 0.18s ease;
    }

    #coverage-desc {
      font-size: clamp(11px, 1.2vw, 13px);
      color: var(--text-muted);
      line-height: 1.6;
      transition: opacity 0.18s ease;
    }

    /* ── TABLET (≤ 900px): stack to top/bottom columns + center card in middle row ── */
    @media (max-width: 900px) {
      .grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
      }

      .col-left  { grid-column: 1; grid-row: 1; }
      .col-right { grid-column: 2; grid-row: 1; }

      .center-card-wrap {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
      }
    }

    /* ── MOBILE (≤ 560px): single column ── */
    @media (max-width: 560px) {
      .grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .col-left  { grid-column: 1; grid-row: 1; }
      .col-right { grid-column: 1; grid-row: 3; }

      .center-card-wrap {
        grid-column: 1;
        grid-row: 2;
        max-width: 100%;
      }

      .center-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
      }

      .card-img-wrap {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        margin-bottom: 0;
      }

      .card-text { text-align: left; }
    }

    /* ── Touch device tap feedback ── */
    @media (hover: none) {
      .service-item:active {
        background: var(--bg-hover);
        border-color: var(--border-active);
        transform: scale(0.98);
      }
    }

    /* ── Fade-in on load ── */
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.6s ease forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-up:nth-child(1) { animation-delay: 0.05s; }
    .fade-up:nth-child(2) { animation-delay: 0.12s; }
    .fade-up:nth-child(3) { animation-delay: 0.20s; }
    .fade-up:nth-child(4) { animation-delay: 0.28s; }
    .fade-up:nth-child(5) { animation-delay: 0.36s; }

/* ── SERVICES ── */
.services {
  background: var(--light-bg);
  padding: 96px 5%;
  text-align: center;
}

.services h2 span {
  color: var(--indigo);
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 26px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px) translateX(3px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.13);
}

.sc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.07));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sc-icon i {
  font-size: 20px;
  color: var(--indigo);
  transition: var(--transition);
}

.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border-color: transparent;
  box-shadow: 0 6px 18px var(--indigo-glow);
}

.service-card:hover .sc-icon i {
  color: white;
}

.service-card h3 {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.sc-arrow {
  color: #cbd5e1;
  transition: var(--transition);
}

.service-card:hover .sc-arrow {
  color: var(--indigo);
  transform: translateX(4px) translateY(-2px);
}

/* ── FEATURES STRIP ─  ─ */
.features-strip {
  background: var(--navy2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 38px 5%;
  transition: var(--transition);
}

.strip-item:hover {
  background: rgba(99, 102, 241, 0.07);
}

.si-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.si-icon i {
  font-size: 22px;
  color: var(--indigo);
}

.strip-item:hover .si-icon {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border-color: transparent;
}

.strip-item:hover .si-icon i {
  color: white;
}

.si-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.si-text p {
  font-size: 13px;
  color: var(--muted);
}

.strip-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── MARQUEE ── */
.marquee {
  background: linear-gradient(90deg, var(--indigo), var(--violet), var(--indigo));
  background-size: 200% 100%;
  animation: gradientShift 6s linear infinite;
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-left: 100%;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-inner span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-inner i {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── STATS ── */
.stats {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 50%, #0d1f40 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats-bg1 {
  position: absolute;
  width: min(600px, 70vw);
  height: min(600px, 70vw);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 60%);
  border-radius: 50%;
  top: -50%;
  right: -10%;
  pointer-events: none;
}

.stats-bg2 {
  position: absolute;
  width: min(400px, 50vw);
  height: min(400px, 50vw);
  background: radial-gradient(circle, rgba(10, 78, 137, 0.2), transparent 60%);
  border-radius: 50%;
  bottom: -30%;
  left: -5%;
  pointer-events: none;
}

.stats-grid {
  max-width: 1200px;
  margin: auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon i {
  font-size: 20px;
  color: #a5b4fc;
}

.stat h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── FLOATING WHATSAPP ── */
.whatsapp {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #0f2027, #0a1628, #0d2540);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 80px 5% 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 260px;
}

.social-links a{
  display: inline-flex;
  gap: 10px;
}

.social-links a{
  width: 36px;
  height: 36px;
  background: 10gba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 81px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 11px;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.25s;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-text strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.hours-col h4 {
  border-left-color: var(--gold);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--white);
}

.hours-row .time {
  color: var(--green);
  font-weight: 600;
}

.hours-row .time.emergency {
  color: var(--gold);
}

.phone-support-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2), rgba(0, 100, 200, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--cyan);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.3s;
}

.phone-support-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

/* footer map col */
.footer-map-col h4 {
  border-left-color: var(--cyan);
}

.map-embed {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.direction-btn:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

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

.footer-logo {
  width: 120px;
  margin-bottom: 14px;
}

.footer-col h3 {
  color: #a78bfa;
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-col p {
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: #a78bfa;
}

.footer-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

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

.trust-icon {
  font-size: 16px;
}


/* =============================================
   RESPONSIVE — ≤ 1200px
============================================= */
@media (max-width: 1200px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }
}

/* =============================================
   RESPONSIVE — ≤ 1024px
============================================= */
@media (max-width: 1024px) {
  .hero-container {
    gap: 36px;
  }

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

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

  .coverage-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 5% 60px;
  }

  .coverage-left,
  .coverage-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .coverage-item {
    flex: 1 1 180px;
  }

  .coverage-center {
    order: -1;
  }

  .features-strip {
    flex-direction: column;
  }

  .strip-sep {
    width: 100%;
    height: 1px;
  }

  .strip-item {
    padding: 26px 5%;
  }
}

/* =============================================
   RESPONSIVE — ≤ 768px
============================================= */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
    padding-top: -2px;
    font-size: 10px;
    z-index: 1000;
  }

  .topbar-sep {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav#main-nav {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(8, 15, 34, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    z-index: 999;
  }

  nav#main-nav.open {
    display: block;
  }

  nav#main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 16px;
  }

  nav#main-nav ul li a {
    display: block;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 15px;
    border-radius: 0;
  }

  nav#main-nav ul li:last-child a {
    /* border-bottom: none; */
  }

  nav#main-nav a.nav-cta {
    margin: 10px 20px 0;
    border-radius: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 56px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    width: 92%;
    gap: 44px;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }

  .hero-right img {
    max-width: 220px;
    margin: auto;
  }

  .fc1 {
    width: 260px;
    height: 260px;
  }

  .fc2 {
    width: 350px;
    height: 350px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-pill {
    justify-content: center;
  }

  .features {
    padding: 64px 5%;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .advantages {
    padding: 64px 5%;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services {
    padding: 64px 5%;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .coverage-item {
    flex: 1 1 150px;
    padding: 13px 14px;
    font-size: 13px;
  }

  .ci-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 5%;
  }

  .stat {
    border: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-badges {
    gap: 16px;
    font-size: 12px;
  }

  .footer-links a {
    margin: 0 8px;
  }
}

/* =============================================
   RESPONSIVE — ≤ 480px
============================================= */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
    letter-spacing: -0.3px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hstat-line {
    width: 40px;
    height: 1px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

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

  .services-container {
    grid-template-columns: 1fr;
  }

  .coverage-item {
    flex: 1 1 100%;
  }

  .glass-box {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat h2 {
    font-size: 32px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .adv-pattern {
    display: none;
  }

  .navbar .container .logo h2 a {
    font-size: 0.75rem;
  }
}

/* =============================================
   RESPONSIVE — footer-main grid
   (added for full device coverage)
============================================= */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr 1.4fr;
  gap: 32px;
  padding: 60px 5% 40px;
  max-width: 1400px;
  margin: auto;
  box-sizing: border-box;
}

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

  .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 5% 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand,
  .footer-map-col {
    grid-column: span 1;
  }

  .footer-trust {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 5%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* =============================================
   RESPONSIVE — hero-stats wrapping
============================================= */
@media (max-width: 380px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hstat-line {
    display: none;
  }

  .hstat {
    flex: 1 1 40%;
    text-align: center;
  }

  .hero h1 {
    font-size: 22px;
  }
}

/* =============================================
   Touch targets — min 44px tap areas on mobile
============================================= */
@media (max-width: 768px) {
  nav#main-nav ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 44px;
  }

  .hamburger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
}