/*
Theme Name: Fahrschule Anik
Theme URI: https://fahrschuleanik.de
Author: Fahrschule Anik
Author URI: https://fahrschuleanik.de
Description: Moderne Onepage-Website für Fahrschule Anik in Dortmund mit Magenta/White Premium-Look, KI-Assistent, Kontakt-CTA und responsivem Design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fahrschule-anik
*/

:root {
  --anik-bg: #fff7fc;
  --anik-white: #ffffff;
  --anik-soft: #f6f2f7;
  --anik-ink: #111014;
  --anik-muted: #68636f;
  --anik-magenta: #d9007f;
  --anik-magenta-dark: #8f0057;
  --anik-magenta-soft: rgba(217, 0, 127, 0.09);
  --anik-line: rgba(17, 16, 20, 0.12);
  --anik-shadow: 0 28px 90px rgba(75, 0, 45, 0.12);
  --anik-footer: #080508;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(17, 16, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 16, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #fff7fc 46%, #ffffff 100%);
  background-size: 84px 84px, 84px 84px, auto;
  color: var(--anik-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.anik-menu-open {
  overflow: hidden;
}

::selection {
  background: var(--anik-magenta);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.anik-page {
  min-height: 100vh;
}

.anik-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.anik-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  pointer-events: none;
  padding: 14px 12px 0;
}

.anik-nav {
  pointer-events: auto;
  min-height: 64px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(17, 16, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 45px rgba(75, 0, 45, 0.08);
  backdrop-filter: blur(24px);
  padding: 8px 10px;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.anik-header.is-scrolled .anik-nav {
  border-color: var(--anik-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(75, 0, 45, 0.12);
}

.anik-brand {
  min-width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.anik-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--anik-magenta);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(217, 0, 127, 0.24);
}

.anik-mark::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.anik-brand-text {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.anik-brand-text strong {
  color: var(--anik-ink);
  font-size: 15px;
  font-weight: 950;
}

.anik-brand-text span {
  color: var(--anik-muted);
  font-size: 11px;
}

.anik-nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 2px;
}

.anik-nav-links a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--anik-muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.anik-nav-links a:hover,
.anik-nav-links a:focus-visible {
  background: var(--anik-magenta-soft);
  color: var(--anik-magenta);
  outline: none;
}

.anik-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--anik-magenta);
  border-radius: 999px;
  background: var(--anik-magenta);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  padding: 13px 20px;
  box-shadow: 0 20px 48px rgba(217, 0, 127, 0.22);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.anik-btn:hover,
.anik-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--anik-magenta-dark);
  background: var(--anik-magenta-dark);
  outline: none;
}

.anik-btn.is-small {
  min-height: 40px;
  padding: 10px 16px;
}

.anik-btn.is-secondary {
  border-color: var(--anik-line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--anik-ink);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.anik-btn.is-secondary:hover,
.anik-btn.is-secondary:focus-visible {
  border-color: var(--anik-magenta);
  background: #fff;
  color: var(--anik-magenta);
}

.anik-menu-button {
  display: none;
  min-width: 62px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--anik-ink);
  font-size: 11px;
  font-weight: 850;
}

.anik-mobile-menu {
  display: none;
}

.anik-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 160px 0 80px;
  background: var(--anik-bg);
}

#anik-road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  pointer-events: none;
}

.anik-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 46%, transparent 100%);
  pointer-events: none;
}

.anik-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.42), rgba(255, 247, 252, 0.24) 48%, #fff 100%);
  pointer-events: none;
}

.anik-hero-content {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.anik-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--anik-magenta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.anik-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--anik-magenta);
  box-shadow: 0 0 0 8px rgba(217, 0, 127, 0.08);
}

.anik-hero h1,
.anik-section-title,
.anik-cta h2 {
  text-wrap: balance;
  margin: 0;
  color: var(--anik-ink);
  font-weight: 850;
  letter-spacing: 0;
}

.anik-hero h1 {
  margin-top: 34px;
  font-size: clamp(4.2rem, 8.6vw, 7.8rem);
  line-height: 0.94;
}

