/* ==========================================================================
   WEBVORA - Agency Website Stylesheet
   Brand: WEBVORA | Tagline: "WE BUILD. YOU GROW."
   Palette: Dark (#080808, #111111), Accents: Orange (#FF9A00), Gold (#FFD166)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-primary: #080808;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --bg-card-hover: #191919;
  --bg-card-subtle: #121212;
  --bg-elevated: #1a1a1a;
  --bg-glass: rgba(17, 17, 17, 0.82);
  --bg-glass-card: rgba(22, 22, 22, 0.75);

  /* Accents */
  --accent-primary: #FF9A00;
  --accent-primary-hover: #e08700;
  --accent-primary-light: rgba(255, 154, 0, 0.15);
  --accent-primary-glow: rgba(255, 154, 0, 0.35);
  --accent-secondary: #FFD166;
  --accent-secondary-glow: rgba(255, 209, 102, 0.25);
  
  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #C5C5C5;
  --text-muted: #7E7E7E;
  --text-dim: #525252;
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-highlight: rgba(255, 154, 0, 0.35);
  --border-accent: #FF9A00;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px rgba(255, 154, 0, 0.18);
  --shadow-glow-strong: 0 0 50px rgba(255, 154, 0, 0.3);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 154, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 40%, rgba(255, 209, 102, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 0% 80%, rgba(255, 154, 0, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Top Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--accent-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

::selection {
  background-color: var(--accent-primary);
  color: #000000;
}

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

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Typography & Utilities
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw + 1rem, 3.85rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

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

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

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

.section {
  padding: 6.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
  animation: pulse-glow 2s infinite;
}

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

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   4. Header & Navbar
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), border-color var(--transition-normal), backdrop-filter var(--transition-normal), transform var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

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

/* Brand Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-transform: uppercase;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text span {
  color: var(--accent-primary);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--accent-primary);
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--border-highlight);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 2.5px 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid var(--border-medium);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 1.5rem) 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
  }

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

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
  }

  .header-desktop-btn {
    display: none;
  }
}

/* Mobile backdrop overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   5. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.35;
}

.btn-primary {
  background: var(--accent-primary);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 154, 0, 0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-primary:hover {
  background: #ffaa2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 154, 0, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn svg, .btn i {
  transition: transform var(--transition-fast);
}

.btn:hover svg.arrow,
.btn:hover .icon-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 154, 0, 0.14) 0%, rgba(255, 154, 0, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: hero-glow-breathe 6s ease-in-out infinite alternate;
}

@keyframes hero-glow-breathe {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 154, 0, 0.08);
  border: 1px solid rgba(255, 154, 0, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 154, 0, 0.1);
}

.hero-pill-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent-primary); }
  50% { opacity: 0.4; transform: scale(0.85); box-shadow: 0 0 4px var(--accent-primary); }
}

.hero-title {
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-proof-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 154, 0, 0.12);
  border: 1px solid var(--border-highlight);
  border-radius: 50%;
  color: var(--accent-primary);
  font-size: 1rem;
}

.hero-proof-text {
  font-size: 0.875rem;
}

.hero-proof-text strong {
  color: var(--text-primary);
  display: block;
  font-weight: 700;
}

.hero-proof-text span {
  color: var(--text-muted);
}

/* Hero Showcase Visual */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.hero-mockup-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 154, 0, 0.18) 0%, transparent 60%);
  filter: blur(50px);
  z-index: 0;
}

.hero-device-scene {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: transform var(--transition-normal);
}

.hero-device-scene:hover {
  transform: translateY(-4px);
}

/* Laptop Mockup Frame */
.laptop-frame {
  width: 100%;
  max-width: 580px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 0 10px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 154, 0, 0.08);
  position: relative;
}

.laptop-camera-notch {
  width: 100%;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laptop-camera-dot {
  width: 5px;
  height: 5px;
  background: #333333;
  border-radius: 50%;
}

.laptop-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.laptop-frame:hover .laptop-screen img {
  transform: scale(1.03);
}

.laptop-base {
  width: calc(100% + 40px);
  margin-left: -20px;
  height: 14px;
  background: linear-gradient(180deg, #2b2b2b 0%, #151515 100%);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.laptop-base-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: #0e0e0e;
  border-radius: 0 0 6px 6px;
}

/* Floating Metrics on Mockup */
.mockup-floating-badge {
  position: absolute;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 154, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: float-badge 4s ease-in-out infinite;
}

.mockup-floating-badge.badge-top-left {
  top: 15%;
  left: -20px;
}

.mockup-floating-badge.badge-bottom-right {
  bottom: 25px;
  right: -15px;
  animation-delay: 2s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 154, 0, 0.15);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.floating-badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.floating-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
  }
  .mockup-floating-badge {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. Infinite Brand Marquee Ticker
   -------------------------------------------------------------------------- */
.marquee-strip {
  background: #0d0d0d;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
  gap: 3rem;
}

.marquee-strip:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-item .highlight {
  color: var(--accent-primary);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. Trust Indicators Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.2rem 0;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  transition: transform var(--transition-fast);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 154, 0, 0.1);
  border: 1px solid rgba(255, 154, 0, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.trust-item:hover .trust-icon-box {
  transform: scale(1.08);
  background: var(--accent-primary);
  color: #000000;
}

.trust-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.trust-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   9. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .btn {
    padding: 0.7rem 1.15rem;
    font-size: 0.9rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
  .btn-lg {
    padding: 0.8rem 1.35rem;
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .section {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .btn {
    font-size: 0.86rem;
    padding: 0.65rem 0.95rem;
    gap: 0.35rem;
  }
  .btn-lg {
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
