/* MegaOne Public Site — mobile-first, brand: #070b12 + #ef4444 */

:root {
  --background: #070b12;
  --foreground: #f1f5f9;
  --card: #0f1623;
  --brand: #ef4444;
  --brand-dark: #dc2626;
  --brand-soft: rgba(239, 68, 68, 0.12);
  --border: #1e293b;
  --muted: #94a3b8;
  --success: #22c55e;
  --radius: 0.875rem;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --header-h: 4rem;
  --header-offset: 4rem;
  --font: "Tajawal", system-ui, sans-serif;
  --container: 72rem;
  --gutter: 1rem;
  --section-y: 2.75rem;
  --touch-min: 2.75rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  hanging-punctuation: first last;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  font-size: 0.9375rem;
  overflow-x: clip;
  overflow-wrap: break-word;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: #fca5a5; }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - (var(--gutter) * 2), 40rem);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  inset-inline-start: var(--gutter);
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 0.5rem;
}

.skip-link:focus { top: calc(var(--safe-top) + 0.75rem); }

/* Header — mobile drawer nav by default */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 120;
  padding-top: var(--safe-top);
  background: rgba(2, 6, 23, 0.96);
  border-bottom: 1px solid var(--border);
}

.site-header {
  display: contents;
}

.header-layout {
  display: block;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.logo-link { flex-shrink: 0; min-width: 0; }

.logo-img {
  height: 2rem;
  width: auto;
  max-width: min(42vw, 9.5rem);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.625rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--foreground);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset-inline: 0;
  top: var(--header-offset);
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 115;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: rgba(2, 6, 23, 0.99);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-nav-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 1rem var(--gutter) calc(1.25rem + var(--safe-bottom));
  padding-inline: max(var(--gutter), var(--safe-right)) max(var(--gutter), var(--safe-left));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-backdrop {
  position: fixed;
  inset-inline: 0;
  top: var(--header-offset);
  bottom: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-backdrop.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.75rem 1rem;
  color: var(--muted);
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}

.nav-list a.active { color: var(--brand); }

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.nav-actions .btn { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  padding: 0.75rem 1.125rem;
  border-radius: 0.625rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover { background: var(--brand-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: rgba(239, 68, 68, 0.5);
  color: var(--brand);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #020617 0%, #0f172a 50%, var(--background) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(239, 68, 68, 0.14), transparent 72%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #fca5a5;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
  text-align: center;
}

.hero h1 {
  margin: 0 0 0.875rem;
  font-size: clamp(1.625rem, 7vw, 3.25rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  margin: 0 0 0.875rem;
  font-size: clamp(1rem, 4.5vw, 1.5rem);
  color: var(--brand);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-desc {
  margin: 0 auto 1.5rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
}

.hero-actions .btn { width: 100%; }

/* Page hero */
.page-hero {
  padding: 2rem 0 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #0f172a, var(--background));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.page-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* Sections */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--card); }

.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-header h2,
.section h2 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.375rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.section-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Verify CTA */
.verify-section { background: var(--card); }

.verify-cta { text-align: center; }

.verify-btn {
  width: 100%;
  margin-top: 1.25rem;
}

.verify-note {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Services */
.services-grid,
.services-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.service-card h2,
.service-card h3 {
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-size: 1.0625rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.service-card-lg .service-image {
  width: 100%;
  max-width: 17.5rem;
  height: auto;
  margin: 0 auto 1rem;
}

/* PPF packages */
.ppf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.ppf-card {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}

.ppf-card img {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto 0.875rem;
  height: auto;
}

.ppf-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.ppf-breakdown {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  text-align: center;
}

.ppf-breakdown h3 {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--muted);
}

.ppf-breakdown img {
  width: 100%;
  max-width: 40rem;
  height: auto;
  margin-inline: auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  text-align: center;
}

.feature-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.375rem;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.875rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-info-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.contact-info-card h2 {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  color: var(--brand);
}

.contact-info-card p {
  margin: 0 0 0.375rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-info-card p:last-child { margin-bottom: 0; }

.social-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

.social-bar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.875rem;
}

.social-bar-link svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(15, 22, 35, 1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.cta-banner h2 {
  margin: 0 0 0.375rem;
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.cta-banner-actions .btn,
.cta-banner-inner > .btn {
  width: 100%;
}

/* Prose / policy */
.prose {
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.prose h2 {
  margin: 1.75rem 0 0.875rem;
  font-size: clamp(1.125rem, 4vw, 1.375rem);
  color: var(--foreground);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.prose p:last-child { margin-bottom: 0; }

.prose li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  margin-bottom: 0.5rem;
}

.prose li:last-child { margin-bottom: 0; }

.prose ol,
.prose ul {
  padding-inline-start: 1.25rem;
  padding-inline-end: 0;
  margin: 0.75rem 0 1rem;
}

.prose a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.prose-link-wrap {
  margin-top: 0.75rem !important;
}

.prose-link {
  display: inline-block;
  max-width: 100%;
  line-height: 1.5;
}

.about-intro {
  font-size: 1rem;
  line-height: 1.8;
}

.about-list li {
  padding-inline-start: 0.25rem;
}

.about-values-grid .feature-card {
  text-align: start;
}

@media (min-width: 768px) {
  .about-values-grid .feature-card {
    text-align: center;
  }
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.prose blockquote {
  margin: 0.875rem 0;
  padding: 0.875rem 1rem;
  border-right: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 0.5rem 0.5rem 0;
}

.prose blockquote p {
  margin: 0;
  color: var(--foreground);
}

.policy-contact {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background: #020617;
  border-top: 1px solid var(--border);
  padding: 2.25rem 0 calc(1.25rem + var(--safe-bottom));
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  text-align: start;
}

.footer-logo {
  margin-bottom: 0.625rem;
  height: 2rem;
  width: auto;
}

.footer-tagline {
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 0.375rem;
}

.footer-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.footer-links h3 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

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

.footer-links li { margin-bottom: 0.375rem; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.social-icons svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-social-list li { margin-bottom: 0.25rem; }

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-meta {
  font-family: ui-monospace, monospace;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: calc(1rem + var(--safe-bottom));
  left: calc(1rem + var(--safe-left));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float svg {
  width: 1.625rem;
  height: 1.625rem;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ── Tablet (640px+) ── */
@media (min-width: 640px) {
  :root {
    --gutter: 1.25rem;
    --section-y: 3.25rem;
  }

  body { font-size: 1rem; }

  .hero { padding: 3.25rem 0 4rem; }
  .hero-desc { font-size: 1.0625rem; }
  .page-lead { font-size: 1.0625rem; }
  .section-lead { font-size: 1.0625rem; }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .hero-actions .btn { width: auto; white-space: nowrap; }

  .verify-btn { width: auto; min-width: 14rem; white-space: nowrap; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .social-bar { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-banner-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .cta-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-banner-actions .btn,
  .cta-banner-inner > .btn {
    width: auto;
  }

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

/* ── Large tablet (768px+) ── */
@media (min-width: 768px) {
  :root {
    --section-y: 3.75rem;
    --header-h: 4.5rem;
  }

  .logo-img { height: 2.5rem; max-width: none; }

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

  .service-card,
  .feature-card,
  .ppf-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .service-card h2,
  .service-card h3 { font-size: 1.125rem; }

  .service-card p,
  .feature-card p { font-size: 0.9375rem; }
}

/* ── Desktop (1024px+) ── */
@media (min-width: 1024px) {
  :root {
    --gutter: 1.5rem;
    --section-y: 4rem;
  }

  .site-header-wrap {
    padding-top: var(--safe-top);
  }

  .header-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1.25rem;
  }

  .header-bar {
    min-height: auto;
    flex-shrink: 0;
  }

  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    inset: auto;
    width: auto;
    max-width: none;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .site-nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex: 1;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
  }

  .nav-list a {
    min-height: auto;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
  }

  .nav-actions {
    flex-direction: row;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-shrink: 0;
  }

  .nav-actions .btn {
    width: auto;
    white-space: nowrap;
  }

  .nav-backdrop {
    display: none !important;
  }

  body.nav-open { overflow: auto; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid-full { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .social-bar { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }

  .service-card:hover {
    transform: translateY(-2px);
    border-color: #334155;
  }

  .contact-link:hover {
    border-color: rgba(239, 68, 68, 0.4);
    color: var(--brand);
    transform: translateY(-1px);
  }
}

/* ── Wide (1280px+) ── */
@media (min-width: 1280px) {
  .hero { padding: 4rem 0 5rem; }
  .page-hero { padding: 3rem 0 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