.anik-hero p {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--anik-muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

.anik-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.anik-hero-proof {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.anik-glass,
.anik-card {
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--anik-shadow);
  backdrop-filter: blur(22px);
}

.anik-proof-card {
  padding: 18px;
}

.anik-icon {
  width: 24px;
  height: 24px;
  color: var(--anik-magenta);
}

.anik-proof-card strong {
  display: block;
  margin-top: 14px;
  font-size: 15px;
}

.anik-proof-card span {
  display: block;
  margin-top: 6px;
  color: var(--anik-muted);
  font-size: 13px;
}

.anik-trust {
  overflow: hidden;
  border-block: 1px solid var(--anik-line);
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 0;
}

.anik-trust-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: anikMarquee 32s linear infinite;
}

.anik-trust-item {
  display: inline-flex;
  min-width: 224px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 13px 18px;
  color: var(--anik-ink);
  font-size: 14px;
  font-weight: 700;
}

@keyframes anikMarquee {
  to {
    transform: translateX(-50%);
  }
}

.anik-section {
  padding: 110px 0;
}

.anik-section.is-white {
  border-block: 1px solid var(--anik-line);
  background: #fff;
}

.anik-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.anik-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--anik-magenta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.anik-section-title {
  font-size: clamp(2.6rem, 5.2vw, 5.7rem);
  line-height: 0.98;
}

.anik-lead {
  margin: 24px 0 0;
  color: var(--anik-muted);
  font-size: 18px;
  line-height: 1.75;
}

.anik-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.anik-card {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.anik-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 0, 127, 0.3);
  box-shadow: 0 34px 92px rgba(75, 0, 45, 0.16);
}

.anik-card h3 {
  margin: 18px 0 0;
  color: var(--anik-ink);
  font-size: 20px;
  line-height: 1.2;
}

.anik-card p {
  margin: 12px 0 0;
  color: var(--anik-muted);
  font-size: 14px;
  line-height: 1.75;
}

.anik-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.anik-classes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.anik-class-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.anik-class-card h3 {
  margin-top: 36px;
  font-size: 32px;
}

.anik-more {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 26px;
  color: var(--anik-ink);
  font-size: 14px;
  font-weight: 850;
}

.anik-more:hover {
  color: var(--anik-magenta);
}

.anik-timeline {
  position: relative;
  max-width: 940px;
  margin: 64px auto 0;
}

.anik-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--anik-magenta), rgba(217, 0, 127, 0.08));
}

.anik-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 28px;
}

.anik-step:nth-child(even) .anik-step-card {
  grid-column: 2;
}

.anik-step-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  border: 1px solid var(--anik-magenta);
  border-radius: 999px;
  background: var(--anik-bg);
  box-shadow: 0 20px 48px rgba(217, 0, 127, 0.22);
}

.anik-step-dot::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: var(--anik-magenta);
}

.anik-step-card {
  padding: 24px;
}

.anik-step-card small {
  color: var(--anik-magenta);
  font-weight: 850;
  text-transform: uppercase;
}

.anik-training {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}

.anik-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.anik-feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 750;
}

.anik-feature-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--anik-magenta);
}

.anik-plan {
  padding: 24px;
}

.anik-plan-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--anik-line);
  padding-bottom: 18px;
}

.anik-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 750;
}

.anik-progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.anik-progress-card {
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.anik-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(217, 0, 127, 0.1);
  margin-top: 16px;
}

.anik-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--anik-magenta);
}

.anik-plan-bottom {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}

.anik-mini-card {
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.anik-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.anik-vehicle-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background:
    linear-gradient(115deg, transparent 0%, rgba(217, 0, 127, 0.12) 42%, transparent 68%),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--anik-shadow);
}

.anik-car-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76%;
  height: 112px;
  transform: translate(-50%, -50%);
}

.anik-car-body {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 50px;
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--anik-shadow);
}

.anik-car-top {
  position: absolute;
  left: 30%;
  right: 30%;
  top: 8px;
  height: 62px;
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: #ffd5ec;
}

.anik-wheel {
  position: absolute;
  top: 82px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff 0 18%, var(--anik-magenta) 19% 36%, #201820 37% 58%, #080508 59%);
}

.anik-wheel:first-of-type {
  left: 16%;
}

.anik-wheel:last-of-type {
  right: 16%;
}

.anik-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.anik-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.anik-stars {
  color: var(--anik-magenta);
  letter-spacing: 0;
}

.anik-quote {
  margin-top: 28px;
  color: var(--anik-ink);
  font-size: 20px;
  line-height: 1.55;
}

.anik-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
}

