/* Slemio Vitality Design System */

:root {
  --color-primary: #15616D;
  --color-primary-dark: #0f4a54;
  --color-primary-glow: rgba(21, 97, 109, 0.35);
  --color-secondary: #F4A261;
  --color-secondary-dark: #e08a42;
  --color-surface: #FFFBF5;
  --color-surface-alt: #F5F0E8;
  --color-accent: #81B29A;
  --color-accent-light: #a8cdb8;
  --color-ink: #1D3557;
  --color-muted: #5C6B73;
  --color-white: #ffffff;
  --color-border: rgba(21, 97, 109, 0.12);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(29, 53, 87, 0.06);
  --shadow-md: 0 8px 24px rgba(29, 53, 87, 0.1);
  --shadow-lg: 0 16px 48px rgba(29, 53, 87, 0.14);
  --shadow-glow: 0 8px 32px var(--color-primary-glow);
  --transition: 0.25s ease;
  --container: 1140px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--color-muted);
  background: var(--color-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.25;
  font-weight: 600;
}

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

/* Reklam ribbon */
.ad-ribbon {
  background: var(--color-ink);
  color: var(--color-white);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 251, 245, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px rgba(29, 53, 87, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.nav-cta {
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}

.nav-cta:hover {
  box-shadow: 0 8px 28px rgba(244, 162, 97, 0.45);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

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

.logo img { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; object-fit: cover; }

.nav-desktop {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-desktop a {
  display: block;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-muted);
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-primary);
  background: rgba(21, 97, 109, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-ink);
}

.nav-toggle svg { width: 28px; height: 28px; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(29, 53, 87, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-mobile.open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-ink);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.nav-mobile.open .nav-mobile-panel { transform: translateX(0); }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  display: block;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-mobile-cta {
  margin-top: 16px !important;
  background: var(--color-secondary) !important;
  color: var(--color-ink) !important;
  text-align: center;
  border-radius: var(--radius-pill) !important;
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* Buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::after { left: 120%; }

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-ink);
}

.btn-secondary:hover {
  background: var(--color-secondary-dark);
  color: var(--color-ink);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.btn-store {
  background: var(--color-ink);
  color: var(--color-white);
  min-width: 160px;
}

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

.btn-store svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* Section tags */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  background: rgba(21, 97, 109, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-tag--light {
  color: var(--color-secondary);
  background: rgba(244, 162, 97, 0.2);
}

.section-header { text-align: center; margin-bottom: 48px; }

.section--pattern {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(129, 178, 154, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(244, 162, 97, 0.06) 0%, transparent 40%);
}

.section-dark {
  background: linear-gradient(160deg, var(--color-ink) 0%, #0a1f33 100%);
  color: rgba(255, 255, 255, 0.75);
}

.section-title--light { color: var(--color-white); }
.section-subtitle--light { color: rgba(255, 255, 255, 0.65); }

.btn-group--left { justify-content: flex-start; }

/* Hero photo */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.hero--photo { color: var(--color-white); }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(29, 53, 87, 0.92) 0%, rgba(21, 97, 109, 0.75) 45%, rgba(21, 97, 109, 0.4) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  bottom: -80px;
  left: 10%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-secondary);
  display: block;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 162, 97, 0.25);
  border: 1px solid rgba(244, 162, 97, 0.5);
  color: var(--color-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-phone {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.hero-phone-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-ink);
  font-family: var(--font-heading);
}

.hero-float-card span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero-float-card--1 { top: 15%; left: -30px; animation-delay: 0s; }
.hero-float-card--2 { bottom: 20%; right: -25px; animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-phone-frame {
  position: relative;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  z-index: 2;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color var(--transition);
}

.hero-scroll:hover { border-color: var(--color-secondary); }

.hero-scroll span {
  width: 4px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* Stats bar */
.stats-bar {
  margin-top: -48px;
  position: relative;
  z-index: 10;
  padding-bottom: 24px;
}

.stats-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.stats-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
}

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

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition);
}

.stat-item:hover {
  background: rgba(21, 97, 109, 0.03);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: 600;
}

/* Split section */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-image:hover img { transform: scale(1.04); }

.split-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}

.split-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.split-content > p {
  font-size: 1.0625rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  margin-bottom: 32px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--color-ink);
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: rgba(21, 97, 109, 0.12);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  top: 2px;
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .btn-group--left { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-float-card--1 { left: 0; }
  .hero-float-card--2 { right: 0; }
  .hero-scroll { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-image img { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .hero { min-height: auto; padding: 80px 0 60px; }
}

/* Sections */
.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Bento grid rich */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-grid--rich {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, auto);
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(21, 97, 109, 0.06) 0%, transparent 50%),
    url('../images/celebrating-culinary-diversity-world-food-day-through-designers-lens_984027-204621-transformed.jpeg') right center/cover no-repeat;
  min-height: 320px;
  position: relative;
}

.feature-card--large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-white) 40%, rgba(255,255,255,0.7) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.feature-card--large > * { position: relative; z-index: 1; max-width: 55%; }

