/* ===================================================
   NELLORE ELECTRONICS — COMING SOON PAGE
   Cinematic White · Professional · Premium
=================================================== */

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

:root {
  /* ── Palette ── */
  --white:         #FFFFFF;
  --off-white:     #F8F8F8;
  --light-grey:    #F2F2F2;
  --mid-grey:      #D0D0D0;
  --cool-grey:     #9A9A9A;
  --dark-grey:     #3D3D3D;
  --charcoal:      #1A1A1A;
  --black:         #0A0A0A;

  /* ── Accent (single pop of identity) ── */
  --accent:        #1A1A1A;
  --accent-light:  #3D3D3D;

  /* ── Semantic ── */
  --bg:            #FFFFFF;
  --bg-section:    #F8F8F8;
  --border:        rgba(0, 0, 0, 0.08);
  --border-dark:   rgba(0, 0, 0, 0.14);
  --text-primary:  #0A0A0A;
  --text-secondary:#3D3D3D;
  --text-muted:    #9A9A9A;
  --text-faint:    #C5C5C5;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ── SUBTLE TEXTURE / GRID ────────────────────── */

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}

/* Soft cinematic vignette at edges */
.bg-grid::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 60%, rgba(240,240,240,0.6) 100%);
  pointer-events: none;
}

/* Subtle warm orbs (very light) */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite alternate;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.35) 0%, transparent 70%);
  top: -200px;
  left: -150px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(210, 210, 210, 0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: -6s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 220, 220, 0.2) 0%, transparent 70%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -11s;
}

@keyframes orbFloat {
  0%   { transform: translate(0,  0)   scale(1);    }
  33%  { transform: translate(25px, -35px) scale(1.04); }
  66%  { transform: translate(-18px, 28px) scale(0.96); }
  100% { transform: translate(18px, 18px) scale(1.02); }
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── LAYOUT ───────────────────────────────────── */

.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

/* ── HEADER ───────────────────────────────────── */

.site-header {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  animation: fadeDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* ── LOGO ─────────────────────────────────────── */

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

/* Container that holds either the <img> or the SVG fallback */
.logo-image-box {
  width: 220px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.logo-image-box:hover {
  transform: scale(1.03);
  opacity: 0.82;
}

/* Actual logo image — replace src in HTML */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* SVG fallback shown when no image is provided */
.logo-svg-fallback {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Center tagline in header */
.header-center-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cool-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tag-dot {
  color: var(--mid-grey);
  font-size: 1rem;
}

/* Badge */
.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.4px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2D9E6B;
  box-shadow: 0 0 0 0 rgba(45, 158, 107, 0.5);
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(45, 158, 107, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(45, 158, 107, 0); }
  100% { box-shadow: 0 0 0 0   rgba(45, 158, 107, 0); }
}

/* ── DIVIDER LINE ─────────────────────────────── */

.header-rule {
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background: var(--border);
  margin-bottom: 0;
}

/* ── HERO ─────────────────────────────────────── */

.hero {
  flex: 1;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 0 52px;
  gap: 30px;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

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

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-grey);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-grey);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.eyebrow-icon { font-size: 0.85rem; }

/* Hero titles — 3-line structure */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
}

/* "Nellore's" */
.title-sub {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--cool-grey);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* "Trusted" — big impact word */
.title-main {
  display: block;
  font-size: clamp(3.6rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -4px;
  line-height: 0.92;
}

/* "Electronics Store" */
.title-label {
  display: block;
  font-size: clamp(1.1rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--dark-grey);
  letter-spacing: -0.5px;
  margin-top: 6px;
}

/* Italic brand tagline */
.hero-tagline {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--dark-grey);
  letter-spacing: 0.2px;
}

/* Pill row — Best Brands | Best Prices | Best Service */
.hero-pillrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pill-sep {
  color: var(--mid-grey);
  font-weight: 300;
  font-size: 1rem;
}

/* ── COUNTDOWN ───────────────────────────────── */

.countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  min-width: 92px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Thin top accent line */
.countdown-unit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--charcoal);
  opacity: 0.08;
}

.countdown-unit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.countdown-num {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: all 0.25s ease;
}

.countdown-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--cool-grey);
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 300;
  color: var(--mid-grey);
  margin-bottom: 22px;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.num-flip {
  animation: numFlip 0.28s ease;
}

@keyframes numFlip {
  0%   { transform: rotateX(0deg);   }
  45%  { transform: rotateX(-18deg); opacity: 0.5; }
  100% { transform: rotateX(0deg);   }
}

/* ── SUBSCRIBE ───────────────────────────────── */

.subscribe-wrap {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.subscribe-label {
  font-size: 0.85rem;
  color: var(--cool-grey);
  font-weight: 400;
}

.subscribe-form {
  display: flex;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 5px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.subscribe-form:focus-within {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(0,0,0,0.06);
}

.input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.input-icon {
  width: 17px;
  height: 17px;
  color: var(--mid-grey);
  flex-shrink: 0;
  stroke: var(--mid-grey);
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-primary);
  min-width: 0;
}

.email-input::placeholder { color: var(--text-faint); }

.subscribe-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border: none;
  border-radius: var(--radius-full);
  padding: 13px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  letter-spacing: 0.2px;
}

