/* ================================================
   Campus Haat - Main Stylesheet
   Modern, Premium Design System
   ================================================ */

/* ================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================ */
:root {
  /* Colors - Primary */
  --color-orange-500: #F97316;
  --color-orange-600: #ea580c;
  --color-orange-100: #ffedd5;
  --color-orange-50: #fff7ed;

  /* Colors - Secondary */
  --color-emerald-500: #10B981;
  --color-emerald-600: #059669;
  --color-emerald-400: #34d399;
  --color-emerald-200: #a7f3d0;
  --color-emerald-100: #d1fae5;
  --color-emerald-50: #ecfdf5;

  /* Colors - Neutral */
  --color-zinc-900: #18181b;
  --color-zinc-850: #1f2937;
  --color-zinc-800: #27272a;
  --color-zinc-700: #3f3f46;
  --color-zinc-600: #52525b;
  --color-zinc-500: #71717a;
  --color-zinc-400: #a1a1aa;
  --color-zinc-300: #d4d4d8;
  --color-zinc-200: #e4e4e7;
  --color-zinc-100: #f4f4f5;
  --color-zinc-50: #fafafa;

  /* Colors - Semantic */
  --color-red-400: #f87171;
  --color-blue-600: #2563eb;
  --color-blue-100: #dbeafe;

  /* Colors - Base */
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  /* 10px */
  --font-size-sm: 0.8rem;
  /* 12px */
  --font-size-base: 0.875rem;
  /* 14px */
  --font-size-md: 1rem;
  /* 16px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-2xl: 1.5rem;
  /* 24px */
  --font-size-3xl: 1.875rem;
  /* 30px */
  --font-size-4xl: 2.25rem;
  /* 36px */
  --font-size-5xl: 3rem;
  /* 48px */
  --font-size-6xl: 3.75rem;
  /* 60px */

  /* Spacing */
  --spacing-1: 0.25rem;
  /* 4px */
  --spacing-2: 0.5rem;
  /* 8px */
  --spacing-3: 0.75rem;
  /* 12px */
  --spacing-4: 1rem;
  /* 16px */
  --spacing-5: 1.25rem;
  /* 20px */
  --spacing-6: 1.5rem;
  /* 24px */
  --spacing-8: 2rem;
  /* 32px */
  --spacing-10: 2.5rem;
  /* 40px */
  --spacing-12: 3rem;
  /* 48px */
  --spacing-16: 4rem;
  /* 64px */
  --spacing-20: 5rem;
  /* 80px */
  --spacing-24: 6rem;
  /* 96px */

  /* Border Radius */
  --radius-sm: 0.375rem;
  /* 6px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-2xl: 1.5rem;
  /* 24px */
  --radius-3xl: 2rem;
  /* 32px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-zinc-600);
  background-color: var(--color-white);
}

/* Selection */
::selection {
  background-color: var(--color-orange-100);
  color: var(--color-orange-600);
}

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

/* Images */
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Buttons */
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* ================================================
   CUSTOM SCROLLBAR
   ================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-zinc-300);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-zinc-400);
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

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

/* Text Alignment */
.text-center {
  text-align: center;
}

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

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

/* Display */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* Flex Utilities */
.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--spacing-2);
}

.gap-3 {
  gap: var(--spacing-3);
}

.gap-4 {
  gap: var(--spacing-4);
}

.gap-6 {
  gap: var(--spacing-6);
}

.gap-8 {
  gap: var(--spacing-8);
}

.gap-12 {
  gap: var(--spacing-12);
}

/* Grid Utilities */
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Spacing */
.mb-2 {
  margin-bottom: var(--spacing-2);
}

.mb-3 {
  margin-bottom: var(--spacing-3);
}

.mb-4 {
  margin-bottom: var(--spacing-4);
}

.mb-6 {
  margin-bottom: var(--spacing-6);
}

.mb-8 {
  margin-bottom: var(--spacing-8);
}

.mb-12 {
  margin-bottom: var(--spacing-12);
}

.mb-16 {
  margin-bottom: var(--spacing-16);
}

.mt-2 {
  margin-top: var(--spacing-2);
}

.mt-3 {
  margin-top: var(--spacing-3);
}

.mt-4 {
  margin-top: var(--spacing-4);
}

.mt-6 {
  margin-top: var(--spacing-6);
}

/* Padding */
.p-6 {
  padding: var(--spacing-6);
}

.p-8 {
  padding: var(--spacing-8);
}

