/**
 * Premium Petrol Pump Dealership Website
 * Professional, balanced design with sophisticated colors
 */
 
 /*Website Logo*/
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;   /* adjust size */
  height: auto;
}

.brand-text {
  font-size: 18px;
}

/* =========================
   Design Tokens
   ========================= */
:root {
  /* Balanced color palette - not too light, not too dark */
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f26;
  --bg-elevated: #232930;
  --bg-card: #2a3039;
  
  /* Text colors - balanced readability */
  --text-primary: #e8edf2;
  --text-secondary: #b8c5d6;
  --text-muted: #8a9aad;
  
  /* Premium accent colors */
  --accent-gold: #f4a261;
  --accent-gold-light: #f8b882;
  --accent-gold-dark: #e89150;
  --accent-blue: #2a9d8f;
  --accent-blue-light: #3db9a8;
  
  /* Status colors */
  --success: #52b788;
  --warning: #f4a261;
  --error: #e76f51;
  
  /* Borders and dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  
  /* Shadows for depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
  
  /* Glows for premium feel */
  --glow-gold: 0 0 20px rgba(244, 162, 97, 0.15);
  --glow-blue: 0 0 20px rgba(42, 157, 143, 0.15);
  
  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   Reset & Base
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Premium gradient background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(42, 157, 143, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(244, 162, 97, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 12px 24px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 20px;
}

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

/* =========================
   Container & Layout
   ========================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

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

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

@media (min-width: 768px) {
  .grid {
    gap: 32px;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.muted {
  color: var(--text-muted);
  line-height: 1.6;
}

.fineprint {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =========================
   Header & Navigation
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(15, 20, 25, 0.8);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform var(--transition-base);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  box-shadow: var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Navigation Toggle */
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-medium);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  z-index: 101;
}

.nav-toggle:hover {
  background: var(--bg-card);
  border-color: var(--border-strong);
}

.nav-toggle-bars {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-primary);
  border-radius: 2px;
  position: relative;
  transition: all var(--transition-base);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle.is-active .nav-toggle-bars {
  background: transparent;
}

.nav-toggle.is-active .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Navigation Menu */
.nav {
  display: none;
  position: fixed;
  top: 77px;
  right: 24px;
  left: 24px;
  max-width: 400px;
  margin-left: auto;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(20px);
}

.nav.is-active {
  display: flex;
  animation: slideIn var(--transition-base);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover {
  background: var(--bg-card);
  color: var(--text-primary);
  transform: translateX(4px);
}

.nav-link.is-active {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.15), rgba(244, 162, 97, 0.05));
  color: var(--accent-gold-light);
  border: 1px solid rgba(244, 162, 97, 0.2);
}

.nav-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-primary);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--glow-gold);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: var(--bg-primary);
  transform: translateX(0) translateY(-2px);
  box-shadow: 0 0 30px rgba(244, 162, 97, 0.3);
}

/* Desktop Navigation */
@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
  
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 8px;
    max-width: none;
  }
  
  .nav-link {
    padding: 8px 16px;
  }
  
  .nav-link:hover {
    transform: translateY(-2px);
  }
  
  .nav-cta {
    margin-top: 0;
    margin-left: 8px;
  }
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-primary);
  box-shadow: var(--shadow-sm), var(--glow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(244, 162, 97, 0.4);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* =========================
   Hero Section
   ========================= */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 100px 0 120px;
  }
}

.hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 968px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.hero-copy {
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.15), rgba(42, 157, 143, 0.05));
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-blue-light);
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(42, 157, 143, 0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.stat {
  text-align: center;
}

@media (min-width: 768px) {
  .stat {
    text-align: left;
  }
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero Card */
.hero-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
}

.checklist {
  list-style: none;
  margin: 24px 0;
}

.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-secondary);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* =========================
   Cards
   ========================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  color: var(--accent-gold-light);
  margin-bottom: 16px;
}

/* =========================
   Gallery Section
   ========================= */
.gallery-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-slider {
  position: relative;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .gallery-slide img {
    height: 500px;
  }
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-medium);
  background: rgba(15, 20, 25, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-base);
  z-index: 10;
}

.gallery-nav:hover {
  background: var(--bg-elevated);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
  left: 16px;
}

.gallery-nav-next {
  right: 16px;
}

/* Fade animation */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Testimonials
   ========================= */
.quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  transition: all var(--transition-base);
}

.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent-gold-light);
}

.quote blockquote {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.quote figcaption {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* =========================
   CTA Section
   ========================= */
.cta {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(244, 162, 97, 0.1), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(42, 157, 143, 0.1), transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-wrap: nowrap;
  }
}

.cta h2 {
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   Footer
   ========================= */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-medium);
  padding: 48px 0;
  margin-top: 80px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

/* =========================
   Forms
   ========================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.input,
.select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: all var(--transition-base);
}

.input:focus,
.select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.input::placeholder {
  color: var(--text-muted);
}

/* .input.is-invalid,
.select.is-invalid {
  border-color: var(--error);
} */
.input.is-invalid,
.select.is-invalid,
.input.has-error,
.select.has-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.1);
}

.field-error {
  color: var(--error);
  font-size: 0.875rem;
  display: block;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-status {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-top: 16px;
}

.form-status.is-success {
  background: rgba(82, 183, 136, 0.1);
  border: 1px solid rgba(82, 183, 136, 0.3);
  color: var(--success);
}

.form-status.is-error {
  background: rgba(231, 111, 81, 0.1);
  border: 1px solid rgba(231, 111, 81, 0.3);
  color: var(--error);
}

.form-status.is-loading {
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid rgba(244, 162, 97, 0.3);
  color: var(--accent-gold);
}

/* =========================
   Page Hero
   ========================= */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary), transparent);
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .page-hero {
    padding: 120px 0 80px;
  }
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero .lead {
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   Contact List
   ========================= */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a {
  color: var(--accent-gold);
  transition: color var(--transition-base);
}

.contact-item a:hover {
  color: var(--accent-gold-light);
}

/* =========================
   Utilities
   ========================= */
.bullets {
  list-style: none;
  padding-left: 0;
}

.bullets li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
}

.bullets li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent-gold);
  font-size: 1.5rem;
  line-height: 1;
}

.note {
  padding: 16px;
  background: rgba(42, 157, 143, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 24px;
}

.note strong {
  color: var(--accent-blue-light);
}

/* =========================
   Responsive Adjustments
   ========================= */
@media (max-width: 767px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  
  .stat {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}