/* CSS Variables & Reset */
:root {
  --primary: #2ecc71;
  --primary-dark: #27ae60;
  --secondary: #e67e22;
  --accent: #2c3e50;

  --dark: #1a1a1a;
  --gray: #666666;
  --light: #f8f9fa;
  --white: #ffffff;

  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);

  --radius: 12px;
  --container: 1200px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

h1,
h2,
h3,
h4,
.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}
.mb-3 {
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-sm {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--light);
  color: var(--dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: var(--light);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-header p {
  color: var(--gray);
  font-size: 18px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  will-change: padding, box-shadow;
  transform: translateZ(0); /* promote to own GPU compositing layer */
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.99);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo — Ashoka Chakra SVG 'O' + Tricolor */
.logo-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  gap: 5px;
}

.logo-main {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

/* The Ashoka Chakra SVG — outer circle IS the letter O */
.chakra-o {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.chakra-svg {
  width: 1em;
  height: 1em;
  display: block;
}

/* "nStore18.in" — saffron top → green bottom, no white band */
.logo-word {
  background: linear-gradient(
    to bottom,
    #d84800 0%,
    #ff8800 38%,
    #129e12 62%,
    #0a6b0a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  font-weight: 900;
}

/* 3-stripe tricolor bar — represents all three flag colors clearly */
.logo-tricolor-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    to right,
    #ff9933 33.33%,
    #e0e0e0 33.33%,
    #e0e0e0 66.66%,
    #138808 66.66%
  );
  border-radius: 3px;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.09);
}

.logo-slogan {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* color: #aaa; */
  color: #434343;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  font-size: 15px;
}

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

.mobile-toggle {
  display: none;
}

/* Hero — Full Background Image */
.hero {
  min-height: 91vh;
  background: url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=1920")
    center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  /* background-attachment:fixed removed — forces full repaint on every scroll frame,
     causing visual lag. Sections still cover this image naturally as they scroll over. */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 8, 24, 0.88) 0%,
    rgba(8, 8, 24, 0.65) 50%,
    rgba(8, 8, 24, 0.25) 100%
  );
}

.hero-content {
  display: block;
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.hero-text {
  max-width: 600px;
  color: var(--white);
}

.hero-badge {
  background: rgba(255, 153, 51, 0.18);
  color: #ffb84d;
  border: 1px solid rgba(255, 153, 51, 0.4);
}

.hero-text h1 {
  font-size: 62px;
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -2px;
  color: var(--white);
}

/* Stats list — 2-col grid */
.hero-stats {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin-bottom: 44px;
}

.hero-stats li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stats li svg {
  width: 22px;
  height: 22px;
  color: #ff9933;
  flex-shrink: 0;
}

.hero-stats li div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-stats li strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}

.hero-stats li span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

/* Visit Now button — saffron/Indian orange */
.btn-hero {
  background: linear-gradient(135deg, #ff9933 0%, #e67e22 100%);
  color: var(--white);
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(255, 153, 51, 0.45);
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 153, 51, 0.55);
}

/* Grocery Section */
.grocery-section {
  background: linear-gradient(135deg, #1e8449, #145a32); /* Deeper Green */
  color: var(--white);
  padding: 120px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.grocery-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.grocery-content {
  max-width: 650px;
}

.section-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 24px;
}

.grocery-content h2 {
  font-size: 56px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.grocery-content p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 48px;
  line-height: 1.7;
}

.features-list {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.feature-text {
  display: flex;
  flex-direction: column;
}
.feature-text strong {
  font-size: 16px;
}
.feature-text span {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
}

/* Delivery Visual Widget (New) */
.grocery-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px;
  width: 320px;
  color: var(--dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse 2s infinite;
}

.map-visual {
  height: 100px;
  background: #f0f3f5;
  border-radius: 16px;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #dde1e5;
  border-radius: 4px;
}

.bike-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: drive 4s linear infinite;
}
.bike-icon svg {
  width: 16px;
  height: 16px;
}

.dest-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary);
}

