/* =============================================
   UMAMI WEBSITE — Design System & Styles
   ============================================= */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-primary: #78CB6D;
  --color-primary-dark: #5FB854;
  --color-primary-light: #A3DC9A;
  --color-secondary: #F2C526;
  --color-secondary-dark: #D9AF1A;
  --color-tertiary: #D28772;
  --color-tertiary-dark: #B8705C;
  --color-blue: #5B9BD5;
  --color-purple: #8B5CF6;

  --color-bg: #F5F4F4;
  --color-bg-warm: #FDF9F3;
  --color-bg-green: #F0F9EE;
  --color-bg-yellow: #FFFBEB;
  --color-bg-terracotta: #FDF3F0;

  --color-text: #353535;
  --color-text-secondary: #666666;
  --color-text-light: #999999;
  --color-white: #FFFFFF;
  --color-border: #E5E5E5;
  --color-grey-light: #E8E8E8;

  /* Typography */
  --font-heading: 'Gabarito', sans-serif;
  --font-body: 'Karla', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius: 30px;
  --radius-sm: 16px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: var(--font-body);
  border: none;
  outline: none;
}


/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.text-accent {
  color: var(--color-primary);
}

.text-secondary-accent {
  color: var(--color-secondary);
}

.text-tertiary-accent {
  color: var(--color-tertiary);
}


/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.15rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-label--green {
  color: var(--color-primary-dark);
  background: var(--color-bg-green);
}

.section-label--yellow {
  color: #9A7B00;
  background: var(--color-bg-yellow);
}