.anik-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 260px;
  background: rgba(217, 0, 127, 0.45);
  box-shadow: 0 0 40px rgba(217, 0, 127, 0.3);
}

.anik-cta h2 {
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 1;
}

.anik-cta .anik-lead {
  margin-inline: auto;
}

.anik-cta-badges {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 48px auto 0;
}

.anik-cta-badges span {
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
  font-weight: 800;
}

.anik-footer {
  border-top: 1px solid #000;
  background: var(--anik-footer);
  color: #fff;
}

.anik-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  padding: 56px 0;
}

.anik-footer p,
.anik-footer li {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.anik-footer h3 {
  margin: 0;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.anik-footer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.anik-footer li {
  margin: 0 0 14px;
}

.anik-footer a:hover {
  color: #fff;
}

.anik-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.anik-footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.anik-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-align: center;
}

.anik-ai {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
}

.anik-ai-toggle {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--anik-magenta);
  color: #fff;
  box-shadow: 0 20px 48px rgba(217, 0, 127, 0.22);
  cursor: pointer;
  font-weight: 950;
  padding: 14px 20px;
}

.anik-ai-panel {
  display: none;
  width: min(420px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 110px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--anik-shadow);
  backdrop-filter: blur(24px);
}

.anik-ai.is-open .anik-ai-panel {
  display: flex;
}

.anik-ai.is-open .anik-ai-toggle {
  display: none;
}

.anik-ai-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--anik-line);
  padding: 16px;
}

.anik-ai-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.anik-ai-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--anik-magenta);
  color: #fff;
}

.anik-ai-close,
.anik-ai-send {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.anik-ai-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  background: #fff;
  color: var(--anik-ink);
}

.anik-ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.anik-ai-message {
  width: fit-content;
  max-width: 88%;
  white-space: pre-line;
  border: 1px solid var(--anik-line);
  border-radius: 8px;
  background: #fff;
  color: var(--anik-ink);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
  padding: 12px 14px;
}

.anik-ai-message.is-user {
  margin-left: auto;
  border-color: var(--anik-magenta);
  background: var(--anik-magenta);
  color: #fff;
}

.anik-ai-bottom {
  border-top: 1px solid var(--anik-line);
  padding: 14px;
}

.anik-ai-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.anik-ai-prompts button {
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  background: #fff;
  color: var(--anik-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

.anik-ai-form {
  display: flex;
  gap: 8px;
}

.anik-ai-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  color: var(--anik-ink);
  outline: none;
  padding: 12px 14px;
}

.anik-ai-form input:focus {
  border-color: var(--anik-magenta);
}

.anik-ai-send {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--anik-magenta);
  color: #fff;
}

.anik-ai-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.anik-ai-contact a {
  display: inline-flex;
  justify-content: center;
  border: 1px solid var(--anik-line);
  border-radius: 999px;
  background: #fff;
  color: var(--anik-ink);
  font-size: 12px;
  font-weight: 850;
  padding: 9px;
}

.anik-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.anik-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .anik-nav-links,
  .anik-nav-cta {
    display: none;
  }

  .anik-menu-button {
    display: inline-flex;
  }

  .anik-mobile-menu {
    position: fixed;
    inset: 88px 12px 12px;
    z-index: 69;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--anik-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--anik-shadow);
    padding: 16px;
    backdrop-filter: blur(22px);
  }

  .anik-menu-open .anik-mobile-menu {
    display: flex;
  }

  .anik-mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--anik-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--anik-ink);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    padding: 16px;
  }

  .anik-section-grid,
  .anik-training,
  .anik-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .anik-classes,
  .anik-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .anik-header {
    padding-top: 12px;
  }

  .anik-shell {
    width: min(100% - 32px, 1180px);
  }

  .anik-hero {
    padding-top: 128px;
  }

  .anik-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .anik-hero-proof,
  .anik-card-grid,
  .anik-classes,
  .anik-progress-grid,
  .anik-plan-bottom,
  .anik-feature-grid,
  .anik-testimonials,
  .anik-cta-badges,
  .anik-footer-grid {
    grid-template-columns: 1fr;
  }

  .anik-timeline::before {
    left: 14px;
  }

  .anik-step {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 46px;
  }

  .anik-step:nth-child(even) .anik-step-card {
    grid-column: auto;
  }

  .anik-step-dot {
    left: 14px;
  }

  .anik-ai {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