.card-info {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}
.card-info strong {
  font-size: 18px;
  display: block;
}
.card-info p {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.driver-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.driver-avatar {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.driver-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
}
.rating svg {
  width: 14px;
  height: 14px;
  fill: #f1c40f;
  color: #f1c40f;
}

.float-item {
  position: absolute;
  font-size: 40px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  z-index: 1;
  will-change: transform;
}
.item-1 {
  top: -20px;
  right: -20px;
  animation: float 5s ease-in-out infinite 0.5s;
}
.item-2 {
  bottom: 20px;
  left: -30px;
  animation: float 7s ease-in-out infinite 1s;
}
.item-3 {
  top: 40%;
  right: -40px;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

@keyframes drive {
  0% {
    left: 20px;
  }
  50% {
    left: 60%;
  }
  100% {
    left: 20px;
  }
}

/* Services Section — icon badge at top of each card */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-dark);
}

/* ISP / Services Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.plan-card {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--light);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.plan-card.popular {
  border-color: var(--secondary);
  background: linear-gradient(to bottom, #fffcf8, #fff);
}

.tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  font-size: 56px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 32px;
  letter-spacing: -2px;
}
.price span {
  font-size: 18px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray);
  font-size: 16px;
}
.features li svg {
  color: var(--primary);
}
.plan-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Why Us Grid */
.why-us {
  background: var(--light);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.feature-card i {
  color: var(--secondary);
  margin-bottom: 24px;
  width: 40px;
  height: 40px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Testimonials */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.review-card {
  padding: 40px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--light);
}
.review-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.stars {
  color: #f1c40f;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.review-card p {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}
.user-info strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
}
.user-info span {
  color: var(--gray);
  font-size: 14px;
}

/* About */
.about-section {
  background: var(--white);
}
.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: 48px;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat {
  background: var(--light);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
}
.stat h3 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 800;
}
.stat p {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  padding: 140px 0;
  background: var(--accent);
  background-image:
    linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url("https://images.unsplash.com/photo-1550989460-0adf9ea622e2?auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--white);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: 56px;
  margin-bottom: 24px;
}
.cta-box p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr; /* 4 Columns */
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .logo-brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand .logo-main {
  font-size: 30px;
}
.footer-brand p {
  color: var(--gray);
  max-width: 300px;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}
.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  margin-bottom: 24px;
  font-size: 18px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--gray);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 14px;
}
.contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: var(--gray);
  padding-top: 40px;
  border-top: 1px solid var(--light);
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero-text h1 {
    font-size: 48px;
  }
  .section-header h2 {
    font-size: 34px;
  }
  .grocery-content h2 {
    font-size: 40px;
  }
  .grocery-content p {
    font-size: 18px;
  }
  .cta-box h2 {
    font-size: 40px;
  }
  .cta-box p {
    font-size: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }
  .store-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
    cursor: pointer;
    color: var(--dark);
    transform: scale(1.2);
  }

  .hero {
    min-height: 100svh;
    align-items: flex-start;
    background-attachment: scroll; /* fixed bg unsupported on most mobile browsers */
  }
  .hero-content {
    padding: 48px 24px 60px;
  }
  .hero-text h1 {
    font-size: 36px;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }
  .hero-stats li strong {
    font-size: 22px;
  }

  .grocery-section {
    padding: 80px 0;
  }
  .grocery-container {
    grid-template-columns: 1fr;
  }
  .grocery-content {
    padding: 0 24px;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }
  .grocery-visual {
    display: none;
  } /* Hide complicated visual on mobile for speed/space, or adjust */

  .features-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .feature-item {
    width: 100%;
    max-width: 280px;
    justify-content: flex-start;
  }
  .feature-text strong {
    font-size: 15px;
  }
  .feature-text span {
    font-size: 13px;
  }

  /* ── Grocery section text ── */
  .grocery-content h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .grocery-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .section-tag {
    font-size: 11px;
    margin-bottom: 16px;
  }

  /* ── Section headers (all sections, global) ── */
  .section-header {
    margin-bottom: 36px;
  }
  .section-header h2 {
    font-size: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  .section-header p {
    font-size: 15px;
  }

  /* ── Why Choose Us ── */
  .why-us {
    padding: 64px 0;
  }
  .grid-4 {
    gap: 14px;
  }
  .feature-card {
    padding: 24px 20px;
  }
  .feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .feature-card i {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
  }

  /* ── Broadband Plans ── */
  .isp-section {
    padding: 64px 0;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-card {
    padding: 28px 24px;
  }
  .plan-card.popular {
    order: -1; /* Most Popular card shown first on mobile */
  }
  .price {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .features li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* ── Testimonials ── */
  .testimonials {
    padding: 64px 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .review-card {
    padding: 24px;
  }
  .review-card p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .stars {
    font-size: 14px;
    margin-bottom: 14px;
  }

  /* ── About / Building a Connected Community ── */
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-section {
    padding: 64px 0;
  }
  .about-text h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .about-text p {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
  }
  .stat {
    padding: 20px 14px;
    border-radius: 14px;
  }
  .stat h3 {
    font-size: 30px;
    margin-bottom: 4px;
  }
  .stat p {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* ── CTA — Ready to get started ── */
  .cta-section {
    padding: 80px 0;
  }
  .cta-box {
    padding: 0 24px;
  }
  .cta-box h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .cta-box p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand p {
    font-size: 14px;
    margin: 0 auto 20px;
  }
  .footer-links h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .social-links {
    justify-content: center;
  }
  .contact-list li {
    justify-content: center;
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 13px;
    padding-top: 28px;
  }
}

/* ── Extra-small phones (≤480px) ── */
@media (max-width: 480px) {
  body {
    padding-top: 66px;
  }

  /* ── Navbar ── */
  .logo-main {
    font-size: 20px;
  }
  .logo-slogan {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  /* ── Hero ── */
  .hero-text h1 {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .hero-stats li strong {
    font-size: 20px;
  }
  .hero-stats li span {
    font-size: 13px;
  }
  .btn-hero {
    font-size: 14px;
    padding: 12px 28px;
  }

  /* ── Section headers (global) ── */
  .section-header {
    margin-bottom: 28px;
  }
  .section-header h2 {
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }
  .section-header p {
    font-size: 14px;
  }

  /* ── Grocery section ── */
  .grocery-section {
    padding: 60px 0;
  }
  .section-tag {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .grocery-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .grocery-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .feature-text strong {
    font-size: 14px;
  }
  .feature-text span {
    font-size: 12px;
  }
  .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  /* ── Why Choose Us ── */
  .why-us {
    padding: 56px 0;
  }
  .feature-card {
    padding: 20px 16px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 13px;
  }

  /* ── Broadband Plans ── */
  .isp-section {
    padding: 56px 0;
  }
  .plan-card {
    padding: 22px 18px;
  }
  .plan-card h3 {
    font-size: 18px;
  }
  .price {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .features li {
    font-size: 13px;
  }

  /* ── Testimonials ── */
  .testimonials {
    padding: 56px 0;
  }
  .review-card {
    padding: 20px 16px;
  }
  .review-card p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .user-info strong {
    font-size: 14px;
  }
  .user-info span {
    font-size: 13px;
  }

  /* ── About ── */
  .about-section {
    padding: 56px 0;
  }
  .about-text h2 {
    font-size: 22px;
  }
  .about-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .about-stats {
    gap: 10px;
  }
  .stat {
    padding: 16px 10px;
  }
  .stat h3 {
    font-size: 26px;
  }
  .stat p {
    font-size: 10px;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 60px 0;
  }
  .cta-box h2 {
    font-size: 24px;
  }
  .cta-box p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  /* ── Footer ── */
  .footer-links h4 {
    font-size: 14px;
  }
  .footer-links a {
    font-size: 13px;
  }
  .contact-list li {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
