

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  
  --clr-primary: #1a1a2e;
  --clr-primary-light: #16213e;
  --clr-accent: #e94560;
  --clr-accent-secondary: #f5a623;
  --clr-accent-teal: #0f9b8e;
  --clr-surface: #f8f7f4;
  --clr-surface-tinted: #f0ede8;
  --clr-surface-dark: #1a1a2e;
  --clr-text: #1e1e2e;
  --clr-text-muted: #5a5a72;
  --clr-text-light: #f0ede8;
  --clr-text-light-muted: rgba(240, 237, 232, 0.7);
  --clr-border: rgba(26, 26, 46, 0.12);
  --clr-border-light: rgba(240, 237, 232, 0.15);

  
  --grad-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --grad-accent: linear-gradient(135deg, #e94560 0%, #f5a623 100%);
  --grad-teal: linear-gradient(135deg, #0f9b8e 0%, #1a1a2e 100%);
  --grad-surface: linear-gradient(160deg, #f8f7f4 0%, #f0ede8 100%);

  
  --font-body: 'Rubik', sans-serif;
  --font-heading: 'Rubik', sans-serif;

  
  --fs-hero: clamp(2.8rem, 7vw, 6rem);
  --fs-display: clamp(2rem, 4vw, 3.5rem);
  --fs-h1: clamp(2rem, 3.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 2.5vw, 2.2rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.5rem);
  --fs-h4: clamp(1rem, 1.4vw, 1.2rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);

  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08), 0 1px 2px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.1), 0 2px 6px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 10px 30px rgba(26, 26, 46, 0.12), 0 4px 12px rgba(26, 26, 46, 0.08), 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-xl: 0 20px 50px rgba(26, 26, 46, 0.15), 0 8px 20px rgba(26, 26, 46, 0.1), 0 2px 6px rgba(26, 26, 46, 0.06);
  --shadow-accent: 0 8px 24px rgba(233, 69, 96, 0.3), 0 2px 8px rgba(233, 69, 96, 0.2);
  --shadow-inset: inset 0 2px 4px rgba(26, 26, 46, 0.06);

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  
  --nav-height: 72px;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.section--dark {
  background: var(--grad-primary);
  color: var(--clr-text-light);
}

.section--tinted {
  background: var(--clr-surface-tinted);
}

.section__label {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.section__label--light {
  color: var(--clr-accent-secondary);
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--clr-text-light);
}

/* ============================================
   KINETIC TYPOGRAPHY ANIMATIONS
   ============================================ */
@keyframes weightShift {
  0%, 100% { font-weight: 700; letter-spacing: -0.02em; }
  50% { font-weight: 300; letter-spacing: 0.04em; }
}

@keyframes colorCycle {
  0% { color: var(--clr-text-light); }
  33% { color: var(--clr-accent); }
  66% { color: var(--clr-accent-secondary); }
  100% { color: var(--clr-text-light); }
}

@keyframes breatheSpacing {
  0%, 100% { letter-spacing: -0.02em; opacity: 1; }
  50% { letter-spacing: 0.06em; opacity: 0.9; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0); }
  50% { box-shadow: 0 0 0 8px rgba(233, 69, 96, 0.12); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   LANGUAGE BADGE
   ============================================ */
.lang-badge {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.lang-badge:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.lang-badge__flag {
  font-size: 1rem;
  line-height: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--grad-accent);
  background-size: 200% 200%;
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233, 69, 96, 0.4), 0 4px 12px rgba(233, 69, 96, 0.25);
  animation: gradientShift 2s ease infinite;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--clr-text-light);
  border-color: var(--clr-border-light);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}

.btn--ghost:hover {
  background: var(--clr-surface-tinted);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-slow);
}

.header--solid,
.header.is-sticky {
  background: rgba(248, 247, 244, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.header:not(.is-sticky):not(.header--solid) .nav__logo-text {
  color: var(--clr-text-light);
}

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

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-base);
}

.header:not(.is-sticky):not(.header--solid) .nav__link {
  color: var(--clr-text-light-muted);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--clr-accent);
}

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

