/* ==========================================================================
   DESIGNS BY KOA - LUXURY ARCHITECTURAL RENDERING STUDIO
   Core Design System & Global Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@500;600;700;800&display=swap');

:root {
  /* Color Palette - Obsidian Architectural Luxury */
  --bg-primary: #090a0d;
  --bg-secondary: #101217;
  --bg-card: rgba(22, 25, 34, 0.75);
  --bg-card-hover: rgba(28, 32, 44, 0.85);
  --bg-card-solid: #151821;
  --bg-elevated: #1a1e29;
  
  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(212, 175, 85, 0.35);

  /* Accents - Warm Titanium & Architectural Bronze / Gold */
  --accent-gold: #cfa858;
  --accent-gold-light: #e5c37d;
  --accent-gold-glow: rgba(207, 168, 88, 0.18);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.15);
  --accent-cyan: #0ea5e9;

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-light: #ffffff;

  /* Fonts */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --header-height: 80px;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 8px 30px rgba(207, 168, 88, 0.25);
  
  --backdrop-blur: blur(16px);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(207, 168, 88, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(14, 165, 233, 0.04) 0%, transparent 45%),
    linear-gradient(to bottom, #090a0d, #0d0f14 40%, #090a0d 100%);
  background-attachment: fixed;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

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

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

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

/* Architectural Grid & Section Layout */
.section {
  padding: 100px 0;
  position: relative;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(207, 168, 88, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-light);
  margin-bottom: 20px;
}

.badge-tag.badge-emerald {
  background: var(--accent-emerald-glow);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
}

.section-title {
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-gold-light) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons & CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b89142 100%);
  color: #0b0c10;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(207, 168, 88, 0.4);
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--accent-gold-light);
}

.btn-outline:hover {
  background: rgba(207, 168, 88, 0.12);
  border-color: var(--accent-gold);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(9, 10, 13, 0.85);
  backdrop-filter: var(--backdrop-blur);
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  background: rgba(207, 168, 88, 0.12);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.brand-symbol::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-symbol {
  box-shadow: 0 0 16px rgba(207, 168, 88, 0.4);
  border-color: var(--accent-gold-light);
}

.brand-logo:hover .brand-symbol::after {
  transform: rotate(225deg);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}

.brand-text .accent-word,
.brand-logo .accent-word {
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-left: 6px;
  text-shadow: 0 0 20px rgba(207, 168, 88, 0.35);
  transition: var(--transition-smooth);
}

.brand-logo:hover .accent-word {
  color: var(--accent-gold-light);
  text-shadow: 0 0 24px rgba(207, 168, 88, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-smooth);
  z-index: 1002;
  flex-shrink: 0;
}

.mobile-menu-btn:hover, .mobile-menu-btn:focus-visible {
  background: rgba(207, 168, 88, 0.15);
  border-color: var(--accent-gold);
  outline: none;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent-gold);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   Mobile Navigation Drawer & Overlay
   -------------------------------------------------------------------------- */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  background: #0d0f15;
  border-left: 1px solid var(--border-accent);
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.85);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-drawer-close:hover, .mobile-drawer-close:focus-visible {
  color: #fff;
  border-color: var(--accent-gold);
  background: rgba(207, 168, 88, 0.15);
  outline: none;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.mobile-nav-link span {
  font-size: 0.75rem;
  font-family: var(--font-display);
  color: var(--accent-gold);
  font-weight: 800;
  opacity: 0.8;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  background: rgba(207, 168, 88, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-full {
  width: 100%;
}

.mobile-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.drawer-contact-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 160px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  margin-bottom: 24px;
}

.hero-subhead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

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

.stat-item h4 {
  font-size: 1.85rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-solid);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.03);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(16, 18, 23, 0.85);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.overlay-info h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.overlay-info p {
  font-size: 0.8rem;
  color: var(--accent-gold-light);
}

.overlay-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(207, 168, 88, 0.15);
  border: 1px solid var(--accent-gold);
  border-radius: 6px;
  color: var(--accent-gold);
  font-weight: 600;
  white-space: nowrap;
}

/* Value Highlights Grid */
.trust-bar {
  padding: 30px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(16, 18, 23, 0.4);
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* CTA Banner Section */
.cta-banner-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.cta-banner-card {
  background: linear-gradient(135deg, #1c212d 0%, #101217 100%);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}

.cta-banner-desc {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-banner-card {
    padding: 36px 18px;
    border-radius: 16px;
  }
  .cta-banner-title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    margin-bottom: 14px;
  }
  .cta-banner-desc {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cta-banner-actions .btn {
    width: 100%;
  }
}

/* Footer Styling */
.site-footer {
  padding: 80px 0 40px;
  background: #060709;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 0.92rem;
  max-width: 340px;
}

.footer-col h5 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .brand-text {
    font-size: 1.15rem;
  }
  .brand-text .accent-word {
    font-size: 1.15rem;
  }
  .nav-actions {
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions .btn {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  .site-header {
    height: 68px;
  }
  .site-header .container {
    padding: 0 16px;
  }
  .nav-container {
    justify-content: space-between;
    width: 100%;
  }
  .hero-section {
    padding-top: 105px;
    padding-bottom: 50px;
  }
  .hero-grid {
    gap: 32px;
  }
  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-desc {
    font-size: 0.95rem;
  }
  .badge-tag {
    font-size: clamp(0.68rem, 2.3vw, 0.76rem);
    padding: 5px 12px;
    margin-bottom: 12px;
    gap: 6px;
  }
  .hero-section {
    padding-top: 88px;
    padding-bottom: 36px;
  }
  .hero-headline {
    font-size: clamp(1.65rem, 7vw, 2.35rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 16px;
  }
  .hero-headline br {
    display: none;
  }
  h2, .section-title {
    font-size: clamp(1.35rem, 5.5vw, 2rem) !important;
  }
  .hero-subhead {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.92rem;
  }
  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding-top: 18px;
    width: 100%;
  }
  .stat-item {
    min-width: 0;
    text-align: center;
  }
  .stat-item h4 {
    font-size: clamp(1.15rem, 4vw, 1.45rem) !important;
    line-height: 1.1;
    margin-bottom: 2px;
  }
  .stat-item p {
    font-size: clamp(0.62rem, 2vw, 0.74rem) !important;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }
  .hero-badge-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.95rem;
  }
  .brand-text .accent-word {
    font-size: 0.95rem;
    margin-left: 3px;
  }
  .brand-symbol {
    width: 28px;
    height: 28px;
  }
  .brand-symbol::after {
    width: 10px;
    height: 10px;
  }
  .hero-headline {
    font-size: clamp(1.48rem, 6.8vw, 1.75rem) !important;
  }
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
  }
  .stat-item h4 {
    font-size: 1.1rem !important;
  }
  .stat-item p {
    font-size: 0.6rem !important;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .hero-headline {
    font-size: 1.4rem !important;
  }
  .brand-text {
    font-size: 0.88rem;
  }
  .brand-text .accent-word {
    font-size: 0.88rem;
  }
}
