/* DriveLabs — AI innovation lab */

:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #14B8A6;
  --violet: #7C3AED;
  --violet-dark: #6D28D9;
  --white: #F8FAFC;
  --grey: #E2E8F0;
  --grey-mid: #94A3B8;
  --grey-dark: #475569;
  --lime: #84CC16;
  --lime-dark: #65A30D;
  --ink: #0F172A;
  --font: 'IBM Plex Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(13, 148, 136, 0.15);
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--violet);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--grey-mid);
  font-size: 1.0625rem;
  margin-top: 0.65rem;
}

/* Lab bench grid background */
.bench-bg {
  background-color: var(--white);
  background-image:
    linear-gradient(var(--grey) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-violet {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

.btn-violet:hover {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  color: var(--white);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Sprint badge */
.sprint-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--grey);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--teal);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-dark);
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--violet);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.06) 0%, rgba(124, 58, 237, 0.08) 100%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-content .tagline {
  font-size: 1.125rem;
  color: var(--grey-mid);
  margin: 1.25rem 0 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey);
  box-shadow: var(--shadow-lg);
}

.velocity-chip {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--lime);
  font-size: 0.8125rem;
}

.velocity-chip strong {
  display: block;
  font-size: 1.25rem;
  color: var(--lime);
}

/* Sprint band */
.sprint-band {
  background: var(--ink);
  padding: 1.5rem 0;
}

.sprint-band-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.sprint-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}

.sprint-step-num {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.sprint-divider {
  color: var(--grey-mid);
  font-weight: 300;
  font-size: 1.25rem;
}

/* Package cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  border-radius: 0 0 3px 3px;
}

.package-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card h3 {
  margin: 0.75rem 0 0.5rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.package-price span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-mid);
}

.package-card ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.package-card li {
  font-size: 0.875rem;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.package-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* Velocity strip */
.velocity-strip {
  background: linear-gradient(90deg, var(--teal) 0%, var(--violet) 100%);
  padding: 3rem 0;
  color: var(--white);
}

.velocity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.velocity-metric strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.velocity-metric span {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Lab process */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--teal);
}

.process-step h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--grey-mid);
}

/* Service blocks */
.service-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-block {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.service-block:hover {
  border-color: var(--violet);
}

.service-block-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.service-block h3 {
  margin-bottom: 0.4rem;
}

.service-block p {
  font-size: 0.9rem;
  color: var(--grey-mid);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-size: 3rem;
  color: var(--grey);
  line-height: 1;
  font-weight: 700;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--grey-dark);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--grey-mid);
}

/* CTA */
.cta-section {
  background: var(--teal);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

/* Lab footer note */
.lab-note {
  background: var(--grey);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--grey-dark);
}

.lab-note strong {
  color: var(--teal);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--grey);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--grey-mid);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-contact p {
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: var(--grey-mid);
}

.footer-bottom a:hover {
  color: var(--lime);
}

/* Page hero */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: var(--grey);
  border-bottom: 2px solid var(--teal);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--grey-mid);
  max-width: 600px;
}

.breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: var(--grey-mid);
}

.breadcrumb a {
  color: var(--teal);
}

/* Collection */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--grey-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.collection-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.collection-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-lg);
}

.collection-card.hidden {
  display: none;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-body {
  padding: 1.5rem;
}

.collection-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.collection-ref {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
}

.collection-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--grey);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.collection-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0.5rem 0;
}

.collection-card p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

/* Services page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
}

.service-row:nth-child(even) {
  direction: rtl;
}

.service-row:nth-child(even) > * {
  direction: ltr;
}

.service-row img {
  border-radius: var(--radius);
  border: 2px solid var(--grey);
}

.service-row h2 {
  margin-bottom: 0.75rem;
}

.service-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.service-features li {
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.6rem;
  top: 0.45rem;
}

/* About */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 1.75rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
}

.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cert-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info-block h2 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: var(--ink);
  font-size: 0.875rem;
  margin-bottom: 0.15rem;
}

.contact-detail span {
  font-size: 0.875rem;
  color: var(--grey-mid);
}

.contact-form-wrap {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form-wrap h2 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #DC2626;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: 0.8125rem;
  color: #DC2626;
  margin-top: 0.35rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(124, 58, 237, 0.08));
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--teal);
  margin-bottom: 0.5rem;
}

/* Legal pages */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--grey-dark);
}

.legal-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.875rem;
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-inner a {
  color: var(--lime);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Animations */
.slide-up, .fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .slide-up,
html.js .fade-in {
  opacity: 0;
  transform: translateY(28px);
}

html.js .slide-up.visible,
html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .velocity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-track::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--grey);
    padding: 1rem 1.5rem;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-intro,
  .contact-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) {
    direction: ltr;
  }

  .package-grid,
  .testimonial-grid,
  .team-grid,
  .collection-grid,
  .collection-card {
    grid-template-columns: 1fr;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .collection-card img {
    height: 180px;
  }

  .velocity-grid,
  .about-stats,
  .service-blocks,
  .process-track {
    grid-template-columns: 1fr;
  }

  .sprint-band-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .sprint-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
