/* ==========================================================================
   DIGIMOZO DESIGN SYSTEM & MAIN STYLESHEET
   Visual Inspiration: Nutriholic Diet (Deep Forest Emerald, Warm Terracotta/Coral,
   Floating Pill Glassmorphic Header, Refined Typography, Layered Surfaces)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  /* Nutriholic-Inspired Primary Palette (Deep Botanical Emeralds) */
  --color-primary: #125F50;
  --color-primary-dark: #0C3E34;
  --color-primary-deep: #07251F;
  --color-primary-light: #1A7866;
  --color-primary-soft: rgba(18, 95, 80, 0.08);
  --color-primary-border: rgba(18, 95, 80, 0.16);

  /* Nutriholic-Inspired Accent Palette (Warm Terracotta & Coral & Peach) */
  --color-accent: #E07B52;
  --color-accent-hover: #CF6840;
  --color-accent-warm: #E8A67C;
  --color-accent-soft: rgba(224, 123, 82, 0.12);
  --color-accent-glow: rgba(224, 123, 82, 0.35);

  /* Compatibility Fallbacks */
  --mint: #125F50;
  --mint-hover: #1A7866;
  --mint-light: #EBF5F2;
  --mint-dark: #0C3E34;
  --mint-glow: rgba(18, 95, 80, 0.25);

  /* Canvas & Neutral Surfaces */
  --bg-canvas: #F8FAF9;
  --bg-white: #FFFFFF;
  --bg-offwhite: #F4F6F5;
  --bg-warm: #FBF9F6;
  --bg-gray: #F0F4F2;
  --bg-dark: #07251F;
  --bg-dark-card: #0E352C;
  --bg-dark-subtle: #144439;

  /* Typography Colors */
  --text-primary: #111A18;
  --text-secondary: #475551;
  --text-muted: #6B7C77;
  --text-light: #94A39F;
  --text-white: #FFFFFF;

  /* Borders & Glass Dividers */
  --border-subtle: rgba(18, 95, 80, 0.10);
  --border-light: rgba(18, 95, 80, 0.14);
  --border-warm: rgba(224, 123, 82, 0.22);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-mint: rgba(18, 95, 80, 0.28);

  /* Typography Fonts - 100% Poppins */
  --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 95, 80, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(18, 95, 80, 0.07), 0 2px 6px -2px rgba(18, 95, 80, 0.04);
  --shadow-lg: 0 16px 36px -6px rgba(18, 95, 80, 0.10), 0 6px 12px -2px rgba(18, 95, 80, 0.05);
  --shadow-xl: 0 24px 54px -10px rgba(7, 37, 31, 0.16);
  --shadow-glow-accent: 0 10px 30px rgba(224, 123, 82, 0.32);
  --shadow-glow-emerald: 0 10px 30px rgba(18, 95, 80, 0.25);

  /* Layout */
  --max-width: 1240px;
  --nav-height: 72px;
}

/* Reset & Box Sizing - Global Poppins Applied */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

