/* Delvina Cable — modern ISP landing page */

:root {
  --bg: #06111f;
  --bg-elevated: #0c1a2e;
  --bg-card: rgba(14, 28, 48, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eef7;
  --text-muted: #8fa3be;
  --accent: #00c8ff;
  --accent-2: #3d7dff;
  --accent-warm: #ff7a45;
  --gradient: linear-gradient(135deg, #00c8ff 0%, #3d7dff 55%, #7b61ff 100%);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 76px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; }

/* Typography */
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-head p:last-child {
  margin: 0;
  color: var(--text-muted);
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #04101f;
  box-shadow: 0 12px 30px rgba(0, 200, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(0, 200, 255, 0.35); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn-lg { padding: 0.95rem 1.5rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled {
  background: rgba(6, 17, 31, 0.82);
  backdrop-filter: blur(14px);
  border-color: var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 200, 255, 0.2);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
}
.brand-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}
.site-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--text); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero-glow--1 {
  width: 420px; height: 420px;
  top: 10%; left: -5%;
  background: #00c8ff;
}
.hero-glow--2 {
  width: 360px; height: 360px;
  bottom: 5%; right: -5%;
  background: #3d7dff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.signal-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.signal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.signal-speed {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.speed-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.speed-unit {
  font-size: 1.25rem;
  color: var(--text-muted);
}
.signal-label {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}
.signal-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: var(--gradient);
  opacity: 0.85;
  animation: bar-rise 1.2s var(--ease) both;
}
.signal-bars span:nth-child(2) { animation-delay: 0.1s; }
.signal-bars span:nth-child(3) { animation-delay: 0.2s; }
.signal-bars span:nth-child(4) { animation-delay: 0.3s; }
.signal-bars span:nth-child(5) { animation-delay: 0.4s; }
@keyframes bar-rise {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(8, 20, 36, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.hero-float strong { display: block; font-size: 0.9rem; }
.hero-float span { font-size: 0.78rem; color: var(--text-muted); }
.hero-float svg { color: var(--accent); flex-shrink: 0; }
.hero-float--tv { top: 8%; right: -4%; animation-delay: -1s; }
.hero-float--fiber { bottom: 12%; left: -6%; animation-delay: -2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Services */
.services { background: linear-gradient(180deg, transparent, rgba(12,26,46,0.5)); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 255, 0.25);
}
.service-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* Pricing */
.pricing--alt {
  background: rgba(12, 26, 46, 0.35);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pricing-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

.package-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.package-card:hover { transform: translateY(-4px); }
.package-card.is-featured {
  border-color: rgba(0, 200, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 200, 255, 0.15), var(--shadow);
}
.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #04101f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.package-speed {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.package-price {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.package-price small {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.package-features {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}
.package-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.package-card .btn { margin-top: auto; }

.pricing-note {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Fiber */
.fiber-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fiber-list {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}
.fiber-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}
.fiber-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.fiber-diagram {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}
.fiber-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.25);
  font-weight: 700;
  font-size: 0.85rem;
}
.fiber-node--olt {
  background: var(--gradient);
  color: #04101f;
  border: none;
}
.fiber-line {
  width: 2px;
  height: 36px;
  margin: 0.5rem auto;
  background: linear-gradient(var(--accent), var(--accent-2));
}
.fiber-split {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.fiber-diagram > p {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Western Union */
.wu {
  background: linear-gradient(135deg, rgba(255, 122, 69, 0.08), rgba(255, 200, 0, 0.05));
}
.wu-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.wu-badge {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #ffdd00;
  color: #1a1a1a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  margin-bottom: 1rem;
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-list a {
  color: var(--accent);
  font-weight: 600;
}
.contact-list a:hover { text-decoration: underline; }

.contact-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-btn {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.08); }

.contact-form {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 0.25rem; }
.form-hint {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.12);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}
.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}
.form-status.is-success { color: #4ade80; }
.form-status.is-error { color: #f87171; }

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.3) contrast(1.05);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem 2rem;
  align-items: start;
}
.footer-brand p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--text); }
.footer-access {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 52ch;
}
.footer-access a {
  color: var(--accent);
  font-weight: 600;
}
.footer-access a:hover { text-decoration: underline; }

/* Faqe përmbajtjeje (aksesibiliteti) */
.page-main {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  min-height: 70vh;
}
.page-content {
  max-width: 720px;
}
.page-content--wide {
  max-width: 960px;
}
.speedtest-wrap {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th,
.data-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* Kontrata — print */
.contract-page .contract-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  color: #1a1a2e;
  border-radius: var(--radius);
  line-height: 1.65;
  font-size: 0.92rem;
}
.contract-doc h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
  color: #0a2540;
  text-transform: uppercase;
}
.contract-doc p {
  margin: 0 0 0.85rem;
  text-align: justify;
}
.no-print { flex-shrink: 0; }
@media print {
  .site-header, .site-footer, .skip-link, .no-print, .whatsapp-fab { display: none !important; }
  .page-main { padding-top: 0; }
  .contract-doc { box-shadow: none; border-radius: 0; padding: 0; }
  body { background: #fff; }
}
.page-content h1 {
  margin-bottom: 1rem;
}
.page-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.content-block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.content-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.content-block p {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.content-block p:last-child { margin-bottom: 0; }
.content-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}
.content-list li { margin-bottom: 0.5rem; }
.content-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem !important;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}
.footer-copy {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2147483640;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.06); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner,
  .fiber-inner,
  .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 300px; max-width: 480px; margin: 0 auto; }
  .hero-float--tv { right: 0; }
  .hero-float--fiber { left: 0; }
}

@media (max-width: 768px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(6, 17, 31, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .service-grid,
  .pricing-grid,
  .pricing-grid--compact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .wu-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
