/* ============================================================
   FROZZ Automotive Company — style.css
   Design System: Dark Premium & Silver
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Palette — FROZZ Technical / Aggressive theme */
  --midnight: #0a0a0c;
  --gunmetal: #111111;
  --gunmetal-light: #1a1a1c;
  --card-bg: rgba(17, 17, 17, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(10, 10, 12, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --ice-blue: #ff5722; /* Technical Orange Accent */
  --ice-blue-glow: rgba(255, 87, 34, 0.25);
  --ice-blue-soft: rgba(255, 87, 34, 0.08);
  --platinum: #e0e0e0;
  --white: #ffffff;
  --text-muted: #a0a0a0;
  --text-dim: #666666;
  --overlay: rgba(10, 10, 12, 0.85);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-px: clamp(1.25rem, 4vw, 2rem);
  --container-max: 1200px;

  /* Radius - Strict Geometry */
  --radius: 0px;
  --radius-lg: 2px;

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--midnight);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}

ul,
ol {
  list-style: none;
}

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

section {
  padding: var(--section-py) 0;
}

.text-center {
  text-align: center;
}

/* ============================================================
   5. GLASSMORPHISM UTILITIES
   ============================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: transform var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 87, 34, 0.4);
  box-shadow: 0 8px 32px var(--ice-blue-glow);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary {
  background: var(--ice-blue);
  color: var(--white);
  border: none;
  box-shadow: 0 0 15px var(--ice-blue-glow);
  position: relative;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
  background: #e64a19; /* Slightly darker orange on hover */
  box-shadow: 0 0 25px var(--ice-blue-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--midnight);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--duration) var(--ease),
    padding var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.header.scrolled {
  background: rgba(5, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--card-border);
}

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

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

.logo img {
  height: 84px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.header.scrolled .logo img {
  height: 69px;
}

.logo span {
  color: var(--ice-blue);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ice-blue);
  transition: width var(--duration) var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 999;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

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

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1732624697571-e877b2b4f5ba?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 12, 0.92) 0%,
      rgba(17, 17, 17, 0.85) 40%,
      rgba(10, 10, 12, 0.80) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Carbon fiber / grid pattern overlay */
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--ice-blue);
  top: -20%;
  right: -10%;
  opacity: 0.08;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--ice-blue);
  bottom: 10%;
  left: -5%;
  opacity: 0.05;
}

.hero .container {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice-blue);
  background: var(--ice-blue-soft);
  border: 1px solid rgba(192, 192, 192, 0.2);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--ice-blue);
}

.hero h1 {
  margin-bottom: 1.25rem;
  font-weight: 800;
  animation: fadeInUp 0.8s var(--ease) forwards;
  animation-delay: 0.1s;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1 .highlight {
  color: var(--ice-blue);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s var(--ease) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s var(--ease) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.hero-stat h3 .ice {
  color: var(--ice-blue);
}

.hero-stat p {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ============================================================
   9. SERVICES SECTION — Hover Reveal Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

/* Background image layer */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  z-index: 0;
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
  filter: brightness(0.6);
}

/* Dark overlay */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 12, 0.95) 0%,
      rgba(10, 10, 12, 0.65) 50%,
      rgba(10, 10, 12, 0.40) 100%);
  z-index: 1;
  transition: background 0.5s var(--ease);
}

.service-card:hover::before {
  background: linear-gradient(to top,
      rgba(10, 10, 12, 0.95) 0%,
      rgba(10, 10, 12, 0.80) 50%,
      rgba(10, 10, 12, 0.65) 100%);
}

/* Content layer */
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-content {
  transform: translateY(-10px);
}

/* service-icon styles removed — cards use typography only */

a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  transition: margin 0.5s var(--ease);
}

.service-card:hover h3 {
  margin-bottom: 0.75rem;
}

/* Hidden by default — revealed on hover */
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), max-height 0.5s var(--ease), margin 0.5s var(--ease);
}

.service-card:hover p {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ice-blue);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease) 0.1s, transform 0.4s var(--ease) 0.1s, gap 0.3s var(--ease);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link:hover {
  gap: 0.75rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 2;
}

