/* ==========================================================================
   ZOLA EAST AFRICA LTD - CORPORATE LOGISTICS DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary-dark: #0f172a;     /* Deep slate navy */
  --primary-navy: #1e293b;     /* Navy card background */
  --accent-orange: #ff5722;    /* Zola Brand Orange */
  --accent-orange-hover: #e64a19;
  --accent-blue: #0284c7;      /* Zola Brand Electric Blue */
  --accent-blue-hover: #0369a1;
  --accent-cyan: #06b6d4;

  /* Neutral Shades */
  --bg-light: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card-dark: rgba(30, 41, 59, 0.85);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-subtle: #94a3b8;
  --border-color: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --grad-orange: linear-gradient(135deg, #ff5722 0%, #ff8a65 100%);
  --grad-blue: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  --grad-hero: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-orange: 0 10px 25px rgba(255, 87, 34, 0.3);
  --shadow-blue: 0 10px 25px rgba(2, 132, 199, 0.3);

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

  /* Transitions & Layout */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1280px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. TOP CONTACT BAR & HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-subtle);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item i {
  color: var(--accent-orange);
}

.top-bar-badge {
  background: rgba(2, 132, 199, 0.15);
  color: var(--accent-blue);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid rgba(2, 132, 199, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-orange);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--grad-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 87, 34, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: var(--grad-blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}

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

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-orange {
  background: rgba(255, 87, 34, 0.12);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 87, 34, 0.25);
}

.badge-blue {
  background: rgba(2, 132, 199, 0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  overflow: hidden;
  color: var(--text-light);
  padding: 3rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.05);
  animation: heroPulse 20s infinite alternate linear;
}

@keyframes heroPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 2;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0.75rem 0;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, #ff5722 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-subtle);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-number span {
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Calculator Card */
.hero-card {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: var(--text-light);
}

.hero-card-header {
  margin-bottom: 1.5rem;
}

.hero-card-header h3 {
  color: #ffffff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-card-header h3 i {
  color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   6. SECTION STYLES & CARDS
   -------------------------------------------------------------------------- */
.section {
  padding: 3rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: #ffffff;
}

.section-gray {
  background-color: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-dark .section-header p {
  color: var(--text-subtle);
}

/* Services Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: center;
}

/* Service Card */
.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-orange);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(255, 87, 34, 0.08);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent-orange);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

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

/* --------------------------------------------------------------------------
   7. ISUZU AUTHORIZED DISTRIBUTOR FEATURE BANNER
   -------------------------------------------------------------------------- */
.isuzu-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 87, 34, 0.25);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.isuzu-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.isuzu-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.75rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.isuzu-text h2 {
  color: #ffffff;
  font-size: 2rem;
  margin: 0.5rem 0;
}

.isuzu-text p {
  color: var(--text-subtle);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.isuzu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.isuzu-logo-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.isuzu-logo-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   8. FLEET & GALLERY SHOWCASE
   -------------------------------------------------------------------------- */
.fleet-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.fleet-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.08);
}

.fleet-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fleet-body {
  padding: 1.5rem;
}

.fleet-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fleet-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.fleet-specs {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. FORMS & INPUTS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: inherit;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.hero-card .form-control {
  background-color: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.hero-card .form-control:focus {
  border-color: var(--accent-orange);
  background-color: rgba(15, 23, 42, 0.9);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Quote Calculator Result Box */
.calc-result-box {
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
  text-align: center;
}

.calc-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   10. FOOTER STYLES
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--text-subtle);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-subtle);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   11. LIGHTBOX MODAL & INTERACTION
   -------------------------------------------------------------------------- */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-grid, .grid-2, .isuzu-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background-color: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1001;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    color: var(--text-light);
    font-size: 1.15rem;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2rem, 6.5vw, 3rem);
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .isuzu-banner {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-bullet {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .brand-logo img {
    height: 42px;
  }
}

