/* ============================================
   SALYVMAVIX DIGITAL - MAIN STYLESHEET
   Candy Gradient Design System
   ============================================ */


:root {
  --color-pink: #f472b6;
  --color-pink-light: #fce7f3;
  --color-purple: #a855f7;
  --color-purple-light: #f3e8ff;
  --color-blue: #60a5fa;
  --color-blue-light: #eff6ff;
  --color-teal: #2dd4bf;
  --color-teal-light: #f0fdfa;

  --gradient-main: linear-gradient(135deg, #f472b6 0%, #a855f7 40%, #60a5fa 80%, #2dd4bf 100%);
  --gradient-soft: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 50%, #eff6ff 100%);
  --gradient-hero: linear-gradient(160deg, #f9a8d4 0%, #c084fc 35%, #818cf8 65%, #5eead4 100%);
  --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);

  --text-dark: #1a1625;
  --text-mid: #4a4560;
  --text-light: #8b80a8;
  --text-white: #fafafa;

  --bg-page: #fdfcff;
  --bg-tinted: #f8f5ff;
  --bg-dark: #0f0d1a;

  --border-soft: rgba(168, 85, 247, 0.12);
  --border-mid: rgba(168, 85, 247, 0.25);

  --shadow-sm: 0 1px 3px rgba(168,85,247,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(168,85,247,0.12), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(168,85,247,0.16), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(168,85,247,0.20), 0 8px 24px rgba(0,0,0,0.10);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --header-h: 80px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-purple); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-pink); }
address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-mid); line-height: 1.8; }


.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}

.SiteHeader--scrolled {
  background: rgba(253, 252, 255, 0.97);
  border-bottom-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}

.SiteHeader-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.SiteHeader--scrolled .SiteHeader-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.SiteHeader-logo { display: flex; align-items: center; }

.SiteHeader-logoImg {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.SiteHeader--scrolled .SiteHeader-logoImg {
  height: 32px;
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.SiteHeader-navPill {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.SiteHeader-navPill:hover {
  color: var(--color-purple);
  background: var(--color-purple-light);
  border-color: var(--border-mid);
}

.SiteHeader-navPill--active {
  color: var(--color-purple);
  background: var(--color-purple-light);
  border-color: var(--border-mid);
}

.SiteHeader-navPill--cta {
  background: var(--gradient-main);
  color: white !important;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.SiteHeader-navPill--cta:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: white;
  background: var(--gradient-main);
}


.SiteHeader-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.SiteHeader-hamburger:hover { background: var(--color-purple-light); }

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

.SiteHeader-hamburger--open .SiteHeader-hamburgerLine:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.SiteHeader-hamburger--open .SiteHeader-hamburgerLine:nth-child(2) {
  opacity: 0;
}
.SiteHeader-hamburger--open .SiteHeader-hamburgerLine:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.SiteHeader-mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(253, 252, 255, 0.98);
  border-top: 1px solid var(--border-soft);
}

.SiteHeader-mobileMenu--open {
  max-height: 420px;
}

.SiteHeader-mobileLink {
  display: block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}

.SiteHeader-mobileLink:hover,
.SiteHeader-mobileLink--active {
  color: var(--color-purple);
  background: var(--color-purple-light);
}

.SiteHeader-mobileLink--cta {
  background: var(--gradient-main);
  color: white !important;
  text-align: center;
  border-bottom: none;
  margin: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
}


.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.Btn--gradient {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 20px rgba(168,85,247,0.3), 0 2px 8px rgba(0,0,0,0.08);
}

.Btn--gradient:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168,85,247,0.4), 0 4px 12px rgba(0,0,0,0.10);
}

.Btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-mid);
}

.Btn--ghost:hover {
  background: var(--color-purple-light);
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.Btn--outline {
  background: white;
  color: var(--color-purple);
  border-color: var(--color-purple);
  box-shadow: var(--shadow-sm);
}

.Btn--outline:hover {
  background: var(--color-purple-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.Btn--large {
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
}

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


.PageHero {
  margin-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - var(--header-h));
  max-height: 800px;
  overflow: hidden;
}

.PageHero-imagePanel {
  position: relative;
  overflow: hidden;
}

.PageHero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.PageHero-imageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,13,26,0.4) 0%, transparent 60%);
}