/* Glowing border on hover */
.service-card.glass-card:hover {
  border-color: rgba(192, 192, 192, 0.30);
  box-shadow: 0 8px 40px var(--ice-blue-glow);
}

/* ============================================================
  10. WHY US SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gunmetal);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

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

.why-text h2 {
  margin-bottom: 1.25rem;
}

.why-features {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ice-blue-soft);
}

.why-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.5;
}

.why-feature h4 {
  margin-bottom: 0.25rem;
}

.why-feature p {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================================
  11. PROCESS SECTION
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: process;
}

.process-step {
  padding: 2.5rem 2rem;
  position: relative;
  counter-increment: process;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Classic radius override */
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--ice-blue);
  box-shadow: 0 10px 30px var(--ice-blue-glow);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #233346;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--platinum);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
  12. PRICING / PACKAGES
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(255, 87, 34, 0.25);
  box-shadow: 0 0 40px var(--ice-blue-glow), 0 0 80px rgba(255, 87, 34, 0.08);
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
  opacity: 0.5;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.2rem;
  background: var(--ice-blue);
  color: var(--midnight);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  /* Removed border-radius */
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.pricing-card.featured .pricing-features li svg,
.sp-card.featured .sp-features li svg {
  stroke: var(--ice-blue);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
  13. FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 2;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
  14. REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}

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

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #f5c518;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ice-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ice-blue);
}

.review-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.review-meta p {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 0;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #f5c518;
}

.review-card p.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

/* ============================================================
  15. FOOTER
   ============================================================ */
.footer {
  background: var(--gunmetal);
  border-top: 1px solid var(--card-border);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo img {
  height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--platinum);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.5;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
  16. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}

/* Only apply hidden state when JS is confirmed loaded */
html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js-loaded .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

html.js-loaded .reveal-delay-1 {
  transition-delay: 0.1s;
}

html.js-loaded .reveal-delay-2 {
  transition-delay: 0.2s;
}

html.js-loaded .reveal-delay-3 {
  transition-delay: 0.3s;
}

html.js-loaded .reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
  17. BRANDS MARQUEE
   ============================================================ */
.brands-section {
  padding: 3.5rem 0;
  overflow: hidden;
}

.brands-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--platinum);
  opacity: 0.35;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 2.5rem;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
}

.marquee-track span:hover {
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
  18. RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 3rem;
  }
}

/* ============================================================
  18. RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

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

  .service-card {
    min-height: 360px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* ============================================================
  19. RESPONSIVE — MOBILE (<1024px)
   ============================================================ */
@media (max-width: 1023px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
  20. MISC / DIVIDERS
   ============================================================ */
.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(to right,
      transparent,
      var(--card-border),
      transparent);
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   22. FOOTER SOCIAL MEDIA BUTTONS
   ============================================================ */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--card-border);
  border-radius: 0;
  background: var(--card-bg);
  transition: border-color var(--duration) var(--ease),
              background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.footer-social a:hover {
  border-color: var(--ice-blue);
  background: rgba(255, 87, 34, 0.08);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill var(--duration) var(--ease);
}

.footer-social a:hover svg {
  fill: var(--ice-blue);
}

/* ============================================================
   23. SERVICES GRID — 5 columns support
   ============================================================ */
@media (min-width: 768px) {
  .services-grid.five-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .services-grid.five-cols {
    grid-template-columns: repeat(5, 1fr);
  }
  .services-grid.five-cols .service-card {
    min-height: 300px;
  }
}

/* ============================================================
   24. EXTRA MOBILE FIXES
   ============================================================ */
@media (max-width: 767px) {
  .hero-content .hero-badge:first-of-type {
    display: none !important;
  }
  .why-grid {
    display: flex;
    flex-direction: column;
  }
  .why-image {
    order: 2;
  }
  .why-text {
    order: 1;
  }
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col:nth-child(2) {
    grid-column: 1 / 2;
  }
  .footer-col:nth-child(3) {
    grid-column: 2 / -1;
  }
  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }
}