/* InfoTech.ma — Dark premium (style ON Dima / IPTV Pro) · rouge + orange */
:root {
  --bg: #0a0612;
  --bg-2: #120b1c;
  --bg-3: #1a1228;
  --surface: rgba(28, 18, 42, 0.75);
  --line: rgba(167, 139, 250, 0.18);
  --text: #ffffff;
  --muted: #a1a1b5;
  --accent: #e11d2e;
  --accent-deep: #b81422;
  --accent-soft: rgba(225, 29, 46, 0.15);
  --orange: #ff6b00;
  --orange-deep: #c2410c;
  --orange-btn: #c2410c;
  --purple-glow: rgba(124, 58, 237, 0.35);
  --warn: #fbbf24;
  --wa: #25d366;
  --wa-btn: #0f8a45;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 520px at 70% 15%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(700px 400px at 10% 40%, rgba(225, 29, 46, 0.08), transparent 50%),
    linear-gradient(180deg, #0a0612 0%, #0d0818 50%, #0a0612 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 961px) {
  body {
    background-attachment: fixed;
  }
}

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

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: #ff8a33;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--text);
  font-weight: 800;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  background: rgba(10, 6, 18, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
}

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

.nav a[aria-current="page"] {
  color: var(--text);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch a,
.lang-switch span {
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.lang-switch .active {
  background: rgba(255, 107, 0, 0.15);
  color: var(--orange);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  background: var(--wa-btn) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 8px 24px rgba(15, 138, 69, 0.4);
}

.nav-cta:hover {
  background: #0c7339 !important;
  color: #ffffff !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta-alt {
  display: inline-flex !important;
  align-items: center;
  background: var(--orange-btn) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius-pill) !important;
}

.nav-cta-alt:hover {
  background: #9a3412 !important;
  color: #fff !important;
}

.nav-cta-alt::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, filter 0.2s;
  text-decoration: none;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.35);
}

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

.btn-orange {
  background: var(--orange-btn);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194, 65, 12, 0.35);
}

.btn-orange:hover {
  background: #9a3412;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

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

.btn-wa {
  background: var(--wa-btn);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 138, 69, 0.35);
}

.btn-wa:hover {
  background: #0c7339;
  color: #ffffff;
  filter: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero 2-col */
.hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-content {
  max-width: 620px;
  animation: rise 0.85s ease both;
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.brand-kicker {
  display: none;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  margin-bottom: 0.65rem;
  color: #fff;
}

.hero-highlight {
  color: var(--orange);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.hero .lead {
  font-size: 1rem;
  max-width: 48ch;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(88, 28, 135, 0.25);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: #e9e4f5;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-visual {
  position: relative;
  animation: rise 1s ease 0.1s both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -5%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(124, 58, 237, 0.25);
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Sections */
section {
  padding: clamp(3.25rem, 6.5vw, 5rem) 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 2.1rem;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.seo-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  backdrop-filter: blur(10px);
}

.seo-block h2,
.seo-block h3 {
  color: var(--text);
}

.seo-block p,
.seo-block li {
  color: var(--muted);
}

.seo-block ul {
  padding-left: 1.15rem;
}

.seo-block a {
  font-weight: 600;
}

.seo-long {
  max-width: 820px;
  margin-inline: auto;
}

.seo-long h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--text);
}

.seo-long p {
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

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

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.95rem;
}

.feature h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.08), transparent 45%),
    rgba(18, 11, 28, 0.85);
}

.counter {
  text-align: center;
  padding: 0.65rem 0.4rem;
}

.counter .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
}

.counter .label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem 1.35rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(18, 11, 28, 0.75);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: var(--shadow);
}

.plan.featured {
  border-color: rgba(225, 29, 46, 0.55);
  background:
    linear-gradient(180deg, rgba(225, 29, 46, 0.14), transparent 40%),
    rgba(18, 11, 28, 0.9);
  box-shadow: 0 18px 40px rgba(225, 29, 46, 0.18);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--orange));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan h3 {
  font-size: 1.3rem;
}

.plan .tagline {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.95rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
}

.price strong {
  font-family: var(--font-display);
  font-size: 2.35rem;
  letter-spacing: -0.04em;
  color: #fff;
}

.price span {
  color: var(--muted);
  font-size: 0.92rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.plan li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(167, 139, 250, 0.08);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.guarantee {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem 1.25rem;
  border: 1px dashed rgba(255, 107, 0, 0.4);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 107, 0, 0.08);
}