.py-24 {
  padding-top: var(--spacing-24);
  padding-bottom: var(--spacing-24);
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  color: var(--color-zinc-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-4xl);
  line-height: 1.1;
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

/* Text Sizes */
.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-base {
  font-size: var(--font-size-base);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.text-2xl {
  font-size: var(--font-size-2xl);
}

.text-3xl {
  font-size: var(--font-size-3xl);
}

.text-4xl {
  font-size: var(--font-size-4xl);
}

/* Font Weights */
.font-light {
  font-weight: var(--font-weight-light);
}

.font-normal {
  font-weight: var(--font-weight-regular);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

/* Text Colors */
.text-zinc-900 {
  color: var(--color-zinc-900);
}

.text-zinc-600 {
  color: var(--color-zinc-600);
}

.text-zinc-500 {
  color: var(--color-zinc-500);
}

.text-zinc-400 {
  color: var(--color-zinc-400);
}

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

.text-emerald-600 {
  color: var(--color-emerald-600);
}

.text-white {
  color: var(--color-white);
}

/* ================================================
   COMPONENTS
   ================================================ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: var(--spacing-3) var(--spacing-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-orange-500);
  color: var(--color-white);
  box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-orange-600);
  box-shadow: 0 15px 30px -10px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-emerald-600);
  border: 1px solid var(--color-emerald-500);
}

.btn-secondary:hover {
  background-color: var(--color-emerald-50);
}

/* Cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-8);
  border: 1px solid var(--color-zinc-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-zinc-100);
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.badge-success {
  background-color: var(--color-emerald-50);
  color: var(--color-emerald-600);
  border: 1px solid var(--color-emerald-100);
}

/* Icon Wrapper */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.icon-wrapper-sm {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-wrapper-md {
  width: 3rem;
  height: 3rem;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-6);
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-zinc-900);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  transition: color var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--color-orange-600);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}

.navbar-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-zinc-500);
  transition: color var(--transition-fast);
}

.navbar-link:hover {
  color: var(--color-zinc-900);
}

.navbar-toggle {
  display: none;
  color: var(--color-zinc-900);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--color-zinc-200);
  padding: var(--spacing-6);
  flex-direction: column;
  gap: var(--spacing-4);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-dropdown);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-zinc-600);
  padding: var(--spacing-3) 0;
  border-bottom: 1px solid var(--color-zinc-100);
  transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
  color: var(--color-zinc-900);
}

.mobile-menu-link:last-of-type {
  border-bottom: none;
}

/* ================================================
   SECTIONS
   ================================================ */

/* Hero Section */
.hero {
  padding-top: 5.5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.hero-content {
  max-width: 36rem;
  z-index: 10;
}

.hero-title {
  font-size: var(--font-size-5xl);
  line-height: 1.05;
  margin-bottom: var(--spacing-3);
}

.hero-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-zinc-500);
  line-height: 1.65;
  margin-bottom: var(--spacing-5);
  max-width: 25rem;
}

/* Phone Mockup - Image Based */
.phone-mockup-container {
  position: relative;
  max-width: 18rem;
  /* max-height: 80vh; */
  /* height: 80vh; */
  transition: transform var(--transition-slow);
}

.phone-mockup-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-slow);
}

.phone-mockup-container:hover .phone-mockup-image {
  transform: scale(1.02);
}

/* Legacy phone mockup styles (kept for compatibility) */
.phone-mockup {
  border-radius: 40px;
  box-shadow:
    0 0 0 12px var(--color-zinc-850),
    0 0 0 14px var(--color-zinc-700),
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/19;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform var(--transition-slow);
  max-width: 18rem;
}

.phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 24px;
  background: var(--color-zinc-850);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 20;
}

/* Section Styles */
.section {
  padding: var(--spacing-24) 0;
}

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-4);
}

.section-subtitle {
  color: var(--color-zinc-500);
}

.section-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-orange-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-3);
  display: inline-block;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background-color: var(--color-zinc-50);
  border-top: 1px solid var(--color-zinc-200);
  padding-top: var(--spacing-16);
  padding-bottom: var(--spacing-8);
}

.footer-brand {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-zinc-900);
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.footer-text {
  font-size: var(--font-size-xs);
  color: var(--color-zinc-500);
  line-height: 1.6;
  margin-top: var(--spacing-4);
}

.footer-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-zinc-900);
  margin-bottom: var(--spacing-4);
}

.footer-link {
  font-size: var(--font-size-sm);
  color: var(--color-zinc-500);
  transition: color var(--transition-fast);
  display: block;
  margin-bottom: var(--spacing-2);
}

.footer-link:hover {
  color: var(--color-zinc-900);
}

/* ================================================
   ANIMATIONS
   ================================================ */

/* Pulse Animation */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Slide In Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================================
   UTILITY CLASSES - ADDITIONAL
   ================================================ */

/* Hidden on Mobile */
.hidden-mobile {
  display: flex;
}