.header:not(.is-sticky):not(.header--solid) .nav__link--active,
.header:not(.is-sticky):not(.header--solid) .nav__link:hover {
  color: #fff;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav__hamburger:hover {
  background: var(--clr-surface-tinted);
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header:not(.is-sticky):not(.header--solid) .nav__hamburger-line {
  background: #fff;
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.nav__mobile {
  display: none;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), opacity var(--transition-slow);
  opacity: 0;
}

.nav__mobile.is-open {
  max-height: 600px;
  opacity: 1;
}

.nav__mobile-list {
  padding: var(--space-sm) 0;
}

.nav__mobile-item {
  border-bottom: 1px solid var(--clr-border);
}

.nav__mobile-link {
  display: block;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
}

.nav__mobile-link:hover,
.nav__mobile-link--active {
  color: var(--clr-accent);
  background: var(--clr-surface-tinted);
  padding-left: 2rem;
}

.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero__split {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: var(--nav-height);
}

.hero__content {
  padding: var(--space-2xl) clamp(1rem, 4vw, 2rem) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: slideUp 0.8s ease both;
}

.hero__label {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-secondary);
  margin-bottom: var(--space-md);
  animation: fadeIn 1s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.hero__title-line {
  display: block;
  animation: slideUp 0.8s ease both;
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.hero__title-line:nth-child(3) { animation-delay: 0.3s; }

.hero__title-line--kinetic {
  color: var(--clr-text-light);
  animation: slideUp 0.8s ease 0.1s both, breatheSpacing 6s ease-in-out 1s infinite;
}

.hero__title-line--accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero__title-line--shift {
  color: var(--clr-text-light);
  animation: slideUp 0.8s ease 0.3s both, weightShift 8s ease-in-out 2s infinite;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: var(--space-lg);
  animation: fadeIn 1s ease 0.5s both;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeIn 1s ease 0.7s both;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.hero__visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(15, 155, 142, 0.1) 100%);
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
  animation: scaleIn 1.2s ease 0.3s both;
}

.hero__visual-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: scaleIn 1s ease 0.8s both;
}

.hero__visual-badge i {
  color: var(--clr-accent);
}


.hero__trust-bar {
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid var(--clr-border-light);
  backdrop-filter: blur(8px);
  padding: var(--space-md) 0;
}

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

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--clr-text-light-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem;
  transition: color var(--transition-base);
}

.trust-bar__item:hover {
  color: var(--clr-text-light);
}

.trust-bar__icon {
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--grad-primary);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(233, 69, 96, 0.08) 100%);
}

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

.page-hero__title {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
}

.page-hero__title-kinetic {
  display: block;
  color: var(--clr-text-light);
  animation: breatheSpacing 6s ease-in-out infinite;
}

.page-hero__title-sub {
  display: block;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro__body {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.intro__body:last-child {
  margin-bottom: 0;
}

.intro__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.intro__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  background: var(--grad-accent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.4;
}

.intro__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro__image-wrap:hover .intro__image {
  transform: scale(1.03);
}

/* ============================================
   FEATURES SECTION (alternating)
   ============================================ */
.features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--clr-border-light);
}

.feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.feature__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature__visual:hover .feature__image {
  transform: scale(1.04);
}

.feature__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--grad-accent);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-accent);
}

.feature__icon {
  font-size: 1.3rem;
  color: #fff;
}

.feature__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}

.feature__desc {
  color: var(--clr-text-light-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--clr-accent-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

.feature__link:hover {
  gap: 0.7rem;
  color: var(--clr-accent);
}

/* ============================================
   PEDIGREE SECTION
   ============================================ */
.pedigree__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pedigree__card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
  overflow: hidden;
}

.pedigree__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pedigree__card--accent {
  background: var(--grad-primary);
  border-color: transparent;
}

.pedigree__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--grad-accent);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-accent);
}

.pedigree__icon {
  font-size: 1.4rem;
  color: #fff;
}

.pedigree__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pedigree__card--accent .pedigree__title {
  color: var(--clr-text-light);
}