.PageHero-floatingBadge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: 0.625rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
}

.PageHero-badgeIcon {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.PageHero-contentPanel {
  background: var(--bg-page);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-left: 1px solid var(--border-soft);
}

.PageHero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.PageHero-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.PageHero-subtext {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.PageHero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


.IntroStrip {
  background: var(--gradient-main);
  padding: 1.25rem 2rem;
}

.IntroStrip-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.IntroStrip-text {
  color: white;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.6;
}

.IntroStrip-text strong { font-weight: 600; }


.Section {
  padding: 5rem 2rem;
}

.Section--tinted { background: var(--bg-tinted); }

.Section--dark {
  background: var(--bg-dark);
  background-image: var(--gradient-dark);
}

.Section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.Section-container--narrow {
  max-width: 720px;
  margin: 0 auto;
}

.Section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.Section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.Section-tag--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}

.Section-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.Section-heading--light { color: white; }

.Section-intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}


.HowItWorks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.StepCard {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--border-soft);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.StepCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-mid);
}

.StepCard-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  opacity: 0.35;
}

.StepCard-iconWrap {
  width: 56px;
  height: 56px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.StepCard-icon {
  font-size: 1.375rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.StepCard-title {
  font-size: 1.1rem;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

.StepCard-body {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}


.Accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.Accordion-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-soft);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.Accordion-item:has(.Accordion-body--open) {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}

.Accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.Accordion-trigger:hover { background: var(--bg-tinted); }

.Accordion-triggerIcon {
  width: 40px;
  height: 40px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.Accordion-triggerIcon i {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.Accordion-triggerLabel {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.Accordion-triggerArrow {
  color: var(--text-light);
  font-size: 0.75rem;
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.Accordion-trigger[aria-expanded="true"] .Accordion-triggerArrow {
  transform: rotate(180deg);
}

.Accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.Accordion-body--open {
  max-height: 400px;
}

.Accordion-body p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mid);
}


.ProducerGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ProducerCard {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-soft);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ProducerCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.ProducerCard-imageWrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ProducerCard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ProducerCard:hover .ProducerCard-image { transform: scale(1.06); }

.ProducerCard-body { padding: 1.25rem; }

.ProducerCard-title {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.ProducerCard-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}


.VisualSample-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.VisualSample-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.VisualSample-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.VisualSample-imageBadge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.VisualSample-imageBadge i { color: var(--color-teal); }


.CtaSection-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.CtaSection-decoration {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--gradient-soft);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}

.CtaSection-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 1rem 0;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.CtaSection-text {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}


.InnerHero {
  margin-top: var(--header-h);
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem;
  overflow: hidden;
}

.InnerHero--gradient {
  background: var(--gradient-hero);
}

.InnerHero-bg {
  position: absolute;
  inset: 0;
}

.InnerHero-bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.InnerHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,26,0.75) 0%, rgba(15,13,26,0.3) 60%, transparent 100%);
}

.InnerHero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.InnerHero-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 0.75rem;
}

.InnerHero-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
}


.StoryBlock {
  margin-bottom: 2.5rem;
}

.StoryBlock-heading {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.StoryBlock p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.StoryBlock--highlight {
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-purple);
}

.StoryBlock-quote {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-purple);
  line-height: 1.5;
  font-style: normal;
}


.ValuesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ValueCard {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--border-soft);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ValueCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.ValueCard-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: white;
  box-shadow: var(--shadow-sm);
}

.ValueCard-title {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.ValueCard-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}


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

.TeamImageBlock-image {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.TeamImageBlock-caption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 1rem;
}


.PackageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.PackageCard {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-soft);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.PackageCard--featured {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.PackageCard--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.PackageCard-featuredLabel {
  background: var(--gradient-main);
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem;
}

.PackageCard-header {
  padding: 2rem 1.75rem 1.25rem;
}

.PackageCard-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.PackageCard-name {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.PackageCard-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

.PackageCard-features {
  list-style: none;
  padding: 0 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.PackageCard-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.PackageCard-features li i {
  color: var(--color-teal);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.PackageCard .Btn {
  margin: 0 1.75rem 1.75rem;
  width: calc(100% - 3.5rem);
}

.PackagesSection-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-light);
}


.ZoneGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ZoneCard {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--border-soft);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ZoneCard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ZoneCard--primary { border-top: 4px solid var(--color-purple); }
.ZoneCard--secondary { border-top: 4px solid var(--color-blue); }
.ZoneCard--extended { border-top: 4px solid var(--color-teal); }

.ZoneCard-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ZoneCard--primary .ZoneCard-icon { color: var(--color-purple); }
.ZoneCard--secondary .ZoneCard-icon { color: var(--color-blue); }
.ZoneCard--extended .ZoneCard-icon { color: var(--color-teal); }

.ZoneCard-title {
  font-size: 1.1rem;
  margin-bottom: 0.375rem;
  color: var(--text-dark);
}

.ZoneCard-subtitle {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.ZoneCard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ZoneCard-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}

.ZoneCard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient-main);
}


.ZoneInfo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ZoneInfo-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.ZoneInfo-icon {
  font-size: 1.25rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ZoneInfo-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.ZoneInfo-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}


.ContactLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ContactInfo-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.ContactInfo-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ContactInfo-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ContactInfo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ContactInfo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.ContactInfo-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.ContactInfo-item span,
.ContactInfo-item a {
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.ContactInfo-mapWrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.ContactFormWrap-heading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.ContactFormWrap-intro {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}


.FormAccordion {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-soft);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
  background: white;
  box-shadow: var(--shadow-sm);
}

.FormAccordion:has(.FormAccordion-body--open) {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-md);
}

.FormAccordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: none;
  transition: var(--transition);
}

.FormAccordion-header:hover { background: var(--bg-tinted); }

.FormAccordion-header--active {
  background: var(--gradient-soft);
}

.FormAccordion-stepNum {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.FormAccordion-stepLabel {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.FormAccordion-arrow {
  color: var(--text-light);
  font-size: 0.75rem;
  transition: transform 0.28s ease;
}

.FormAccordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.FormAccordion-body--open {
  max-height: 600px;
}

.FormAccordion-body > * {
  padding: 0 1.25rem;
}

.FormAccordion-body .Btn {
  margin: 0 1.25rem 1.25rem;
  width: calc(100% - 2.5rem);
}


.FormField {
  margin-bottom: 1rem;
  padding-top: 0.75rem;
}

.FormField-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.FormField-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--bg-page);
  transition: var(--transition);
  outline: none;
}

.FormField-input:focus {
  border-color: var(--color-purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}

.FormField-input--textarea {
  resize: vertical;
  min-height: 120px;
}

.FormField--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.FormField-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--color-purple);
  flex-shrink: 0;
  cursor: pointer;
}

.FormField-checkLabel {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  cursor: pointer;
}

.FormField-checkLabel a {
  color: var(--color-purple);
  font-weight: 600;
}


.LegalHero {
  margin-top: var(--header-h);
  background: var(--gradient-soft);
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border-soft);
}

.LegalHero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.LegalHero-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.LegalHero-meta {
  font-size: 0.875rem;
  color: var(--text-light);
}

.LegalSection { padding-top: 3rem; padding-bottom: 5rem; }

.LegalDoc { max-width: 720px; }

.LegalDoc-intro {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-purple);
}

.LegalDoc-group {
  margin-bottom: 2.25rem;
}

.LegalDoc-heading {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.LegalDoc-subheading {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.25rem 0 0.5rem;
}

.LegalDoc-group p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.LegalDoc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.LegalDoc-bullets li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
}

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

.LegalDoc--numbered .LegalDoc-clause {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.LegalDoc--numbered .LegalDoc-clause:last-child {
  border-bottom: none;
}

.LegalDoc-clauseTitle {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
}

.LegalDoc-clauseNum {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.LegalDoc-clause p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.85;
}


.CookieTable-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.CookieTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.CookieTable th {
  background: var(--bg-tinted);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1.5px solid var(--border-soft);
}

.CookieTable td {
  padding: 0.875rem 1rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}

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

.CookieTable tr:nth-child(even) td { background: var(--bg-tinted); }

.CookieTable code {
  background: var(--color-purple-light);
  color: var(--color-purple);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.8125rem;
}


.ThanksHero {
  margin-top: var(--header-h);
  background: var(--gradient-hero);
  padding: 6rem 2rem;
  text-align: center;
}

.ThanksHero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.ThanksHero-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.ThanksHero-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: white;
  margin-bottom: 1rem;
}