/* Perspective for 3D effects */
.perspective-1000 {
  perspective: 1000px;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Slide In Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================================
   UTILITY CLASSES - ADDITIONAL
   ================================================ */

/* Hidden on Mobile */
.hidden-mobile {
  display: flex;
}

/* Perspective for 3D effects */
.perspective-1000 {
  perspective: 1000px;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@media (min-width: 768px) {

  h1,
  .hero-title {
    font-size: var(--font-size-6xl);
  }

  h2,
  .section-title {
    font-size: var(--font-size-3xl);
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
    max-width: 32rem;
  }

  .phone-mockup-container {
    max-width: 20rem;
  }

  .hidden-mobile {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .hidden-mobile {
    display: none !important;
  }

  .phone-mockup-container {
    max-width: 14rem;
    margin: 0 auto;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  /* Stack CTA buttons on mobile */
  .hero-content .flex {
    flex-direction: column !important;
  }

  .hero-content .flex .btn {
    width: 100%;
  }

  /* Hide horizontal connecting line on mobile */
  .steps-connecting-line {
    display: none !important;
  }

  /* Center text on mobile for steps */
  .grid-cols-3 h3,
  .grid-cols-3 p {
    text-align: center;
  }

  /* Tech Services Section Mobile Styles */
  .section[style*="linear-gradient"] {
    padding: 4rem 0 !important;
  }

  .section[style*="linear-gradient"] .section-title {
    font-size: var(--font-size-3xl) !important;
  }

  .section[style*="linear-gradient"] .card {
    padding: 2rem !important;
  }

  /* Three Solutions Section Mobile Styles */
  .grid-cols-3 .card .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero App Store Buttons Mobile Styles */
  .hero-app-buttons {
    justify-content: space-evenly !important;
    width: 100%;
  }

}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-8);
  }

  .phone-mockup-container {
    max-width: 22rem;
  }

  .phone-mockup-container:hover .phone-mockup-image {
    transform: scale(1.05);
  }
}

/* Extra Large Screens */
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }

  .phone-mockup-container {
    max-width: 26rem;
  }
}

/* ================================================
   TESTIMONIALS CAROUSEL STYLES
   ================================================ */

/* Desktop - Show 3+ cards */
@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 350px !important;
    max-width: 350px !important;
  }
}

/* Tablet - Show 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonial-card {
    min-width: 45% !important;
    max-width: 45% !important;
  }
}

/* Mobile - Show 1 card */
@media (max-width: 767px) {
  .testimonial-card {
    min-width: 100% !important;
    max-width: 100% !important;
  }
}

/* ================================================
   HERO STATS SECTION RESPONSIVE
   ================================================ */

/* Mobile - Stack vertically */
@media (max-width: 767px) {
  .hero-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .hero-stats-section {
    padding: 1.5rem 0 !important;
  }

  /* Remove left border on mobile */
  .hero-stats-grid>div:last-child {
    border-left: none !important;
    padding-left: 0 !important;
    padding-top: 1rem;
    border-top: 1px solid var(--color-zinc-200);
  }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  /* Adjust last item to span full width */
  .hero-stats-grid>div:last-child {
    grid-column: 1 / -1;
    border-left: none !important;
    padding-left: 0 !important;
    padding-top: 1rem;
    border-top: 1px solid var(--color-zinc-200);
  }
}

/* ================================================
   APP DOWNLOAD CARD RESPONSIVE
   ================================================ */
.app-download-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .app-download-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .app-download-card>div:last-child {
    width: 100%;
    margin-top: 0.5rem;
  }

  .app-download-card .flex {
    justify-content: space-between;
    width: 100%;
  }

  .app-download-card .flex a {
    flex: 1;
    justify-content: center;
  }
}

/* ================================================
   MISSION SECTION RESPONSIVE
   ================================================ */
@media (max-width: 767px) {
  .mission-grid {
    text-align: center;
    gap: 2rem !important;
  }

  .mission-link {
    justify-content: center;
  }

  .mission-video {
    width: 100%;
  }
}

/* ================================================
   CHEF SECTION RESPONSIVE
   ================================================ */
@media (max-width: 767px) {
  .chef-section {
    padding: 3rem 0 !important;
  }

  .chef-grid {
    text-align: center;
    gap: 3rem !important;
  }

  .chef-content {
    order: 1;
  }

  .chef-image-container {
    order: 2;
    max-width: 20rem;
    margin: 0 auto;
  }
}
/* ================================================
   FOOTER BOTTOM BAR RESPONSIVE
   ================================================ */
.footer-bottom {
  border-top: 1px solid var(--color-zinc-200);
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-bottom .flex {
    flex-direction: column;
    gap: 0.5rem;
  }
}