.pedigree__desc {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.pedigree__card--accent .pedigree__desc {
  color: var(--clr-text-light-muted);
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.how__intro {
  color: var(--clr-text-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: stretch;
}

.how__step {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  flex: 1;
}

.how__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.how__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.how__step-title {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.how__step-desc {
  color: var(--clr-text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.how__step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.2rem;
  transform: rotate(90deg);
  opacity: 0.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section__inner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
}

.cta-section__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.cta-section__title-kinetic {
  display: block;
  color: var(--clr-text-light);
  animation: breatheSpacing 7s ease-in-out infinite;
}

.cta-section__title-accent {
  display: block;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section__desc {
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  max-width: 520px;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* ============================================
   STORY / PHILOSOPHY (Pracownia)
   ============================================ */
.story__grid,
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story__body,
.philosophy__body {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.story__body:last-child,
.philosophy__body:last-child {
  margin-bottom: var(--space-lg);
}

.story__image-wrap,
.philosophy__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story__image,
.philosophy__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story__image-wrap:hover .story__image,
.philosophy__image-wrap:hover .philosophy__image {
  transform: scale(1.03);
}

/* ============================================
   VALUES (Pracownia)
   ============================================ */
.values__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.values__card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.values__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.values__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(245, 166, 35, 0.1) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.values__card:hover .values__icon-wrap {
  background: var(--grad-accent);
}

.values__icon {
  font-size: 1.3rem;
  color: var(--clr-accent);
  transition: color var(--transition-base);
}

.values__card:hover .values__icon {
  color: #fff;
}

.values__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.values__desc {
  color: var(--clr-text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ============================================
   FEATURE DETAIL (co-mozesz)
   ============================================ */
.feature-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.feature-detail__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-detail__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-detail__image-wrap:hover .feature-detail__image {
  transform: scale(1.03);
}

.feature-detail__number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.3;
}

.feature-detail__number--light {
  color: var(--clr-accent-secondary);
}

.feature-detail__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.feature-detail__title--light {
  color: var(--clr-text-light);
}

.feature-detail__body {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.feature-detail__body--light {
  color: var(--clr-text-light-muted);
}

.feature-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.feature-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.feature-detail__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--grad-accent);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}

.feature-detail__list--light li {
  color: var(--clr-text-light-muted);
}

.feature-detail__list--light li::before {
  background: var(--clr-accent-secondary);
}

/* ============================================
   GASTRO PAGE
   ============================================ */
.gastro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.gastro__body {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.gastro__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.gastro__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gastro__image-wrap:hover .gastro__image {
  transform: scale(1.03);
}

.gastro-features__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.gastro-features__card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.gastro-features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.gastro-features__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--grad-accent);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-accent);
}

.gastro-features__icon {
  font-size: 1.3rem;
  color: #fff;
}

.gastro-features__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.gastro-features__desc {
  color: var(--clr-text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.gastro-info__inner {
  max-width: 760px;
  margin: 0 auto;
}

.gastro-info__body {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.gastro-info__cta {
  margin-top: var(--space-lg);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.mission {
  position: relative;
}

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

.mission__quote {
  text-align: center;
  position: relative;
  padding: var(--space-xl);
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--clr-accent);
}

.mission__quote-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.mission__quote-cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.contact__form-title,
.contact__info-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.contact__form-intro {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}


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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: all var(--transition-base);
  min-height: 44px;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.12);
  background: #fff;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--clr-text-muted);
  opacity: 0.6;
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form__group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  line-height: 1.5;
}

.form__checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--clr-accent);
}

.form__checkbox-text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.form__link {
  color: var(--clr-accent);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.form__link:hover {
  color: var(--clr-text);
}

.form__submit {
  margin-top: var(--space-sm);
  animation: pulseGlow 3s ease infinite;
}


.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact__info-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--grad-accent);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.contact__info-icon {
  color: #fff;
  font-size: 1.1rem;
}

.contact__info-text strong {
  display: block;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}

.contact__info-text p {
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.contact__info-link {
  color: var(--clr-accent);
  transition: color var(--transition-base);
}

.contact__info-link:hover {
  color: var(--clr-text);
}


.map-section {
  padding-bottom: var(--space-2xl);
}

.map-section__wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.map-section__iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  min-height: calc(100vh - var(--nav-height) - 200px);
}

.thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
  max-width: 760px;
  margin: 0 auto;
}

.thanks__quote-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.thanks__quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(233, 69, 96, 0.12), transparent 70%);
}

.thanks__quote-icon {
  font-size: 2.5rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
}

.thanks__quote-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--clr-text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.thanks__quote-source {
  font-size: 0.85rem;
  color: var(--clr-accent-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.thanks__content {
  text-align: center;
}

.thanks__check {
  font-size: 3.5rem;
  color: var(--clr-accent-teal);
  margin-bottom: var(--space-md);
}

.thanks__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.thanks__desc {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--grad-primary);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.legal-hero__title {
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: var(--space-xs);
}

.legal-hero__meta {
  font-size: 0.875rem;
  color: var(--clr-accent-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.legal-hero__intro {
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  max-width: 720px;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

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

.legal__sidebar {
  display: none;
}

.legal__sidebar-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--clr-accent);
}

.legal__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal__sidebar-list--bullets li::before {
  content: '•';
  color: var(--clr-accent);
  margin-right: 0.4rem;
}

.legal__sidebar-link {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.legal__sidebar-link:hover {
  color: var(--clr-accent);
}

.legal__section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

.legal__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal__section-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.legal__section p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.legal__section p:last-child {
  margin-bottom: 0;
}

.legal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.legal__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.legal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
}

.legal__link {
  color: var(--clr-accent);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal__link:hover {
  color: var(--clr-text);
}

.legal__address {
  background: var(--clr-surface-tinted);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-style: normal;
  border-left: 3px solid var(--clr-accent);
}

.legal__address p {
  margin-bottom: var(--space-xs) !important;
}

.legal__table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 400px;
}

.legal__table th {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.legal__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}

.legal__table tr:last-child td {
  border-bottom: none;
}

.legal__table tr:nth-child(even) td {
  background: var(--clr-surface-tinted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: var(--space-2xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--clr-border-light);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo-img {
  width: 32px;
  height: 32px;
}

.footer__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-light);
}

.footer__tagline {
  color: var(--clr-text-light-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--clr-text-light-muted);
}

.footer__address i {
  color: var(--clr-accent);
  width: 16px;
}

.footer__address a {
  color: var(--clr-text-light-muted);
  transition: color var(--transition-base);
}

.footer__address a:hover {
  color: var(--clr-accent);
}

.footer__nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-link {
  font-size: 0.9rem;
  color: var(--clr-text-light-muted);
  transition: all var(--transition-base);
  padding: 0.2rem 0;
}

.footer__nav-link:hover {
  color: var(--clr-accent);
  padding-left: 0.4rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  padding: var(--space-md) 0;
  text-align: center;
}

.footer__copy,
.footer__domain {
  font-size: 0.8rem;
  color: rgba(240, 237, 232, 0.4);
}

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

.reveal.is-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; }

/* ============================================
   COOKIE CONSENT MODAL
   ============================================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.cookie-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-slow);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-overlay.is-visible .cookie-modal {
  transform: scale(1) translateY(0);
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.cookie-modal__icon {
  font-size: 1.6rem;
}

.cookie-modal__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
}

.cookie-modal__desc {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.cookie-modal__desc a {
  color: var(--clr-accent);
  text-decoration: underline;
}

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

.cookie-category {
  background: var(--clr-surface-tinted);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-category__info {
  flex: 1;
}

.cookie-category__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text);
  margin-bottom: 0.2rem;
}

.cookie-category__desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--clr-border);
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--clr-accent);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-modal__actions .btn {
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .nav__list,
  .nav__actions {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__mobile {
    display: none !important;
  }

  .hero__split {
    flex-direction: row;
    min-height: calc(100vh - 80px);
  }

  .hero__content {
    flex: 1;
    padding: var(--space-2xl) clamp(1rem, 4vw, 3rem);
  }

  .hero__visual {
    flex: 0 0 45%;
    min-height: auto;
  }

  .hero__image {
    height: 100%;
    opacity: 0.75;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .intro__image {
    height: 420px;
  }

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

  .feature--reversed .feature__visual {
    order: 2;
  }

  .feature--reversed .feature__content {
    order: 1;
  }

  .feature__image {
    height: 360px;
  }

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

  .how__steps {
    flex-direction: row;
    align-items: flex-start;
  }

  .how__step-connector {
    transform: rotate(0deg);
    align-self: center;
    padding-top: 0;
  }

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

  .story__grid,
  .philosophy__grid {
    grid-template-columns: 1fr 1fr;
  }

  .story__image,
  .philosophy__image {
    height: 480px;
  }

  .feature-detail__grid--normal {
    grid-template-columns: 1fr 1fr;
  }

  .feature-detail__grid--reversed {
    grid-template-columns: 1fr 1fr;
  }

  .feature-detail__grid--reversed .feature-detail__image-wrap {
    order: 2;
  }

  .feature-detail__grid--reversed .feature-detail__content {
    order: 1;
  }

  .feature-detail__image {
    height: 420px;
  }

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

  .gastro__image {
    height: 420px;
  }

  .gastro-features__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-section__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-section__text {
    flex: 1;
  }

  .cta-section__actions {
    flex-shrink: 0;
  }

  .legal__layout {
    grid-template-columns: 220px 1fr;
  }

  .legal__sidebar {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    align-self: start;
  }

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .thanks__inner {
    flex-direction: column;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .how__steps {
    gap: 0;
  }

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

  .pedigree__image {
    height: 260px;
  }

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

  .cookie-modal__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

/* ============================================
   MOBILE SPECIFIC
   ============================================ */
@media (max-width: 767px) {
  .nav__mobile {
    display: block;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

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

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__item:last-child {
    grid-column: span 2;
    justify-content: center;
  }
}

/* ============================================
   SCROLL TRIGGERED ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__title-line--kinetic,
  .hero__title-line--shift,
  .cta-section__title-kinetic,
  .page-hero__title-kinetic {
    animation: none;
  }
}