.subscribe-btn:hover {
  background: var(--charcoal);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
}

.subscribe-btn:active { transform: scale(0.98); }

.btn-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.subscribe-btn:hover .btn-arrow { transform: translateX(3px); }

.subscribe-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-grey);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-grey);
  width: 100%;
  animation: fadeUp 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.subscribe-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #2D9E6B;
}

/* ── SERVICES SECTION ────────────────────────── */

.services-section {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--charcoal);
  opacity: 0.06;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  background: var(--black);
  border-color: var(--black);
}

.service-card.featured .service-title,
.service-card.featured .service-sub,
.service-card.featured .service-list li {
  color: var(--white);
}

.service-card.featured .service-sub {
  opacity: 0.65;
}

.service-card.featured .service-list li::before {
  background: var(--white);
  opacity: 0.5;
}

.service-card.featured::before {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: grayscale(0.3);
}

.service-card.featured .service-icon {
  filter: none;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
}

.service-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cool-grey);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-list li {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dark-grey);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: 0.35;
}

/* ── FEATURES STRIP ──────────────────────────── */

.features-strip {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 44px;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  flex: 1;
  min-width: 180px;
  transition: background 0.25s ease;
  border-radius: var(--radius-lg);
  cursor: default;
}

.feature-item:hover { background: var(--off-white); }

.feature-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.75;
}

.feature-text { display: flex; flex-direction: column; gap: 2px; }

.feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.feature-sub {
  font-size: 0.73rem;
  color: var(--cool-grey);
  font-weight: 400;
}

.feature-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ── FOOTER ──────────────────────────────────── */

.site-footer {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 0 52px;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

/* WhatsApp CTA bar */
.wa-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid rgba(18, 140, 126, 0.25);
  border-radius: var(--radius-xl);
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(18,140,126,0.08);
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 100%;
  max-width: 640px;
}

.wa-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #128C7E;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wa-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: color 0.2s ease;
}

.wa-num:hover { color: #128C7E; }

.wa-num-sep {
  color: var(--mid-grey);
  font-weight: 300;
  font-size: 1.1rem;
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 8px;
}

.footer-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-dark);
  background: var(--white);
  color: var(--dark-grey);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  letter-spacing: 0.1px;
}

.social-btn svg { width: 17px; height: 17px; }

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--off-white);
}

.social-btn.website { color: var(--dark-grey); }
.social-btn.website:hover { background: var(--off-white); box-shadow: var(--shadow-md); }

/* Footer links row */
.footer-links-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── RESPONSIVE UPDATES ──────────────────────── */

.social-btn.instagram { color: #C13584; border-color: rgba(193,53,132,0.2); }
.social-btn.instagram:hover { background: #fff5f9; box-shadow: 0 6px 24px rgba(193,53,132,0.14); }

.social-btn.whatsapp  { color: #128C7E; border-color: rgba(18,140,126,0.2); }
.social-btn.whatsapp:hover  { background: #f2fdf9; box-shadow: 0 6px 24px rgba(18,140,126,0.14); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.footer-credit {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}

.credit-heart {
  font-size: 0.8rem;
  display: inline-block;
  animation: heartbeat 1.6s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.25); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.18); }
  56%       { transform: scale(1); }
}

.credit-link {
  color: var(--dark-grey);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.credit-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}

.credit-link:hover { color: var(--black); }
.credit-link:hover::after { width: 100%; }

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 28px 0;
  }

  .hero { padding: 36px 0 40px; gap: 22px; }

  .title-line,
  .title-gradient {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    letter-spacing: -2px;
  }

  .countdown { gap: 5px; }

  .countdown-unit {
    padding: 14px 14px;
    min-width: 72px;
  }

  .countdown-sep { font-size: 1.4rem; margin-bottom: 16px; }

  .subscribe-form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    gap: 8px;
  }

  .input-wrap { padding: 12px 16px; }

  .subscribe-btn {
    justify-content: center;
    border-radius: var(--radius-md);
  }

  .features-strip {
    flex-direction: column;
    gap: 2px;
    padding: 16px 20px;
  }

  .feature-divider { width: 100%; height: 1px; }

  .feature-item { padding: 10px 12px; min-width: unset; width: 100%; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .site-header { flex-wrap: wrap; gap: 12px; }
  .header-center-tagline { display: none; }
  .wa-cta-row { flex-direction: column; gap: 10px; padding: 16px 20px; }
  .wa-numbers { flex-direction: column; gap: 4px; }
  .wa-num-sep { display: none; }
  .footer-links-row { flex-direction: column; align-items: center; }
  .social-btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .title-main { font-size: clamp(3rem, 15vw, 4rem); letter-spacing: -2px; }
  .social-btn { max-width: 260px; }
}