button, input, textarea, select {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

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

/* Fail-safe containment for portfolio showcase elements */
.portfolio-cards-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.portfolio-slide-card {
  box-sizing: border-box;
  max-width: 100%;
}

.slide-media-wrap {
  overflow: hidden;
  max-height: 520px;
}

.slide-img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

ul, ol {
  list-style: none;
}

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

.container-narrow {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers - Modern Poppins Styling */
.serif-heading {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.serif-italic {
  font-family: 'Poppins', sans-serif !important;
  font-style: italic;
  font-weight: 600;
}

/* ==========================================================================
   HEADER / TRANSPARENT OVERLAY & FROSTED GLASS ON SCROLL
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: var(--nav-height);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 1000;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled,
.site-header.subpage-header {
  background: rgba(7, 37, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 800;
  color: #00D09C;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-logo-img {
  max-height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.brand-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: #00D09C;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #00D09C;
  animation: pulse-dot 2.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  padding: 8px 2px;
  transition: color 0.25s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-link:hover,
.nav-link.active {
  color: #00D09C;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00D09C;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header Buttons */
.site-header .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  text-decoration: none;
}

.site-header .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #00D09C;
  color: #00D09C;
  box-shadow: 0 0 18px rgba(0, 208, 156, 0.3);
}

.site-header .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(224, 123, 82, 0.30);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.site-header .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(224, 123, 82, 0.45);
  background: linear-gradient(135deg, #E5865E 0%, var(--color-accent) 100%);
}

.site-header .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(224, 123, 82, 0.30);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(224, 123, 82, 0.45);
  background: linear-gradient(135deg, #E5865E 0%, var(--color-accent) 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--border-light);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 95, 80, 0.28);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu-drawer {
  position: fixed;
  top: calc(var(--nav-height) + 24px);
  left: 3%;
  width: 94%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(7, 37, 31, 0.22);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.98);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-menu-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   COMMON COMPONENTS: BADGES, OVERLAYS, HEADERS
   ========================================================================== */

/* Badges & Tags */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.badge-mint {
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-color: var(--color-primary-border);
}

.badge-accent {
  background: var(--color-accent-soft);
  color: var(--color-accent-hover);
  border-color: var(--border-warm);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

/* Play Button Overlay (Glassmorphic) */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.play-btn-overlay svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
  margin-left: 3px;
  transition: all 0.25s ease;
}

.play-btn-overlay:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--color-accent);
  box-shadow: 0 16px 36px var(--color-accent-glow);
  border-color: rgba(255, 255, 255, 0.8);
}

.play-btn-overlay:hover svg {
  fill: #FFFFFF;
  transform: scale(1.08);
}

/* Section Dividers & Headers */
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.section-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
}

/* ==========================================================================
   FOOTER (RICH BOTANICAL FOREST GREEN PALETTE)
   ========================================================================== */

.site-footer {
  background: linear-gradient(180deg, #0A2E26 0%, #061F19 100%);
  color: #FFFFFF;
  padding: 90px 0 40px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(224, 123, 82, 0.12) 0%, rgba(10, 46, 38, 0) 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

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

.footer-brand-col .brand-logo {
  color: #FFFFFF;
}

.footer-brand-col p {
  font-size: 14px;
  color: #A3C2BB;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 310px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--color-accent-glow);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-warm);
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 14px;
  color: #C0D8D2;
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

/* Trust Badges Bar */
.footer-trust-bar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(224, 123, 82, 0.18);
  border: 1px solid rgba(224, 123, 82, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-warm);
  font-size: 16px;
}

.trust-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.trust-info p {
  font-size: 12px;
  color: #93B5AD;
}

.trust-seals {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seal-pill {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #82A9A0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   MODAL (VIDEO PREVIEW)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 37, 31, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--color-accent);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   SCROLL REVEAL & MICRO-ANIMATION UTILITIES
   ========================================================================== */

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes subtleFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll.animate-in {
  animation: subtleFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.18s; }
.reveal-delay-3 { animation-delay: 0.26s; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (GLOBAL)
   ========================================================================== */

@media (max-width: 1024px) {
  .site-header {
    width: 96%;
    margin-top: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .footer-brand-col {
    grid-column: span 3;
  }
  .footer-grid .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  .site-header {
    width: 95%;
    top: 8px;
    margin-top: 8px;
    border-radius: 40px;
  }
  .main-nav,
  .header-actions .btn-outline {
    display: none;
  }
  .header-actions .btn-primary,
  .header-actions .btn-dark {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
    max-height: 36px;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .mobile-nav-toggle {
    display: flex;
    flex-shrink: 0;
  }
  .header-container {
    padding: 0 18px;
  }
  .section-title {
    font-size: 36px;
  }
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand-col,
  .footer-grid .footer-brand-col {
    grid-column: span 2;
  }
  .footer-trust-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: 96%;
    top: 6px;
    margin-top: 6px;
    border-radius: 999px;
  }
  .header-container {
    padding: 0 14px;
  }
  .brand-logo {
    font-size: 19px;
    gap: 6px;
  }
  .brand-logo-img {
    max-height: 28px;
    max-width: 120px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn-primary {
    padding: 6px 12px;
    font-size: 11px;
    max-height: 32px;
  }
  .mobile-nav-toggle {
    width: 24px;
    height: 18px;
  }
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-col,
  .footer-grid .footer-brand-col {
    grid-column: span 1;
  }
  .section-title {
    font-size: 28px;
  }
}
