/* =============================================
   Ingino Logistics — style.css
   Art direction: Professional freight/trucking
   Palette: Deep navy (#1e3a5f) + amber (#f59e0b)
   Typography: Barlow (display) + Inter (body)
   Density: Balanced
   ============================================= */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===================================
   DESIGN TOKENS
   =================================== */
:root {
  /* Brand */
  --color-navy:          #1e3a5f;
  --color-navy-dark:     #152a47;
  --color-navy-deeper:   #0d1d32;
  --color-amber:         #f59e0b;
  --color-amber-hover:   #d97706;
  --color-amber-light:   rgba(245, 158, 11, 0.12);

  /* Surfaces */
  --color-bg:            #f8fafc;
  --color-surface:       #ffffff;
  --color-surface-2:     #f1f5f9;
  --color-border:        #e2e8f0;
  --color-divider:       #e2e8f0;

  /* Text */
  --color-text:          #0f172a;
  --color-text-muted:    #64748b;
  --color-text-faint:    #94a3b8;
  --color-text-inverse:  #ffffff;

  /* Typography */
  --font-display: 'Barlow', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter',  'Helvetica Neue', sans-serif;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* 4px Spacing System */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.06);

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content Widths */
  --content-default: 1200px;
  --content-narrow:  800px;
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
}

p, li, figcaption { text-wrap: pretty; }

::selection {
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================
   CONTAINER
   =================================== */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--color-amber);
  background: rgba(245, 158, 11, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--transition);
  flex-shrink: 0;
}

.hamburger:hover { background: rgba(255, 255, 255, 0.1); }

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-amber);
  color: var(--color-navy);
  border-color: var(--color-amber);
}

.btn-primary:hover {
  background: var(--color-amber-hover);
  border-color: var(--color-amber-hover);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: #ffffff;
}

.btn-accent {
  background: var(--color-amber);
  color: var(--color-navy);
  border-color: var(--color-amber);
}

.btn-accent:hover {
  background: var(--color-amber-hover);
  border-color: var(--color-amber-hover);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.42);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* ===================================
   SECTION LABELS
   =================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  background: var(--color-amber-light);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.label-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
}

.section-header .section-label { display: block; }

.section-header h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.75;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: clamp(var(--space-12), 7vw, var(--space-20)) 0;
}

.alt-section {
  background: var(--color-surface-2);
}

/* ===================================
   PAGE HERO (about / services / contact)
   =================================== */
.page-hero {
  background: var(--color-navy);
  padding: clamp(var(--space-16), 9vw, var(--space-24)) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 50% 115%, rgba(245, 158, 11, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 85% -15%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: var(--text-2xl);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.68);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.8;
}

/* ===================================
   HERO SECTION (home page)
   =================================== */
.hero-section {
  background: var(--color-navy);
  padding: clamp(var(--space-16), 10vw, var(--space-24)) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 15% 55%, rgba(245, 158, 11, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 85% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 65% 45% at 50% 120%, rgba(245, 158, 11, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.hero-content { display: grid; gap: var(--space-6); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
  padding: 0.4rem var(--space-4);
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero-title .accent-text { color: var(--color-amber); }

.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 52ch;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat { display: grid; gap: 2px; }

.hero-stat strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-amber);
}

.hero-stat span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.hero-image-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ===================================
   ABOUT GRID (2-col image + content)
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-wrap:hover .about-img { transform: scale(1.03); }

.about-content {
  display: grid;
  gap: var(--space-5);
  align-content: start;
}

.about-content .section-label { display: inline-block; }

.about-content h2 {
  font-size: var(--text-xl);
  line-height: 1.18;
}

.about-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.78;
}

.about-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.about-list {
  display: grid;
  gap: var(--space-2);
}

.about-list li {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.55;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
  background: var(--color-navy);
  padding: clamp(var(--space-10), 6vw, var(--space-16)) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  transition: background var(--transition), border-color var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-amber);
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.stat-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* ===================================
   WHY / VALUES GRID (3-col)
   =================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.25);
}

.why-icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.why-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ===================================
   SERVICES PROCESS GRID (4-col)
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.25);
}

.service-icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.service-card h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ===================================
   HAUL / TAG GRID
   =================================== */
.haul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: var(--space-3);
}

.haul-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.haul-item:hover {
  background: var(--color-amber-light);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ===================================
   TEAM CARD
   =================================== */
.team-card-wrap {
  display: flex;
  justify-content: center;
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  max-width: 620px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.team-avatar {
  width: 82px;
  height: 82px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 3px solid var(--color-amber);
}

.team-card h3 { font-size: var(--text-lg); }

.team-role {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: calc(-1 * var(--space-2));
}

.team-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 52ch;
  margin-inline: auto;
}

.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-2);
}

/* ===================================
   TESTIMONIALS GRID
   =================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: grid;
  gap: var(--space-5);
  align-content: start;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--color-amber);
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.85;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-author-info span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  background: var(--color-bg);
}

.cta-box {
  background: var(--color-navy);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 115%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 88% -10%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
  font-size: var(--text-xl);
  color: #ffffff;
  margin-bottom: var(--space-4);
}

.cta-box p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.68);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.78;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-navy-deeper);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  padding-bottom: clamp(var(--space-10), 5vw, var(--space-16));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: #ffffff;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.78;
  max-width: 34ch;
}

.footer-email {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-amber);
  transition: color var(--transition);
  width: fit-content;
}

.footer-email:hover { color: #ffffff; }

.footer-col {
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul { display: grid; gap: var(--space-2); }

.footer-col li,
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.48);
  transition: color var(--transition);
  line-height: 1.55;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-block: var(--space-6);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.5;
}

/* ===================================
   RESPONSIVE — Tablet 1024px
   =================================== */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content   { align-items: center; }
  .hero-badge     { margin-inline: auto; }
  .hero-subtitle  { margin-inline: auto; }
  .hero-btns      { justify-content: center; }
  .hero-stats     { justify-content: center; }

  .hero-image-wrap { max-width: 580px; margin-inline: auto; }
  .hero-image-wrap img { height: 380px; }

  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-brand p { max-width: 52ch; }
}

/* ===================================
   RESPONSIVE — Nav break 900px
   =================================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) var(--space-4) var(--space-8);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: var(--space-4);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }

  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
}

/* ===================================
   RESPONSIVE — Mobile 768px
   =================================== */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }

  .alt-section .about-grid .about-img-wrap { order: -1; }

  .about-img         { height: 280px; }
  .why-grid          { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }

  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-image-wrap img { height: 260px; }
}

/* ===================================
   RESPONSIVE — Small 480px
   =================================== */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }

  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  .about-btns    { flex-direction: column; }
  .team-contacts { flex-direction: column; align-items: center; }
}

/* ===================================
   UTILITY
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}