/* ========================================
   Veld Customs — Styles
   Colours: Navy #1e2a47, Orange #e8691e
   Font: Montserrat
   ======================================== */

:root {
  --navy: #1e2a47;
  --navy-dark: #141d33;
  --orange: #e8691e;
  --orange-hover: #d45c17;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --grey-100: #eceef1;
  --grey-400: #8a8f9a;
  --grey-600: #555a66;
  --ink: #0a0a0a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  padding: 16px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 56px;
  width: auto;
}

/* ---- Language Toggle ---- */

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: 1.5px solid var(--grey-100);
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
}

.lang-option {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--grey-400);
  transition: background 0.2s, color 0.2s;
}

.lang-option.active {
  background: var(--navy);
  color: var(--white);
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--orange-hover);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 24px;
}

.btn-lg {
  font-size: 18px;
  padding: 18px 48px;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 20px;
}

.btn-white:hover {
  background: var(--grey-100);
}

/* ---- Hero ---- */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 160px 0 100px;
}

.hero-content {
  max-width: 700px;
}

.hero-headline {
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-accent {
  color: var(--orange);
}

.hero-sub {
  font-weight: 500;
  font-size: 18px;
  color: var(--grey-400);
  margin-top: 24px;
  max-width: 500px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.hero .btn {
  margin-top: 40px;
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Section titles ---- */

.section-title {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.section-intro {
  font-size: 16px;
  color: var(--grey-600);
  margin-top: 12px;
  max-width: 520px;
}

/* ---- Products ---- */

.products {
  padding: 100px 0;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-specs {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-specs li {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  padding-left: 22px;
  position: relative;
}

.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  transform: rotate(45deg);
}

/* ---- How It Works ---- */

.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.step {
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 20px;
}

.step h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ---- Why Veld Customs ---- */

.why {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  margin-top: 48px;
}

.why-item h3 {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.why-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 100%;
  background: var(--orange);
}

.why-item p {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.6;
  padding-left: 20px;
}

/* ---- Quote Section ---- */

.quote-section {
  padding: 100px 0;
  background: var(--navy);
}

.quote-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.quote-box h2 {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.quote-box p {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.5;
  margin-bottom: 32px;
}

.quote-box .btn {
  margin-bottom: 16px;
}

.quote-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Footer ---- */

.footer {
  background: var(--navy-dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-contact p {
  font-size: 13px;
  color: var(--grey-400);
  font-weight: 500;
}

.footer-legal p {
  font-size: 12px;
  color: var(--grey-400);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .hero {
    padding: 130px 0 72px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .btn-lg {
    font-size: 15px;
    padding: 16px 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }

  .product-card {
    padding: 28px 20px;
  }

  .quote-box .btn-white {
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
  }
}