.section-label--terracotta {
  color: var(--color-tertiary-dark);
  background: var(--color-bg-terracotta);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(120, 203, 109, 0.35);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(120, 203, 109, 0.45);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--tertiary {
  background: var(--color-tertiary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(210, 135, 114, 0.35);
}

.btn--tertiary:hover {
  background: var(--color-tertiary-dark);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}


/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all 0.3s ease;
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.2s;
  position: relative;
}

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

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

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

.header__cta {
  margin-left: var(--space-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s;
}

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


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.hero__logo {
  width: 200px;
  margin: 0 auto var(--space-xl);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.hero__title .highlight-green {
  color: var(--color-primary);
}

.hero__title .highlight-yellow {
  color: var(--color-secondary);
}

.hero__title .highlight-terracotta {
  color: var(--color-tertiary);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Floating food particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.food-particle {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.food-particle:nth-child(odd) {
  animation-direction: alternate-reverse;
}

.food-particle:nth-child(1) {
  top: 12%;
  left: 5%;
  animation-duration: 7s;
  animation-delay: 0s;
}

.food-particle:nth-child(2) {
  top: 20%;
  right: 8%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.food-particle:nth-child(3) {
  top: 60%;
  left: 3%;
  animation-duration: 8s;
  animation-delay: 0.5s;
}

.food-particle:nth-child(4) {
  top: 70%;
  right: 5%;
  animation-duration: 6s;
  animation-delay: 2s;
}

.food-particle:nth-child(5) {
  top: 35%;
  left: 10%;
  animation-duration: 9s;
  animation-delay: 1.5s;
}

.food-particle:nth-child(6) {
  top: 45%;
  right: 12%;
  animation-duration: 7s;
  animation-delay: 0.8s;
}

.food-particle:nth-child(7) {
  top: 80%;
  left: 15%;
  animation-duration: 6s;
  animation-delay: 3s;
}

.food-particle:nth-child(8) {
  top: 15%;
  right: 18%;
  animation-duration: 8s;
  animation-delay: 2.5s;
}

.food-particle:nth-child(9) {
  top: 50%;
  left: 20%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.food-particle:nth-child(10) {
  top: 85%;
  right: 20%;
  animation-duration: 7s;
  animation-delay: 0s;
}

.food-particle:nth-child(11) {
  top: 25%;
  left: 88%;
  animation-duration: 6s;
  animation-delay: 2s;
}

.food-particle:nth-child(12) {
  top: 75%;
  left: 85%;
  animation-duration: 8s;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(8deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}


/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--color-white);
}

.about__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.about__intro p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.about__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.about__story-image {
  display: flex;
  justify-content: center;
}

.about__story-image img {
  max-width: 320px;
  border-radius: var(--radius);
}

.about__story-text h3 {
  margin-bottom: var(--space-md);
}

.about__story-text p {
  margin-bottom: var(--space-md);
}

/* Problem cards */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.problem-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--space-xl);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.problem-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.problem-card p {
  font-size: 0.95rem;
}

.problem-card:nth-child(1) {
  border-top: 4px solid var(--color-primary);
}

.problem-card:nth-child(2) {
  border-top: 4px solid var(--color-secondary);
}

.problem-card:nth-child(3) {
  border-top: 4px solid var(--color-tertiary);
}


/* =============================================
   PRODUCTS
   ============================================= */
.products {
  background: var(--color-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.product-card__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

.product-card--finder .product-card__badge {
  background: var(--color-bg-green);
  color: var(--color-primary-dark);
}

.product-card--kitchens .product-card__badge {
  background: var(--color-bg-terracotta);
  color: var(--color-tertiary-dark);
}

.product-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-lg);
}

.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.product-card__tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.product-card--finder .product-card__tagline {
  color: var(--color-primary);
}

.product-card--kitchens .product-card__tagline {
  color: var(--color-tertiary);
}

.product-card p {
  margin-bottom: var(--space-lg);
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.product-card__features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.product-card--finder .product-card__features li::before {
  background: var(--color-bg-green);
  color: var(--color-primary);
}

.product-card--kitchens .product-card__features li::before {
  background: var(--color-bg-terracotta);
  color: var(--color-tertiary);
}

.product-card--finder {
  border-bottom: 4px solid var(--color-primary);
}

.product-card--kitchens {
  border-bottom: 4px solid var(--color-tertiary);
}


/* =============================================
   FEATURES
   ============================================= */
.features {
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--space-xl);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.9rem;
}


/* =============================================
   COUNTDOWN
   ============================================= */
.countdown {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5BB853 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.countdown::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.countdown .container {
  position: relative;
  z-index: 2;
}

.countdown h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.countdown>.container>p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: var(--space-2xl);
}

.countdown__timer {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

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

.countdown__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  min-width: 100px;
  backdrop-filter: blur(4px);
}

.countdown__label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--space-sm);
  opacity: 0.8;
}

/* Email signup */
.countdown__signup {
  max-width: 500px;
  margin: 0 auto;
}

.countdown__signup p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.signup-form {
  display: flex;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px;
  backdrop-filter: blur(4px);
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  border-radius: var(--radius-pill);
}

.signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.signup-form .btn {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  padding: 14px 28px;
}

.signup-form .btn:hover {
  background: var(--color-bg);
  transform: none;
}


/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__info h3 {
  margin-bottom: var(--space-md);
}

.contact__info p {
  margin-bottom: var(--space-lg);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
}

.contact__detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact__detail-text span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: 14px 20px;
  background: var(--color-bg);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-bg-green);
  border-radius: var(--radius);
}

.form-success.visible {
  display: block;
}

.form-success h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer__logo {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer__col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

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

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer__social a:hover {
  background: var(--color-primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}


/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */
.legal-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.legal-page .legal-updated {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.legal-page h3 {
  font-size: 1.15rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page p {
  margin-bottom: var(--space-md);
}

.legal-page ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-page ul li {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
  list-style-type: disc;
}

.legal-page a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--color-primary-dark);
}


/* =============================================
   FORM CHECKBOX
   ============================================= */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-primary);
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.form-checkbox label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-checkbox label a:hover {
  color: var(--color-primary-dark);
}


/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(53, 53, 53, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(120, 203, 109, 0.2);
  padding: 1.25rem 2rem;
  animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.cookie-content p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-white);
}


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}


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

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__logo {
    width: 150px;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .food-particle {
    width: 32px;
    height: 32px;
  }

  .about__story {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__story-image {
    order: -1;
  }

  .about__story-image img {
    max-width: 240px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .countdown__number {
    font-size: 2.5rem;
    min-width: 70px;
    padding: var(--space-sm) var(--space-md);
  }

  .countdown__timer {
    gap: var(--space-md);
  }

  .signup-form {
    flex-direction: column;
    border-radius: var(--radius-sm);
  }

  .signup-form input[type="email"] {
    text-align: center;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .legal-page {
    padding-top: calc(var(--header-height) + var(--space-xl));
  }

  .legal-page h1 {
    font-size: 1.8rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .countdown__timer {
    gap: var(--space-sm);
  }

  .countdown__number {
    font-size: 2rem;
    min-width: 60px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}