/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-light: #1a1a1a;
  --black-border: #222222;
  --grey-dark: #333333;
  --grey: #666666;
  --grey-light: #999999;
  --grey-muted: #b0b0b0;
  --white: #ffffff;
  --white-off: #f7f7f7;

  --orange: #ff6b00;
  --orange-light: #ff8a33;
  --orange-bright: #ff9500;
  --orange-dark: #cc5500;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --orange-subtle: rgba(255, 107, 0, 0.08);
  --orange-gradient: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-full: 9999px;

  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.2);
  --shadow-orange: 0 8px 32px rgba(255, 107, 0, 0.3);
  --shadow-card-hover: 0 20px 60px rgba(0,0,0,0.15);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
  --transition-fast: 0.2s var(--ease);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.25s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-subtle);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header .tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange-gradient);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.45);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.05rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
}

.navbar-logo span {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.navbar-links a:not(.btn):hover { color: var(--white); }
.navbar-links a:not(.btn):hover::after { width: 100%; }

.navbar-links .btn-primary {
  padding: 10px 24px;
  font-size: 0.85rem;
  border-radius: var(--radius-xs);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/hero-british-van.png') center/cover no-repeat;
  opacity: 0.3;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255,107,0,0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.22);
  color: var(--orange-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero h1 .highlight {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll .scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== ABOUT ===== */
.about {
  padding: 140px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about-text h3 .accent { color: var(--orange); }

.about-text p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-cards { display: grid; gap: 14px; }

.about-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.icon-box {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box.orange {
  background: var(--orange-gradient);
  box-shadow: 0 4px 16px rgba(255,107,0,0.25);
}

.icon-box.dark { background: var(--black); }

.icon-box svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }

.about-card h4 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.about-card p { font-size: 0.88rem; color: var(--grey-light); line-height: 1.5; margin-bottom: 0; }

/* ===== SERVICES ===== */
.services {
  padding: 140px 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services .section-header h2 { color: var(--white); }
.services .section-header p  { color: var(--grey-light); }
.services .section-header .tag { background: rgba(255,107,0,0.1); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.service-icon {
  width: 68px; height: 68px;
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255,107,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255,107,0,0.25);
}

.service-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; }

.service-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--grey-light); line-height: 1.65; }

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 140px 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--white-off);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay .label { display: flex; flex-direction: column; gap: 4px; }
.portfolio-overlay .label span { color: var(--white); font-weight: 700; font-size: 1rem; }
.portfolio-overlay .label small {
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 140px 0;
  background: var(--white-off);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.step-number {
  width: 72px; height: 72px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-number span {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-connector { display: none; }

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 82px; right: -20px;
    width: 40px; height: 2px;
    z-index: 2;
  }
  .step-connector::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 8px;
    height: 2px;
    background: var(--orange);
    opacity: 0.25;
  }
  .step-connector::after {
    content: '';
    position: absolute;
    top: -3px; right: 0;
    width: 8px; height: 8px;
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
    transform: rotate(45deg);
    opacity: 0.25;
  }
}

/* ===== CONTACT ===== */
.contact {
  padding: 140px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.contact-form-card .subtitle {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--black);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-subtle);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-muted); }

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

.btn-submit svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--white-off);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition);
}

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

.contact-info-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.5; }
.contact-info-card .small { font-size: 0.8rem; color: var(--grey-light); margin-top: 2px; }

.why-box {
  background: var(--black);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 4px;
}

.why-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }

.why-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-box li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.why-box li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 72px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,107,0,0.05) 0%, transparent 30%, transparent 70%, rgba(255,107,0,0.05) 100%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 800;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ===== HERO TRUST ===== */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 140px 0;
  background: var(--white-off);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,107,0,0.07);
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--grey-light);
}

/* ===== FAQ ===== */
.faq {
  padding: 140px 0;
  background: var(--white);
}

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(255,107,0,0.15);
}

.faq-item.active {
  border-color: rgba(255,107,0,0.2);
  box-shadow: 0 4px 20px rgba(255,107,0,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question svg {
  stroke: var(--grey);
  fill: none;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,107,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
}

.footer-logo span {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}

.footer-socials svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li, .footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

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

.footer-bottom a {
  color: var(--orange-light);
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  padding: 18px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  box-shadow: var(--shadow-strong);
  transform: translateX(120%);
  transition: transform 0.5s var(--ease-spring);
  max-width: 400px;
}

.toast.show { transform: translateX(0); }
.toast.success { background: var(--black); color: var(--white); border-left: 4px solid #22c55e; }
.toast.error { background: var(--black); color: var(--white); border-left: 4px solid #ef4444; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .navbar-links.active { display: flex; }
  .navbar-links a { color: rgba(255,255,255,0.7) !important; font-size: 1rem; padding: 8px 0; }
  .mobile-toggle { display: block; }

  .hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card { padding: 36px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; gap: 20px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:not(:last-child)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 72px 0; }
}
