/* ============================================
   Auto Service Seba – Modern redesign
   ============================================ */

:root {
  --bg-deep: #0a0e14;
  --bg-card: #111820;
  --bg-elevated: #161e28;
  --bg-light: #f4f7fa;
  --brand: #5d7896;
  --brand-light: #8ba9c7;
  --brand-glow: rgba(93, 120, 150, 0.35);
  --accent: #4a9eff;
  --text: #e8edf2;
  --text-muted: #8b9aab;
  --text-dark: #1a2332;
  --border: rgba(139, 169, 199, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ---- Utilities ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

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

.section-header .section-desc {
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  box-shadow: 0 8px 30px var(--brand-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.btn--full {
  width: 100%;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header--scrolled {
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.15);
  transition: transform var(--transition);
}

.logo:hover img {
  transform: scale(1.03);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-light);
  transition: width var(--transition);
}

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

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--text);
}

.nav__cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Cursor glow ---- */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  transition: opacity 0.3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 120, 150, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 120, 150, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(93, 120, 150, 0.2);
  top: -10%;
  right: -5%;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(74, 158, 255, 0.12);
  bottom: 10%;
  left: -10%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(93, 120, 150, 0.15);
  border: 1px solid var(--border);
  color: var(--brand-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  height: 420px;
}

.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.hero__card--main {
  position: absolute;
  inset: 15% 5% 15% 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 20px 80px rgba(93, 120, 150, 0.25); }
}

.hero__card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero__card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__card-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-light);
}

.hero__card--float {
  position: absolute;
  animation: floatCard 6s ease-in-out infinite;
}

.hero__card--top {
  top: 5%;
  right: 0;
  padding: 1rem 1.25rem;
  animation-delay: -2s;
}

.hero__card--bottom {
  bottom: 5%;
  left: 0;
  padding: 1rem 1.25rem;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---- Stats bar ---- */
.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-bottom: 2rem;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem;
}

.stat-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 120, 150, 0.12);
  border-radius: 12px;
  color: var(--brand-light);
}

.stat-item__icon svg {
  width: 22px;
  height: 22px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.about__image-wrap:hover img {
  transform: scale(1.05);
}

.about__experience {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}

.about__exp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about__exp-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__list {
  margin: 1.5rem 0 2rem;
}

.about__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 700;
}

/* ---- Reviews marquee ---- */
.reviews {
  padding: 5rem 0;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews__header .section-title {
  color: var(--text-dark);
}

.reviews__rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.reviews__rating-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.reviews__rating-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.reviews__stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.reviews__stars .half {
  opacity: 0.4;
}

.reviews__rating-badge p {
  font-size: 0.85rem;
  color: #666;
}

.marquee {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card__google {
  position: absolute;
  opacity: 0;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: hsl(var(--hue, 200), 55%, 50%);
  flex-shrink: 0;
}

.review-card__header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-card__verified {
  font-size: 0.7rem;
  color: #1a73e8;
}

.review-card__stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.review-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.55;
}

/* ---- Services ---- */
.services {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-elevated) 100%);
}

.services__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card--reverse {
  direction: rtl;
}

.service-card--reverse > * {
  direction: ltr;
}

.service-card__img {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 2rem 2.5rem 2rem 0;
}

.service-card--reverse .service-card__body {
  padding: 2rem 0 2rem 2.5rem;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-light);
}

.service-card__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  transition: gap 0.3s;
}

.service-card__link:hover {
  color: var(--brand-light);
}

/* ---- Why us ---- */
.why-us {
  background: var(--bg-deep);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 169, 199, 0.35);
}

.why-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(93, 120, 150, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Contact ---- */
.contact {
  background: var(--bg-elevated);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.contact__info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact__tip {
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
  background: rgba(93, 120, 150, 0.1);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), transform var(--transition);
}

a.contact__item:hover {
  border-color: var(--brand-light);
  transform: translateX(4px);
}

.contact__item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 120, 150, 0.12);
  border-radius: 12px;
  color: var(--brand-light);
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
}

.contact__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact__item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-note a {
  color: var(--brand-light);
  font-weight: 600;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

/* ---- Footer ---- */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--brand-light);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- FAB ---- */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px var(--brand-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab svg {
  width: 24px;
  height: 24px;
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px var(--brand-glow);
}

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(40px); }
[data-reveal="right"] { transform: translateX(-40px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 400px;
    margin-inline: auto;
    height: 320px;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-card__body,
  .service-card--reverse .service-card__body {
    padding: 1.5rem 2rem 2rem;
  }

  .service-card__img {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    background: rgba(10, 14, 20, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__cta {
    margin-top: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 4rem 0;
  }

  .cursor-glow {
    display: none;
  }
}

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

  .marquee__track {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