.guarantee strong {
  color: var(--orange);
}

/* Comparison table */
.compare-wrap {
  margin-top: 2.5rem;
}

.compare-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(18, 11, 28, 0.85);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(167, 139, 250, 0.12);
  vertical-align: middle;
}

.compare-table thead th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
}

.compare-table tbody th[scope="row"] {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.compare-table tbody td {
  color: var(--text);
  font-weight: 600;
}

.compare-table .is-popular {
  background: rgba(225, 29, 46, 0.1);
  box-shadow: inset 0 0 0 1px rgba(225, 29, 46, 0.25);
}

.compare-table thead th.is-popular {
  color: var(--accent);
}

.compare-table .ok {
  color: #4ade80;
  font-weight: 800;
}

.compare-cta-row td,
.compare-cta-row th {
  border-bottom: none;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-panel {
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.stars {
  color: var(--warn);
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.review blockquote {
  margin: 0 0 0.9rem;
  color: var(--text);
  font-size: 0.95rem;
}

.review footer {
  color: var(--muted);
  font-size: 0.85rem;
}

.review footer strong {
  color: var(--text);
  display: block;
}

.rating-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.rating-banner .score {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
}

/* Form */
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(18, 11, 28, 0.8);
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form input,
.form select {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0612;
  color: var(--text);
  font: inherit;
}

.form input:focus,
.form select:focus {
  outline: 2px solid rgba(255, 107, 0, 0.4);
  outline-offset: 1px;
  border-color: var(--orange);
}

.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.45rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger span {
  color: var(--orange);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s;
}

.accordion-item.open .accordion-trigger span {
  transform: rotate(45deg);
}

.accordion-panel {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--muted);
}

.accordion-item.open .accordion-panel {
  display: block;
  animation: rise 0.3s ease;
}

/* Tags */
.city-tags,
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: rgba(255, 107, 0, 0.45);
  color: var(--orange);
}

/* Page hero */
.page-hero {
  padding: clamp(2.4rem, 5.5vw, 3.6rem) 0 1.75rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  max-width: 18ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--orange);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.blog-card .meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.12rem;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.prose h3 {
  margin-top: 1.4rem;
  font-size: 1.12rem;
}

.prose ul,
.prose ol {
  color: var(--muted);
  padding-left: 1.2rem;
}

.legal .prose h2 {
  font-size: 1.2rem;
}

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

.contact-box {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.contact-box h3 {
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #06040c;
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}

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

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-keywords {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  margin-bottom: 1.4rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Floating WA */
.fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  min-width: 56px;
  height: 56px;
  padding: 0 1rem;
  border-radius: var(--radius-pill);
  background: var(--wa-btn);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(15, 138, 69, 0.45);
  transition: transform 0.2s;
}

.fab-wa:hover {
  transform: scale(1.05);
  color: #ffffff;
  background: #0c7339;
}

.fab-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-label {
  white-space: nowrap;
}

.sitemap-cols {
  columns: 2;
  gap: 2rem;
}

.sitemap-cols ul {
  list-style: none;
  padding: 0;
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.sitemap-cols li {
  margin: 0.35rem 0;
}

.sitemap-cols a {
  color: var(--muted);
}

.sitemap-cols a:hover {
  color: var(--orange);
}

.sitemap-cols strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .features,
  .pricing,
  .reviews,
  .blog-grid,
  .counters {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .about-grid,
  .test-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    background: rgba(10, 6, 18, 0.97);
    border-bottom: 1px solid var(--line);
    gap: 0.25rem;
    flex: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav a[aria-current="page"]::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .features,
  .pricing,
  .reviews,
  .blog-grid,
  .counters {
    grid-template-columns: 1fr;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .sitemap-cols {
    columns: 1;
  }

  .fab-label {
    display: none;
  }

  .fab-wa {
    width: 56px;
    padding: 0;
    border-radius: 50%;
  }
}

@media (max-width: 960px) {
  .site-header {
    backdrop-filter: none;
    background: rgba(10, 6, 18, 0.96);
  }

  .seo-block {
    backdrop-filter: none;
  }

  .hero-visual::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Desktop: CTAs live in .nav-actions */
@media (min-width: 961px) {
  .nav > .nav-cta,
  .nav > .nav-cta-alt {
    display: none !important;
  }
}