.ThanksHero-text {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.ThanksNext { padding: 4rem 2rem; }

.ThanksNext-heading {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.ThanksNext-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.ThanksNext-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.ThanksNext-stepNum {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ThanksNext-step p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
  padding-top: 0.375rem;
}

.ThanksNext-cta { text-align: center; }


.SiteFooter {
  background: var(--bg-dark);
  background-image: var(--gradient-dark);
}

.SiteFooter-accentBar {
  height: 4px;
  background: var(--gradient-main);
}

.SiteFooter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}

.SiteFooter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.SiteFooter-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.SiteFooter-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.SiteFooter-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.SiteFooter-colTitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.SiteFooter-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.SiteFooter-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.SiteFooter-links a:hover { color: white; }

.SiteFooter-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.SiteFooter-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.SiteFooter-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}


.BackToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
}

.BackToTop--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

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


.CookieConsent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 340px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(168,85,247,0.25), 0 8px 24px rgba(0,0,0,0.12);
  border: 1.5px solid var(--border-mid);
  z-index: 9999;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}

.CookieConsent--visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.CookieConsent-header {
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
}

.CookieConsent-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.CookieConsent-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.CookieConsent-text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.65;
}

.CookieConsent-text a {
  color: var(--color-purple);
  font-weight: 600;
}

.CookieConsent-buttons {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.CookieConsent-btnAccept {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.CookieConsent-btnAccept:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.CookieConsent-btnReject {
  width: 100%;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.CookieConsent-btnReject:hover {
  color: var(--text-dark);
  border-color: var(--border-mid);
  background: var(--bg-tinted);
}

.CookieConsent-btnCustomize {
  width: 100%;
  padding: 0.5rem;
  background: transparent;
  color: var(--color-purple);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: underline;
}

.CookieConsent-toggles {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.CookieConsent-toggles--open {
  max-height: 300px;
}

.CookieConsent-togglesInner {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.CookieToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.CookieToggle-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-mid);
}

.CookieToggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.CookieToggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.CookieToggle-slider {
  position: absolute;
  inset: 0;
  background: #e5e7eb;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.CookieToggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.CookieToggle-switch input:checked + .CookieToggle-slider {
  background: var(--color-purple);
}

.CookieToggle-switch input:checked + .CookieToggle-slider::after {
  transform: translateX(18px);
}

.CookieToggle-switch input:disabled + .CookieToggle-slider {
  background: var(--color-teal);
  cursor: not-allowed;
  opacity: 0.7;
}


@media (max-width: 1024px) {
  .HowItWorks-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ProducerGrid { grid-template-columns: repeat(2, 1fr); }
  .ValuesGrid { grid-template-columns: repeat(2, 1fr); }
  .PackageGrid { grid-template-columns: 1fr; }
  .PackageCard--featured { transform: none; }
  .ZoneGrid { grid-template-columns: 1fr; gap: 1rem; }
  .VisualSample-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ContactLayout { grid-template-columns: 1fr; gap: 2.5rem; }
  .SiteFooter-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .SiteFooter-col--brand { grid-column: 1 / -1; }
}

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

  .PageHero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .PageHero-imagePanel {
    height: 280px;
  }

  .PageHero-contentPanel {
    padding: 2.5rem 1.5rem;
    border-left: none;
    border-top: 1px solid var(--border-soft);
  }

  .ProducerGrid { grid-template-columns: 1fr; }
  .ValuesGrid { grid-template-columns: 1fr; }
  .ZoneGrid { grid-template-columns: 1fr; }

  .Section { padding: 3rem 1.25rem; }

  .SiteFooter-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .SiteFooter-col--brand { grid-column: auto; }

  .CookieConsent {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
  }

  .BackToTop {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .CtaSection-card { padding: 2.5rem 1.5rem; }

  .InnerHero { min-height: 240px; padding: 2.5rem 1.25rem; }

  .LegalHero { padding: 3rem 1.25rem 2rem; }

  .ThanksHero { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .SiteHeader-inner { padding: 1rem 1.25rem; }
  .PageHero-actions { flex-direction: column; }
  .PackageCard .Btn { margin: 0 1.25rem 1.25rem; width: calc(100% - 2.5rem); }
}