.feature-card--accent {
  background: linear-gradient(145deg, rgba(244, 162, 97, 0.08) 0%, var(--color-white) 50%);
}

.feature-img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature-card h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.4;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }
  .feature-card--large > * { max-width: 100%; }
}

@media (max-width: 576px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* How it works */
.how-section {
  background: var(--color-surface-alt);
}

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

@media (min-width: 769px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
    opacity: 0.25;
    z-index: 0;
  }
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}

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

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(21, 97, 109, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-card:hover .step-img-wrap img { transform: scale(1.08); }

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-ink);
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* Outcomes photo */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outcomes-grid--photo .outcome-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: none;
  transition: transform var(--transition);
}

.outcomes-grid--photo .outcome-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.outcomes-grid--photo .outcome-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.outcomes-grid--photo .outcome-card:hover img {
  transform: scale(1.1);
}

.outcome-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 53, 87, 0.92) 0%, rgba(29, 53, 87, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--color-white);
}

.outcome-overlay h4 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.outcome-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .outcomes-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* Section wave */
.section-wave {
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.section-wave--dark svg path { fill: var(--color-surface); }

/* Gallery strip */
.gallery-strip {
  overflow: hidden;
  padding: 32px 0;
  background: var(--color-ink);
  position: relative;
}

.gallery-strip::before,
.gallery-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.gallery-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-ink), transparent);
}

.gallery-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-ink), transparent);
}

.gallery-track {
  display: flex;
  gap: 16px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}

.gallery-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.gallery-track img:hover { opacity: 1; }

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-card--featured {
  background: linear-gradient(160deg, rgba(21, 97, 109, 0.06) 0%, var(--color-white) 100%);
  border-color: rgba(21, 97, 109, 0.2);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: -8px;
}

.testimonial-stars {
  color: var(--color-secondary);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 1rem;
  color: var(--color-ink);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-ink);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Value band photo */
.value-band {
  position: relative;
  text-align: center;
  padding: 100px 0;
  color: var(--color-white);
  overflow: hidden;
}

.value-band--photo .value-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.value-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 97, 109, 0.88) 0%, rgba(29, 53, 87, 0.85) 100%);
}

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

.value-band h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.4;
}

/* CTA section rich */
.cta-section {
  position: relative;
  padding: 100px 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  overflow: hidden;
}

.cta-section--rich .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(29, 53, 87, 0.93) 0%, rgba(21, 97, 109, 0.88) 100%);
}

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

.cta-logo {
  margin: 0 auto 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
  color: var(--color-white);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.45;
}

.cta-section .disclaimer {
  font-size: 0.9375rem;
  max-width: 720px;
  margin: 0 auto 32px;
  opacity: 0.8;
}

/* FAQ */
.faq-section { padding-top: 64px; }

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover { border-color: rgba(21, 97, 109, 0.25); }

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #152a45 0%, var(--color-ink) 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 32px;
}

.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-logo:hover { color: var(--color-secondary); }

.footer-logo img { border-radius: 12px; }

.footer-brand > p {
  font-size: 0.9375rem;
  max-width: 480px;
  text-align: right;
  opacity: 0.75;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand > p { text-align: center; }
}

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

.footer-grid h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-legal p,
.footer-links ul,
.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 4px 0;
}

.footer-links a:hover { color: var(--color-secondary); }

.footer-contact a {
  color: var(--color-accent-light);
}

.footer-contact a:hover { color: var(--color-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.8125rem;
  text-align: center;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Legal pages */
.page-hero {
  position: relative;
  padding: 72px 0 48px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(255, 251, 245, 0.94) 0%, rgba(245, 240, 232, 0.92) 100%),
    url('../images/celebrating-culinary-diversity-world-food-day-through-designers-lens_984027-204621-transformed.jpeg') center/cover no-repeat;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--color-primary);
}

.legal-page h3 {
  font-size: 1.0625rem;
  margin: 24px 0 8px;
}

.legal-page p,
.legal-page li {
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 97, 109, 0.2);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Split section polish */
.split-section {
  position: relative;
}

.split-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(129, 178, 154, 0.12) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* Outcomes number badges */
.outcome-overlay h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* Value band btn polish */
.value-band .btn-outline {
  backdrop-filter: blur(8px);
  font-weight: 700;
  padding: 16px 36px;
}

.value-band .btn-group { margin-top: 8px; }

/* CTA pulse ring */
.cta-section--rich .cta-logo {
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 12px rgba(244, 162, 97, 0.15); }
}
