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

:root {
  --primary: #0A4D4E;
  --primary-light: #12686A;
  --primary-dark: #063334;
  --accent: #14B8A6;
  --accent-soft: #E6F8F5;
  --secondary: #3D7A68;
  --sage: #7FA99B;
  --sage-light: #EDF5F2;
  --bg-main: #F8FAF9;
  --bg-alt: #F0F5F3;
  --card-bg: #FFFFFF;
  --text-main: #1C2D2F;
  --text-muted: #526B6D;
  --text-light: #819899;
  --border-light: #E1ECE8;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(10, 77, 78, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 77, 78, 0.08);
  --shadow-lg: 0 16px 36px rgba(10, 77, 78, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-alt {
  background-color: var(--bg-alt);
}

.section-teal {
  background-color: var(--primary);
  color: var(--white);
}

.section-teal .section-title,
.section-teal .section-subtitle {
  color: var(--white);
}

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

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--accent-soft);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.badge-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 104, 106, 0.3);
}

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

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

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(10, 77, 78, 0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(10, 77, 78, 0.12);
  border-bottom-color: rgba(20, 184, 166, 0.2);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text-main);
  padding: 8px 4px;
  position: relative;
}

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

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

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

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

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(6, 51, 52, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  min-width: 280px;
  max-width: 420px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.drawer-nav {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.drawer-nav li {
  width: 100%;
  text-align: center;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.drawer-cta {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.drawer-cta .btn {
  width: 100%;
}

.home-hero {
  min-height: 84vh;
  background-image: linear-gradient(135deg, rgba(10, 77, 78, 0.92) 0%, rgba(6, 51, 52, 0.85) 100%), url('./images/Spending\ time\ in\ nature\ and\ outdoor\ greenery.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  padding: 48px 0 70px;
  overflow: hidden;
}

.hero-spatial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-spatial-content {
  text-align: left;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-pulse-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.pulse-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(20, 184, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

.hero-spatial-stage {
  perspective: 1400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spatial-viewport {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-spatial-stage:hover .spatial-viewport {
  transform: rotateY(-3deg) rotateX(2deg);
}

.spatial-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-40px);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.55) 0%, rgba(10, 77, 78, 0) 70%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite alternate;
}

.spatial-orbital-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.ring-primary {
  width: 460px;
  height: 460px;
  border: 1.5px dashed rgba(20, 184, 166, 0.45);
  transform: translate(-50%, -50%) rotateX(68deg) rotateY(-25deg);
  animation: spinOrbital 24s linear infinite;
}

.ring-secondary {
  width: 520px;
  height: 520px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotateX(55deg) rotateY(35deg);
  animation: spinOrbitalRev 30s linear infinite;
}

@keyframes spinOrbital {
  from {
    transform: translate(-50%, -50%) rotateX(68deg) rotateY(-25deg) rotateZ(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(68deg) rotateY(-25deg) rotateZ(360deg);
  }
}

@keyframes spinOrbitalRev {
  from {
    transform: translate(-50%, -50%) rotateX(55deg) rotateY(35deg) rotateZ(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(55deg) rotateY(35deg) rotateZ(0deg);
  }
}

@keyframes orbPulse {
  0% {
    transform: translate(-50%, -50%) translateZ(-40px) scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) translateZ(-40px) scale(1.15);
    opacity: 0.9;
  }
}

.spatial-cube {
  position: absolute;
  width: 320px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateY(-15deg) rotateX(8deg);
  transition: transform 0.85s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.cube-face {
  position: absolute;
  width: 320px;
  height: 380px;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.face-front {
  transform: rotateY(0deg) translateZ(160px);
}

.face-right {
  transform: rotateY(90deg) translateZ(160px);
}

.face-back {
  transform: rotateY(180deg) translateZ(160px);
}

.face-left {
  transform: rotateY(-90deg) translateZ(160px);
}

.spatial-card-media {
  position: relative;
  height: 64%;
  overflow: hidden;
}

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

.cube-face:hover .spatial-img {
  transform: scale(1.08);
}

.spatial-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 51, 52, 0.88);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.spatial-card-info {
  padding: 16px 18px;
  background: rgba(10, 77, 78, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.spatial-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.spatial-metric-item {
  display: flex;
  flex-direction: column;
}

.spatial-metric-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.spatial-metric-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.spatial-cube-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: rgba(6, 51, 52, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 20;
  position: relative;
  transform: translateZ(0);
  transform-style: flat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cube-nav-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  opacity: 0.88;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
}

.cube-nav-btn:hover {
  opacity: 1;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.cube-nav-btn.active {
  opacity: 1;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.45);
}

.spatial-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-card-top {
  top: 10px;
  right: -15px;
  transform: translateZ(65px) rotateY(-8deg);
  animation: floatOrb1 5s ease-in-out infinite;
}

.floating-card-top-left {
  top: 20px;
  left: -20px;
  transform: translateZ(85px) rotateX(-5deg);
  animation: floatOrb4 6.5s ease-in-out infinite;
}

.floating-card-bottom-left {
  bottom: 25px;
  left: -20px;
  transform: translateZ(80px) rotateX(4deg);
  animation: floatOrb2 6s ease-in-out infinite;
}

.floating-card-bottom-right {
  bottom: -10px;
  right: 15px;
  transform: translateZ(55px);
  animation: floatOrb3 5.5s ease-in-out infinite;
}

.floating-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.floating-card-details h5 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.floating-card-details p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.2;
}

@keyframes floatOrb1 {
  0%, 100% {
    transform: translateZ(65px) translateY(0) rotateY(-8deg);
  }
  50% {
    transform: translateZ(65px) translateY(-10px) rotateY(-4deg);
  }
}

@keyframes floatOrb2 {
  0%, 100% {
    transform: translateZ(80px) translateY(0) rotateX(4deg);
  }
  50% {
    transform: translateZ(80px) translateY(8px) rotateX(1deg);
  }
}

@keyframes floatOrb3 {
  0%, 100% {
    transform: translateZ(55px) translateY(0);
  }
  50% {
    transform: translateZ(55px) translateY(-8px);
  }
}

@keyframes floatOrb4 {
  0%, 100% {
    transform: translateZ(85px) translateY(0) rotateX(-5deg);
  }
  50% {
    transform: translateZ(85px) translateY(-8px) rotateX(-2deg);
  }
}

.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

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

.page-hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-hero-img-wrap {
  position: relative;
}

.page-hero-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.page-hero-badge-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-light);
}

.badge-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-card-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.badge-card-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-layout.reversed {
  direction: rtl;
}

.split-layout.reversed > * {
  direction: ltr;
}

.split-image-wrap {
  position: relative;
}

.split-image {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.split-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-main);
  font-weight: 500;
}

.feature-list-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background-color: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.card-link:hover {
  color: var(--accent);
  gap: 10px;
}

.media-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.media-card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.media-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-card:hover .media-card-img {
  transform: scale(1.06);
}

.media-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(10, 77, 78, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.media-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  text-align: center;
}

.media-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.35;
  text-align: center;
}

.media-card-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.media-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  font-size: 0.86rem;
  color: var(--text-light);
  text-align: center;
}

.asym-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.asym-panel-main {
  background-color: var(--white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.asym-panel-main .btn {
  align-self: flex-start;
}

.asym-panel-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-mini-card {
  background-color: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.asym-mini-card:hover {
  transform: translateX(6px);
  border-color: var(--accent);
}

.asym-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.asym-mini-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.asym-mini-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.checklist-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.checklist-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.checklist-item:hover {
  background-color: var(--accent-soft);
  border-color: var(--accent);
}

.checklist-item.checked {
  background-color: var(--accent-soft);
  border-color: var(--accent);
}

.checklist-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--sage);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.checklist-item.checked .checklist-checkbox {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.checklist-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.checklist-item.checked .checklist-text {
  text-decoration: line-through;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 2;
}

.timeline-item.left .timeline-dot {
  right: -10px;
}

.timeline-item.right .timeline-dot {
  left: -10px;
}

.timeline-content {
  background-color: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.timeline-step {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background-color: var(--white);
  transition: var(--transition);
}

.faq-header:hover {
  background-color: var(--bg-alt);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding-right: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  background-color: var(--white);
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.form-box {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 22px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-main);
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success-banner {
  display: none;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: slideInDown 0.4s ease forwards;
}

.form-success-banner.active {
  display: flex;
}

.form-success-banner i {
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 70px 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.newsletter-inline {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 12px;
}

.newsletter-inline input {
  flex-grow: 1;
  padding: 14px 22px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.newsletter-inline .btn {
  flex-shrink: 0;
}

.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand p {
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-spatial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .spatial-viewport {
    max-width: 440px;
    height: 440px;
  }
  .page-hero-text h1 {
    font-size: 2.6rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .asym-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .nav-menu, .header-actions .btn {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .home-hero {
    text-align: center;
  }
  .hero-spatial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-spatial-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-spatial-content .badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-pulse-indicator {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }
  .hero-spatial-stage {
    margin: 0 auto;
  }
  .spatial-viewport {
    max-width: 340px;
    height: 400px;
  }
  .spatial-cube {
    width: 270px;
    height: 330px;
  }
  .cube-face {
    width: 270px;
    height: 330px;
  }
  .face-front {
    transform: rotateY(0deg) translateZ(135px);
  }
  .face-right {
    transform: rotateY(90deg) translateZ(135px);
  }
  .face-back {
    transform: rotateY(180deg) translateZ(135px);
  }
  .face-left {
    transform: rotateY(-90deg) translateZ(135px);
  }
  .spatial-floating-card {
    padding: 8px 12px;
  }
  .floating-card-top {
    top: -5px;
    right: -5px;
  }
  .floating-card-top-left {
    display: none;
  }
  .floating-card-bottom-left {
    bottom: 5px;
    left: -5px;
  }
  .floating-card-bottom-right {
    display: none;
  }
  .page-hero {
    text-align: center;
    padding: 70px 0 60px;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .page-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-hero-text .badge {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-text h1 {
    text-align: center;
    font-size: 2.3rem;
  }
  .page-hero-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }
  .page-hero-text .hero-actions {
    justify-content: center;
    width: 100%;
  }
  .page-hero-img-wrap {
    margin: 0 auto;
    max-width: 440px;
    width: 100%;
  }
  .page-hero-img {
    height: 300px;
    margin: 0 auto;
  }
  .page-hero-badge-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: max-content;
    max-width: 92%;
    text-align: left;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .split-image-wrap {
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
  }
  .split-image {
    height: 320px;
    margin: 0 auto;
  }
  .split-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .split-content .badge {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
  .split-content h3 {
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 16px;
    width: 100%;
  }
  .split-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }
  .split-content .btn {
    align-self: center;
    margin: 0 auto;
    text-align: center;
  }
  .split-content .feature-list {
    text-align: left;
    align-self: stretch;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 30px;
  }
  .split-content .feature-list-item {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .split-content .feature-list-item span,
  .split-content .feature-list-item div {
    text-align: left;
  }
  .asym-panel-main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    width: 100%;
  }
  .asym-panel-main .badge {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
  .asym-panel-main .section-title,
  .asym-panel-main h3,
  .asym-panel-main h2 {
    text-align: center;
    width: 100%;
  }
  .asym-panel-main .section-subtitle,
  .asym-panel-main p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }
  .asym-panel-main .btn {
    align-self: center;
    margin: 0 auto;
    text-align: center;
  }
  .asym-panel-main .feature-list {
    text-align: left;
    align-self: stretch;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 30px;
  }
  .asym-panel-main .feature-list-item {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .asym-panel-main .feature-list-item strong,
  .asym-panel-main .feature-list-item p,
  .asym-panel-main .feature-list-item span,
  .asym-panel-main .feature-list-item div {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 54px;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
    left: 10px;
    right: auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .newsletter-inline {
    flex-direction: column;
  }
  .newsletter-inline .btn {
    width: 100%;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-banner {
    padding: 44px 24px;
  }
  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .page-hero-text h1 {
    font-size: 1.95rem;
  }
  h2,
  .section-title,
  .cta-banner h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  h3,
  .split-content h3,
  .asym-panel-main h3,
  .timeline-content h3,
  .guide-content h3,
  .shield-card h3,
  .food-card h3,
  .habit-step h3,
  .contact-card h3,
  .pillar-body h3,
  .card-title,
  .media-card-title,
  .checklist-title,
  .faq-question {
    font-size: 1.2rem;
    line-height: 1.35;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .page-hero-badge-card {
    padding: 12px 16px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    max-width: 95%;
  }
  .spatial-viewport {
    max-width: 290px;
    height: 360px;
  }
  .spatial-cube {
    width: 240px;
    height: 310px;
  }
  .cube-face {
    width: 240px;
    height: 310px;
  }
  .face-front {
    transform: rotateY(0deg) translateZ(120px);
  }
  .face-right {
    transform: rotateY(90deg) translateZ(120px);
  }
  .face-back {
    transform: rotateY(180deg) translateZ(120px);
  }
  .face-left {
    transform: rotateY(-90deg) translateZ(120px);
  }
  .spatial-cube-controls {
    gap: 4px;
    padding: 4px 6px;
  }
  .cube-nav-btn {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
  .stats-bar {
    padding: 36px 16px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .stat-number {
    font-size: 2.1rem;
  }
  .stat-label {
    font-size: 0.85rem;
    line-height: 1.35;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-drawer {
    width: 70%;
  }
  .form-box {
    padding: 28px 18px;
  }
  .asym-panel-main {
    padding: 28px 16px;
  }
}
