/* ============================================
   CIRCLE FOODSTUFFS — Modern Global Design
   Primary: #8AC336 | Background: #EBF0D9
   ============================================ */

:root {
  --primary: #8AC336;
  --primary-dark: #6fa02a;
  --primary-light: #a8d96a;
  --bg-light: #EBF0D9;
  --bg-white: #ffffff;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --section-padding: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(235,240,217,0.95);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.logo img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(138,195,54,0.3);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #F8FBF3 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(138,195,54,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(138,195,54,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138,195,54,0.1);
  border: 1px solid rgba(138,195,54,0.2);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-label .dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--primary);
  position: relative;
}

.hero-content .lead {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.role-tag {
  background: white;
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
}

.role-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(138,195,54,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(138,195,54,0.35);
}

.btn-outline {
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

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

.btn svg { width: 20px; height: 20px; }

/* Phone Mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 270px;
  height: 540px;
  background: #0a0a0a;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  transition: transform 0.4s ease;
}

.phone-frame:hover {
  transform: translateY(-4px) scale(1.01);
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0a0a0a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-light);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.screenshot-slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 12s ease-in-out infinite;
}

.screenshot-slider img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@keyframes slide {
  0%, 28% { transform: translateX(0); }
  33%, 61% { transform: translateX(-33.333%); }
  66%, 94% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}

.phone-reflection {
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 5;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section {
  padding: var(--section-padding) 0;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138,195,54,0.08);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header h2 span { color: var(--primary); }

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

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

.feature-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(138,195,54,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 80px 0;
}

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

.stat-card {
  background: white;
  padding: 40px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section { background: var(--bg-light); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.category-item {
  background: white;
  padding: 24px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.category-item:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(138,195,54,0.25);
  border-color: var(--primary);
}

.category-item .cat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  transition: var(--transition);
}

.category-item:hover .cat-icon {
  transform: scale(1.1);
}

.category-item span {
  font-size: 0.78rem;
  font-weight: 600;
  display: block;
  color: var(--text-medium);
}

.category-item:hover span { color: white; }

/* ============================================
   AUDIENCE / WHO CAN JOIN
   ============================================ */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.audience-card {
  background: white;
  padding: 28px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.audience-card .aud-icon {
  width: 44px; height: 44px;
  background: rgba(138,195,54,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  transition: var(--transition);
}

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

.audience-card span {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-section { background: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.why-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
}

.why-check {
  width: 24px; height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-section {
  background: linear-gradient(135deg, var(--primary) 0%, #7ab52e 50%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.download-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.download-section .section-header h2,
.download-section .section-header p { color: white; }

.download-section .section-header h2 span { color: rgba(255,255,255,0.85); }

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: var(--transition);
  min-width: 220px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.download-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.download-btn div { text-align: left; }
.download-btn small { display: block; font-size: 0.7rem; color: var(--text-light); font-weight: 500; }
.download-btn strong { font-size: 1rem; }

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer-section {
  background: #FFFBEB;
  padding: 48px 0;
}

.disclaimer-box {
  background: white;
  border: 1px solid #FDE68A;
  border-radius: var(--radius);
  padding: 32px 36px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #D97706;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.disclaimer-box p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #0F172A;
  color: white;
  padding: 64px 0 24px;
}

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

.footer-brand { max-width: 320px; }

.footer-brand .logo {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: #94A3B8;
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--primary); padding-left: 2px; }

.footer-address {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-address strong {
  color: white;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: #64748B;
  font-size: 0.82rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #F8FBF3 0%, var(--bg-light) 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(138,195,54,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-hero h1 span { color: var(--primary); }

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.content-section { padding: 80px 0; }

.content-section.bg-white { background: white; }

.content-block { max-width: 800px; margin: 0 auto; }

.content-block h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.content-block h2 span { color: var(--primary); }

.content-block p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.content-block ul {
  margin: 16px 0;
  padding-left: 0;
}

.content-block ul li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.mv-card {
  background: white;
  padding: 48px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

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

.mv-card .mv-icon {
  width: 60px; height: 60px;
  background: rgba(138,195,54,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition);
}

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

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu-panel {
  position: absolute;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: white;
  padding: 90px 32px 32px;
  transition: var(--transition);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active .mobile-menu-panel { right: 0; }

.mobile-menu-panel a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu-panel a:hover { color: var(--primary); padding-left: 4px; }

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

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }

  .hero-content .lead,
  .hero-roles { justify-content: center; }

  .hero-content .lead { margin-left: auto; margin-right: auto; }

  .hero-buttons { justify-content: center; }
  .phone-mockup { order: -1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content .lead { font-size: 1.05rem; }

  .section { padding: 64px 0; }
  .section-header h2 { font-size: 1.9rem; }

  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }

  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p { font-size: 1rem; }

  .download-buttons { flex-direction: column; align-items: center; }
  .download-btn { width: 100%; max-width: 280px; justify-content: center; }

  .phone-frame { width: 230px; height: 460px; border-radius: 36px; padding: 10px; }
  .phone-screen { border-radius: 28px; }
  .phone-notch { width: 90px; height: 22px; }

  .content-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.9rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .feature-card { padding: 28px 20px; }
  .stat-number { font-size: 2.2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-item { padding: 18px 6px; }
  .category-item .cat-icon { font-size: 1.4rem; }
  .category-item span { font-size: 0.7rem; }
  .disclaimer-box { padding: 24px 20px; }
  .phone-frame { width: 190px; height: 380px; border-radius: 30px; padding: 8px; }
}

@media (min-width: 1400px) {
  :root { --max-width: 1320px; }
  .hero-content h1 { font-size: 4rem; }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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