@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --black: #080a0d;
  --dark: #0e1117;
  --dark2: #161b24;
  --yellow: #f5c518;
  --yellow-deep: #d4a900;
  --steel: #2a3547;
  --steel-light: #3d4f68;
  --white: #ffffff;
  --offwhite: #e8eaf0;
  --muted: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.07);
  --card: rgba(255,255,255,0.03);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── ROAD LINE TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 49px,
    rgba(255,255,255,0.012) 49px,
    rgba(255,255,255,0.012) 50px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; }
h3 { font-size: 1.6rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--muted); line-height: 1.75; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section-padding { padding: 110px 0; }
.section-padding-sm { padding: 64px 0; }

/* ── NAV ── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.main-nav.scrolled {
  background: rgba(8, 10, 13, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-logo-main span { color: var(--yellow); }

.nav-logo-sub {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-links .nav-cta a {
  background: var(--yellow);
  color: var(--black);
  padding: 8px 22px;
}

.nav-links .nav-cta a:hover { background: #ffd740; }

.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
  padding-top: 140px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,197,24,0.07) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

/* Road stripe decoration */
.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
}

.hero-road::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(245,197,24,0.2);
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--yellow);
}

.hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-title {
  margin-bottom: 28px;
}

.hero-title .line-yellow { color: var(--yellow); display: block; }

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat-block {
  padding-right: 48px;
  margin-right: 48px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; margin-right: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: #ffd740;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--yellow);
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.card:hover {
  border-color: rgba(245,197,24,0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(245,197,24,0.08);
  line-height: 1;
  margin-bottom: 8px;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.card p { font-size: 0.92rem; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── YELLOW BAR SECTION ── */
.yellow-bar {
  background: var(--yellow);
  padding: 60px 0;
}

.yellow-bar h2, .yellow-bar h3, .yellow-bar p,
.yellow-bar .section-label {
  color: var(--black) !important;
}

.yellow-bar .section-label::before { background: var(--black); }

.yellow-bar p { color: rgba(0,0,0,0.65) !important; }

/* ── DARK SECTION ── */
.dark-section { background: var(--dark2); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 540px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }

/* ── SERVICE LIST ── */
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: 8px; }

.service-item-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245,197,24,0.25);
  line-height: 1;
}

.service-item-content h3 { font-size: 1.3rem; margin-bottom: 6px; }
.service-item-content p { font-size: 0.88rem; }

.service-item-arrow {
  font-size: 1.5rem;
  color: var(--yellow);
  opacity: 0;
  transition: var(--transition);
}

.service-item:hover .service-item-arrow { opacity: 1; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '▶';
  color: var(--yellow);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -38px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  border: 3px solid var(--black);
}

.timeline-step {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.timeline-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.timeline-item p { font-size: 0.9rem; }

/* ── STAT HIGHLIGHT ── */
.stat-highlight {
  text-align: center;
  padding: 40px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-highlight:hover {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.04);
}

.stat-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.testimonial-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 20px; letter-spacing: 3px; }

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--steel-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
}

.t-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.t-role { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── CTA SECTION ── */
.cta-band {
  background: var(--dark2);
  border-top: 3px solid var(--yellow);
  padding: 88px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-text p { max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

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

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.04);
}

.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--dark2); }

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

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ci-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.ci-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.ci-value a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.ci-value a:hover { color: var(--yellow); }

/* ── FAQ ── */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.faq-a { font-size: 0.9rem; line-height: 1.75; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.55s forwards;
}

@keyframes revealUp { to { opacity:1; transform:translateY(0); } }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark2);
  border-top: 3px solid var(--yellow);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand span { color: var(--yellow); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }

.footer-contact-list { list-style: none; }
.footer-contact-list li { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}

.badge-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-block { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 4px; }
  .stat-block:last-child { border-bottom: none; }
  .service-item { grid-template-columns: 48px 1fr; }
  .service-item-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
  }

  .nav-toggle-label span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }

  .nav-links a { font-size: 1.4rem; }

  .nav-toggle-checkbox:checked ~ .nav-links { transform: translateX(0); }
}
