/* ===================================================
   Mobile Quality Auto Service — Design System & Styles
   =================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors */
  --color-bg:          #FAF9F7;
  --color-bg-alt:      #F2F0EC;
  --color-surface:     #FFFFFF;
  --color-text:        #1A1A1A;
  --color-text-muted:  #5C5C5C;
  --color-accent:      #B8935A;
  --color-accent-hover:#A07D48;
  --color-border:      rgba(26, 26, 26, 0.08);
  --color-overlay:     rgba(15, 20, 30, 0.55);
  --color-navy:        #1B3A5C;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --fs-h1:   clamp(2rem, 5vw, 3.5rem);
  --fs-h2:   clamp(1.625rem, 3.5vw, 2.5rem);
  --fs-h3:   clamp(1.125rem, 2vw, 1.375rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-small: 0.875rem;
  --lh-heading: 1.2;
  --lh-body:    1.7;

  /* Spacing (8px system) */
  --sp-1: 0.5rem;   /* 8px */
  --sp-2: 1rem;     /* 16px */
  --sp-3: 1.5rem;   /* 24px */
  --sp-4: 2rem;     /* 32px */
  --sp-5: 2.5rem;   /* 40px */
  --sp-6: 3rem;     /* 48px */
  --sp-7: 4rem;     /* 64px */
  --sp-8: 5rem;     /* 80px */
  --sp-section: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 200ms;
}


/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  color: var(--color-text);
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }


/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding-left: var(--sp-3);
  padding-right: var(--sp-3);
}

.section-padding {
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}

.section-heading {
  margin-bottom: var(--sp-3);
  max-width: 36rem;
}

.section-description {
  color: var(--color-text-muted);
  max-width: 38rem;
  margin-bottom: var(--sp-5);
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--sp-6);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all var(--duration) var(--ease);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0.875rem 0.5rem;
}

.btn-ghost:hover {
  color: var(--color-accent-hover);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--duration) var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}

.desktop-nav a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
  padding: var(--sp-1) 0;
}

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

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 0;
  transition: all var(--duration) var(--ease);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 105;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--duration) var(--ease);
}

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

.mobile-nav .btn {
  margin-top: var(--sp-2);
}


/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 30, 0.65) 0%,
    rgba(10, 18, 30, 0.50) 60%,
    rgba(10, 18, 30, 0.70) 100%
  );
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-top: 7rem;
  padding-bottom: var(--sp-7);
}

.hero-content {
  max-width: 38rem;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: var(--sp-3);
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--sp-5);
  max-width: 30rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.hero .btn-primary {
  background-color: var(--color-accent);
  color: #FFF;
}

.hero .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: #FFFFFF;
}

.hero .btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  color: rgba(255,255,255,0.72);
  font-size: var(--fs-small);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}


/* --- Hero Card --- */
.hero-card {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero-card-subtitle {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-border);
}

.hero-card-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero-card-icon svg {
  width: 18px;
  height: 18px;
}

.hero-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.hero-card-value {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

a.hero-card-value:hover {
  color: var(--color-accent);
}

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


/* --- Services --- */
.services {
  background-color: var(--color-bg);
}

.services-carousel {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-2);
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 88vw;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: var(--sp-1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: var(--fs-h3);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}


/* --- Pagination Dots --- */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-1);
  padding-top: var(--sp-3);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  padding: 0;
  min-height: 0;
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: var(--radius-pill);
}


/* --- Why Choose Us / About --- */
.about {
  background-color: var(--color-bg-alt);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
  max-width: 34rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}


/* --- How It Works --- */
.how-it-works {
  background-color: var(--color-bg);
}

.steps-carousel {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-2);
}

.steps-carousel::-webkit-scrollbar {
  display: none;
}

.step-card {
  flex: 0 0 88vw;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.step-card h3 {
  font-size: var(--fs-h3);
}

.step-card p {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}


/* --- Testimonials --- */
.testimonials {
  background-color: var(--color-bg-alt);
}

.testimonials-carousel {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-2);
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 88vw;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card blockquote {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--color-border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--color-accent);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: var(--fs-small);
}

.author-detail {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}


/* --- Service Areas --- */
.service-areas {
  background-color: var(--color-bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

.area-tag {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-2);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text);
}

.area-tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}


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

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.contact-info-text a:hover {
  color: var(--color-accent);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}

.contact-form h3 {
  margin-bottom: var(--sp-3);
}

.form-group {
  margin-bottom: var(--sp-3);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: var(--sp-1);
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.12);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}


/* --- Footer --- */
.site-footer {
  background-color: #0F141E;
  color: rgba(255,255,255,0.65);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-4);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.footer-brand .header-logo {
  margin-bottom: var(--sp-2);
}

.footer-brand .header-logo span {
  color: #FFFFFF;
}

.footer-brand p {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  max-width: 22rem;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--sp-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}


/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

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


/* ============================
   Tablet (min-width: 768px)
   ============================ */
@media (min-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-5);
  }

  .hero-content {
    flex: 1;
    min-width: 0;
  }

  .hero-card {
    display: block;
    flex: 0 0 300px;
  }

  .service-card,
  .step-card,
  .testimonial-card {
    flex: 0 0 46%;
  }

  .about-grid {
    flex-direction: row;
    align-items: center;
  }

  .about-image {
    flex: 1;
    min-width: 0;
  }

  .about-text {
    flex: 1;
    min-width: 0;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-form {
    padding: var(--sp-5);
  }

  .form-row {
    flex-direction: row;
    gap: var(--sp-3);
  }

  .form-row .form-group {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    flex: 1.4;
  }

  .footer-col {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .carousel-dots {
    display: flex;
  }
}


/* ============================
   Desktop (min-width: 1024px)
   ============================ */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .services-carousel,
  .steps-carousel,
  .testimonials-carousel {
    overflow-x: visible;
    scroll-snap-type: none;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33.333% - var(--sp-3));
    max-width: calc(33.333% - var(--sp-3) * 2 / 3);
  }

  .step-card {
    flex: 1 1 calc(25% - var(--sp-3));
    max-width: calc(25% - var(--sp-3) * 3 / 4);
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - var(--sp-3));
    max-width: calc(33.333% - var(--sp-3) * 2 / 3);
  }

  .carousel-dots {
    display: none;
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-7);
    padding-top: 10rem;
    padding-bottom: var(--sp-8);
  }

  .hero-content {
    flex: 1;
    min-width: 0;
  }

  .hero-card {
    flex: 0 0 340px;
    padding: var(--sp-5);
  }
}
