:root {
  color-scheme: light;
  --forest-950: #08281d;
  --forest-900: #123c2b;
  --forest-800: #18503a;
  --forest-700: #226a49;
  --leaf-500: #56a83e;
  --leaf-300: #a9d58b;
  --lime-200: #d9edb8;
  --cream-50: #fffdf7;
  --cream-100: #f7f3e9;
  --cream-200: #ede5d5;
  --clay: #b86742;
  --ink: #17241c;
  --muted: #68746d;
  --white: #ffffff;
  --line: rgba(18, 60, 43, 0.15);
  --shadow: 0 24px 70px rgba(8, 40, 29, 0.13);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-50);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(18, 60, 43, 0.1);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--forest-900);
}

.brand img {
  width: 164px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.beta-badge {
  align-self: flex-start;
  margin: 5px 0 0 -4px;
  padding: 4px 6px;
  border: 1px solid rgba(86, 168, 62, 0.34);
  border-radius: 999px;
  background: var(--green100);
  color: var(--forest-700);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #425248;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.main-nav button {
  position: relative;
}

.main-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
}

.main-nav a::after,
.main-nav button::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--leaf-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav button:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button:focus-visible,
.category:focus-visible,
.announcement-action:focus-visible,
.text-link:focus-visible,
.auth-tabs button:focus-visible,
.dialog-close:focus-visible,
.inline-button:focus-visible {
  outline: 3px solid rgba(86, 168, 62, 0.35);
  outline-offset: 3px;
}

.button-primary {
  background: var(--forest-900);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 60, 43, 0.16);
}

.button-primary:hover {
  background: var(--forest-800);
  box-shadow: 0 13px 30px rgba(18, 60, 43, 0.21);
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--forest-900);
}

.button-quiet:hover {
  border-color: rgba(18, 60, 43, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.button-light {
  background: var(--cream-50);
  color: var(--forest-900);
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
  gap: 20px;
}

.button-full {
  width: 100%;
  min-height: 52px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  min-height: 690px;
  padding: 82px clamp(24px, 7vw, 110px) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(217, 237, 184, 0.62), transparent 26%),
    linear-gradient(125deg, #fffdf7 0%, #f6f2e5 100%);
}

.hero::before {
  position: absolute;
  bottom: -150px;
  left: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(18, 60, 43, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.alpha-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.alpha-label span {
  width: 28px;
  height: 2px;
  background: var(--leaf-500);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 25px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 7vw, 94px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--leaf-500);
  font-weight: 500;
}

.hero-text {
  max-width: 615px;
  margin: 0;
  color: #526158;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.text-link {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 60, 43, 0.4);
  background: transparent;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 760;
}

.hero-points {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  margin: 55px 0 0;
}

.hero-points div {
  padding-left: 14px;
  border-left: 2px solid var(--leaf-300);
}

.hero-points dt {
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
}

.hero-points dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.sun-disc {
  position: absolute;
  top: 4%;
  right: -9%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--lime-200);
}

.sun-disc::after {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(18, 60, 43, 0.11);
  border-radius: inherit;
  content: "";
}

.journey-card {
  position: absolute;
  top: 11%;
  right: 2%;
  width: min(455px, 90%);
  min-height: 390px;
  padding: 48px 48px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 13%, rgba(169, 213, 139, 0.22), transparent 28%),
    linear-gradient(145deg, #0d3828 0%, #123f2e 62%, #0a2c20 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.journey-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  content: "";
}

.journey-card::after {
  position: absolute;
  top: -95px;
  right: -80px;
  width: 235px;
  height: 235px;
  border: 1px solid rgba(217, 237, 184, 0.19);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(217, 237, 184, 0.035),
    0 0 0 62px rgba(217, 237, 184, 0.025);
  content: "";
}

.journey-kicker {
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: 31px;
  color: var(--leaf-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-title {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  border-left: 2px solid var(--leaf-300);
}

.journey-title > span,
.journey-title strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.journey-title > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 0.95;
}

.journey-title strong {
  margin-top: 7px;
  color: var(--white);
  font-size: clamp(37px, 4.3vw, 58px);
  font-style: italic;
  line-height: 0.94;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.journey-line {
  position: absolute;
  right: 45px;
  bottom: 38px;
  left: 45px;
  z-index: 1;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.journey-step {
  display: grid;
  flex: 0 0 auto;
  justify-items: center;
  gap: 6px;
}

.journey-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(217, 237, 184, 0.48);
  border-radius: 50%;
  background: rgba(217, 237, 184, 0.08);
}

.journey-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--lime-200);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.journey-line i {
  flex: 1;
  height: 1px;
  margin: -15px 9px 0;
  background: rgba(255, 255, 255, 0.28);
}

.trust-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 178px;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 60, 43, 0.08);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(8, 40, 29, 0.15);
}

.trust-note-one {
  right: 47%;
  bottom: 3%;
  transform: rotate(-4deg);
}

.trust-note-two {
  top: 3%;
  right: -2%;
  min-width: 169px;
  transform: rotate(5deg);
}

.trust-note-three {
  right: -5%;
  bottom: 5%;
  min-width: 177px;
  transform: rotate(3deg);
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-500);
  color: white;
  font-weight: 900;
}

.trust-icon-warm {
  background: var(--clay);
  font-size: 21px;
}

.trust-icon-light {
  background: var(--lime-200);
  color: var(--forest-900);
}

.trust-note strong,
.trust-note small {
  display: block;
}

.trust-note strong {
  color: var(--forest-900);
  font-size: 13px;
}

.trust-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.leaf {
  position: absolute;
  z-index: 1;
  width: 85px;
  height: 135px;
  border-radius: 85% 8% 85% 8%;
  background: var(--leaf-500);
  opacity: 0.82;
  transform-origin: bottom left;
}

.leaf::after {
  position: absolute;
  top: 17%;
  left: 47%;
  width: 2px;
  height: 70%;
  background: rgba(255, 255, 255, 0.55);
  content: "";
  transform: rotate(34deg);
}

.leaf-one {
  top: 1%;
  left: 8%;
  transform: rotate(-34deg) scale(0.58);
}

.leaf-two {
  right: 2%;
  bottom: 0;
  transform: rotate(150deg) scale(0.72);
}

.announcement {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 23px clamp(24px, 7vw, 110px);
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.8);
}

.announcement-mark {
  color: var(--leaf-300);
  font-size: 25px;
}

.announcement p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.announcement strong {
  margin-right: 5px;
  color: var(--white);
}

.announcement-action {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.products-section,
.how-section {
  padding: 110px clamp(24px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 50px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.producer-section h2 {
  margin: 13px 0 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.category-list {
  display: flex;
  gap: 8px;
  margin: 45px 0 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #5f6b64;
  font-size: 13px;
  font-weight: 700;
}

.category.active,
.category:hover {
  border-color: var(--forest-900);
  background: var(--forest-900);
  color: var(--white);
}

.product-empty {
  display: flex;
  align-items: center;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: 45px 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(18, 60, 43, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 43, 0.032) 1px, transparent 1px),
    rgba(247, 243, 233, 0.42);
  background-size: 34px 34px;
  text-align: center;
}

.empty-illustration {
  position: relative;
  width: 75px;
  height: 73px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(18, 60, 43, 0.2);
}

.empty-illustration::after {
  position: absolute;
  bottom: 0;
  left: 36px;
  width: 2px;
  height: 49px;
  background: var(--forest-700);
  content: "";
}

.empty-illustration span {
  position: absolute;
  width: 27px;
  height: 39px;
  border-radius: 100% 0 100% 0;
  background: var(--leaf-500);
}

.sprout-left {
  top: 12px;
  left: 11px;
  transform: rotate(-25deg);
}

.sprout-right {
  top: 0;
  right: 7px;
  transform: rotate(70deg);
}

.empty-label,
.demo-badge {
  color: var(--leaf-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-empty h3 {
  margin: 10px 0 8px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
}

.product-empty p {
  max-width: 590px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
  padding: 17px 20px;
  border-left: 3px solid var(--leaf-500);
  background: var(--cream-100);
}

.demo-toolbar[hidden] {
  display: none;
}

.demo-toolbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 18px 42px rgba(8, 40, 29, 0.11);
  transform: translateY(-4px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  background: var(--cream-100);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--forest-900);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 18px;
}

.product-meta,
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-meta {
  color: var(--muted);
  font-size: 11px;
}

.product-meta span:last-child {
  color: #a06b18;
  font-weight: 800;
}

.product-body h3 {
  margin: 10px 0 5px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.product-producer {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.product-price {
  color: var(--forest-900);
  font-size: 17px;
  font-weight: 850;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 800;
}

.product-action:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.how-section {
  background: var(--cream-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.steps article {
  position: relative;
  padding: 37px 45px 18px 0;
}

.steps article:not(:last-child) {
  margin-right: 38px;
  border-right: 1px solid var(--line);
}

.steps span {
  color: var(--leaf-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.steps h3 {
  margin: 45px 0 10px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 600;
}

.steps p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.producer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 55px;
  padding: 85px clamp(24px, 7vw, 110px);
  background: var(--forest-900);
  color: var(--white);
}

.eyebrow.light {
  color: var(--leaf-300);
}

.producer-section h2 {
  max-width: 790px;
  color: var(--white);
}

.producer-section p {
  max-width: 620px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  padding: 48px clamp(24px, 7vw, 110px) 22px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(169, 213, 139, 0.18), transparent 24%),
    var(--cream-50);
  color: var(--muted);
  font-size: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(210px, 0.8fr) auto;
  align-items: start;
  gap: clamp(35px, 7vw, 100px);
  padding-bottom: 38px;
}

.footer-brand img {
  width: 134px;
  height: 44px;
}

.footer-brand {
  position: relative;
  padding-right: 8px;
}

.trademark-badge {
  position: absolute;
  top: 5px;
  right: 0;
  color: var(--forest-700);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.footer-brand-block p {
  max-width: 300px;
  margin: 12px 0 0;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  color: var(--forest-900);
  font-size: 13px;
  font-weight: 720;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--leaf-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

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

.footer-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.footer-stores {
  display: grid;
  align-items: center;
  justify-items: end;
  gap: 5px;
  margin-top: 15px;
  color: var(--forest-900);
  font-size: 9px;
  font-weight: 700;
}

.stores-soon,
.stores-tail {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.store-lockups {
  display: flex;
  align-items: center;
  gap: 7px;
}

.store-lockup {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--forest-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.store-lockup svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.store-app img {
  display: block;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 90, 210, 0.2);
}

.store-play svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 3px rgba(8, 40, 29, 0.12));
}

.stores-and {
  color: var(--muted);
  font-size: 9px;
}

.play-blue {
  fill: #00a0ff;
}

.play-green {
  fill: #00e574;
}

.play-yellow {
  fill: #ffca28;
}

.play-red {
  fill: #ff3d55;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(18, 60, 43, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest-900);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.social-link:hover {
  border-color: rgba(86, 168, 62, 0.5);
  background: var(--green100);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-meta,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-legal {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal a,
.footer-legal span,
.footer-legal button {
  color: var(--forest-700);
  font-size: 10px;
  font-weight: 750;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--leaf-500);
}

.footer-legal span[aria-disabled="true"] {
  color: #929b95;
  cursor: default;
}

.footer-version {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 60, 43, 0.3);
  background: transparent;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 800;
}

.auth-dialog {
  width: min(980px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  background: var(--cream-50);
  box-shadow: 0 35px 100px rgba(8, 40, 29, 0.35);
  overflow: auto;
}

.auth-dialog::backdrop {
  background: rgba(8, 40, 29, 0.64);
  backdrop-filter: blur(7px);
}

.password-dialog {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: var(--cream-50);
  box-shadow: 0 35px 100px rgba(8, 40, 29, 0.38);
  overflow: auto;
}

.password-dialog::backdrop {
  background: rgba(8, 40, 29, 0.68);
  backdrop-filter: blur(8px);
}

.password-dialog-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(430px, 1.14fr);
  min-height: 620px;
}

.password-dialog-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 52px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(169, 213, 139, 0.28), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(86, 168, 62, 0.16), transparent 30%),
    var(--forest-900);
  color: white;
}

.password-dialog-visual::after {
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(217, 237, 184, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(217, 237, 184, 0.035), 0 0 0 88px rgba(217, 237, 184, 0.02);
  content: "";
}

.password-dialog-badge {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(217, 237, 184, 0.25);
  border-radius: 19px;
  background: rgba(217, 237, 184, 0.1);
  color: var(--lime-200);
}

.password-dialog-badge svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.password-dialog-visual h2 {
  margin: 22px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.password-dialog-visual > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.password-security-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 34px;
}

.password-security-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
}

.password-security-points b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(217, 237, 184, 0.2);
  border-radius: 9px;
  color: var(--leaf-300);
  font-size: 9px;
}

.password-dialog-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
}

.password-form.active {
  display: grid;
  gap: 16px;
}

.password-dialog .password-strength,
.password-dialog .password-rules {
  max-height: 80px;
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.password-username {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.password-match {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-top: 1px;
  color: var(--forest-700);
  font-size: 10px;
  font-weight: 800;
}

.password-match[data-state="mismatch"] {
  color: var(--danger);
}

.password-match-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green100);
  font-size: 11px;
}

.password-match[data-state="mismatch"] .password-match-icon {
  background: rgba(217, 91, 74, 0.12);
}
.support-dialog {
  width: min(590px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 48px;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(169, 213, 139, 0.22), transparent 30%),
    var(--cream-50);
  color: var(--forest-900);
  box-shadow: 0 35px 100px rgba(8, 40, 29, 0.35);
  overflow: auto;
}

.support-dialog::backdrop {
  background: rgba(8, 40, 29, 0.64);
  backdrop-filter: blur(7px);
}

.support-dialog-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(86, 168, 62, 0.3);
  border-radius: 18px;
  background: var(--green100);
  color: var(--forest-700);
}

.support-dialog-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.support-dialog h2 {
  margin: 12px 45px 13px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.support-intro {
  max-width: 470px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.support-form {
  display: grid;
  gap: 15px;
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-form label {
  display: grid;
  gap: 7px;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 750;
}

.field-label {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.field-optional,
.field-required {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.field-required {
  color: var(--forest-700);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: white;
  color: var(--ink);
  font-size: 14px;
}

.support-form input,
.support-form select {
  min-height: 49px;
  padding: 0 13px;
}

.support-form textarea {
  min-height: 125px;
  padding: 13px;
  resize: vertical;
  line-height: 1.5;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--leaf-500);
  box-shadow: 0 0 0 3px rgba(86, 168, 62, 0.12);
}

.support-form .input-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(217, 91, 74, 0.1);
}

.support-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.support-direct {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.support-direct a {
  color: var(--forest-700);
  font-weight: 800;
}

.auth-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 660px;
}

.auth-aside,
.auth-panel {
  position: relative;
  padding: 55px;
}

.auth-aside {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 85%, rgba(169, 213, 139, 0.25), transparent 28%),
    var(--forest-900);
  color: white;
}

.auth-aside h2 {
  margin: 26px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.auth-aside > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.auth-aside-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.auth-security-icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(217, 237, 184, 0.24);
  border-radius: 9px;
  background: rgba(217, 237, 184, 0.1);
  color: var(--leaf-300);
}

.auth-security-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.auth-aside-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.55;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--forest-900);
  font-size: 28px;
  line-height: 1;
}

.dialog-close:hover {
  background: var(--cream-100);
}

.light-close {
  display: none;
  color: white;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 45px 36px 0;
  border-bottom: 1px solid var(--line);
}

.auth-tabs button {
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.auth-tabs button[aria-selected="true"] {
  border-bottom-color: var(--leaf-500);
  color: var(--forest-900);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: grid;
  gap: 14px;
}

.form-heading {
  margin-bottom: 5px;
}

.form-heading span {
  color: var(--leaf-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 7px 0 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.auth-form > label {
  display: grid;
  gap: 7px;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 750;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"],
.auth-form textarea,
.auth-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: white;
  color: var(--ink);
  font-size: 14px;
}

.auth-form textarea {
  min-height: 88px;
  padding-top: 13px;
  padding-bottom: 13px;
  resize: vertical;
  line-height: 1.5;
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus {
  border-color: var(--leaf-500);
  box-shadow: 0 0 0 3px rgba(86, 168, 62, 0.12);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 49px !important;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 35px;
  height: 35px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  transform: translateY(-50%);
}

.password-toggle:hover {
  background: var(--cream-100);
  color: var(--forest-900);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.password-toggle .eye-closed {
  display: none;
}

.password-toggle[aria-pressed="true"] .eye-open {
  display: none;
}

.password-toggle[aria-pressed="true"] .eye-closed {
  display: block;
}

.phone-field {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 8px;
}

.phone-number-field {
  display: block;
  min-width: 0;
}

.phone-number-field input {
  width: 100%;
}

.country-select-wrap {
  position: relative;
  display: block;
}

.country-picker-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 48px;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: white;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 720;
  text-align: left;
}

.country-picker-button:focus,
.country-picker-button[aria-expanded="true"] {
  border-color: var(--leaf-500);
  box-shadow: 0 0 0 3px rgba(86, 168, 62, 0.12);
}

.country-chevron {
  color: var(--muted);
  font-size: 16px;
  transition: transform 180ms ease;
}

.country-picker-button[aria-expanded="true"] .country-chevron {
  transform: rotate(180deg);
}

.country-options {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 30;
  display: grid;
  width: 100%;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 16px 38px rgba(8, 40, 29, 0.18);
}

.country-options button {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 38px;
  gap: 10px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 750;
  text-align: left;
}

.country-options button:hover,
.country-options button[aria-selected="true"] {
  background: var(--cream-100);
}

.country-options .country-flag {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 auto;
  transform: none;
}

.country-flag {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 1;
  width: 23px;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(18, 60, 43, 0.12);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(8, 40, 29, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.flag-tr {
  background:
    radial-gradient(circle at 46% 50%, transparent 0 3px, #fff 3.3px 6px, transparent 6.3px),
    #e30a17;
}

.flag-de {
  background: linear-gradient(#171717 0 33.3%, #d00 33.3% 66.6%, #ffce00 66.6%);
}

.flag-gb {
  background:
    linear-gradient(33deg, transparent 41%, white 42% 48%, #c8102e 49% 53%, white 54% 60%, transparent 61%),
    linear-gradient(-33deg, transparent 41%, white 42% 48%, #c8102e 49% 53%, white 54% 60%, transparent 61%),
    linear-gradient(90deg, transparent 40%, white 40% 60%, transparent 60%),
    linear-gradient(transparent 35%, #c8102e 35% 65%, transparent 65%),
    #21468b;
}

.flag-us {
  background:
    linear-gradient(90deg, #3c3b6e 0 43%, transparent 43%),
    repeating-linear-gradient(#b22234 0 1.25px, #fff 1.25px 2.5px);
}

.flag-nl {
  background: linear-gradient(#ae1c28 0 33.3%, white 33.3% 66.6%, #21468b 66.6%);
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.3%, white 33.3% 66.6%, #ef4135 66.6%);
}

.flag-ae {
  background:
    linear-gradient(90deg, #ff0000 0 28%, transparent 28%),
    linear-gradient(#00732f 0 33.3%, white 33.3% 66.6%, #000 66.6%);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.45;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 0;
  border: 1px solid rgba(18, 60, 43, 0.35);
  border-radius: 4px;
  appearance: none;
  background: white;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked {
  border-color: var(--forest-900);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3.2 8.2 3 3.1 6.6-7' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E")
      center / 13px 13px no-repeat,
    var(--forest-900);
}

.checkbox-label input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(86, 168, 62, 0.25);
  outline-offset: 2px;
}

.activation-code-help {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
}

.auth-form input[data-activation-code] {
  color: var(--forest-900);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.consent {
  padding: 9px 10px;
  border: 1px solid rgba(18, 60, 43, 0.09);
  border-radius: 8px;
  background: rgba(247, 243, 233, 0.52);
}

.consent-list {
  display: grid;
  gap: 6px;
}

.consent span {
  flex: 1;
}

.consent small {
  display: inline;
  margin-left: 3px;
  color: #8b958f;
  font-size: 9px;
}

.legal-link {
  padding: 0;
  border: 0;
  border-bottom: 1px dashed rgba(34, 106, 73, 0.55);
  background: transparent;
  color: var(--forest-700);
  font-size: inherit;
  font-weight: 800;
}

.inline-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 750;
}

.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--leaf-500);
  background: #edf7e9;
  color: var(--forest-900);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding-right: 45px;
    padding-left: 45px;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand span {
    font-size: 20px;
  }

  .brand .beta-badge {
    margin-top: 4px;
    padding: 3px 5px;
    font-size: 7px;
  }

  .brand img {
    width: 145px;
    height: 46px;
  }

  .header-actions .button-quiet {
    display: none;
  }

  .header-actions .button {
    min-height: 41px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 64px 24px 60px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 535px;
    margin-top: 35px;
  }

  .journey-card {
    top: 11%;
    right: 5%;
    width: 86%;
  }

  .trust-note-one {
    right: auto;
    bottom: 7%;
    left: 2%;
  }

  .trust-note-two {
    top: 1%;
    right: 0;
  }

  .trust-note-three {
    right: 0;
    bottom: 1%;
  }

  .announcement {
    grid-template-columns: auto 1fr;
    padding: 22px 24px;
  }

  .announcement-action {
    grid-column: 2;
    justify-self: start;
  }

  .products-section,
  .how-section {
    padding: 75px 24px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

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

  .steps article {
    padding: 30px 0;
  }

  .steps article:not(:last-child) {
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps h3 {
    margin-top: 18px;
  }

  .producer-section {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 70px 24px;
  }

  .site-footer {
    padding: 38px 24px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-social {
    justify-items: start;
  }

  .footer-stores {
    justify-items: start;
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-aside {
    min-height: 230px;
    padding: 42px 35px;
  }

  .auth-aside h2 {
    max-width: 540px;
    margin: 17px 0 10px;
    font-size: 35px;
  }

  .auth-aside-note {
    display: none;
  }

  .auth-panel {
    padding: 38px 35px 42px;
  }

  .auth-panel > .dialog-close {
    display: none;
  }

  .light-close {
    display: grid;
  }

  .auth-tabs {
    margin-right: 0;
  }
}

@media (max-width: 820px) {
  .password-dialog {
    width: calc(100% - 24px);
  }

  .password-dialog-layout {
    grid-template-columns: 1fr;
  }

  .password-dialog-visual {
    min-height: 220px;
    padding: 34px 35px;
  }

  .password-dialog-badge,
  .password-security-points {
    display: none;
  }

  .password-dialog-visual h2 {
    max-width: 560px;
    margin: 16px 45px 10px 0;
    font-size: 35px;
  }

  .password-dialog-panel {
    padding: 42px 35px 46px;
  }}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .text-link {
    align-self: flex-start;
  }


  .password-dialog {
    width: calc(100% - 16px);
    border-radius: 18px;
  }

  .password-dialog-visual {
    min-height: 180px;
    padding: 30px 24px;
  }

  .password-dialog-visual h2 {
    font-size: 31px;
  }

  .password-dialog-panel {
    padding: 38px 24px 42px;
  }
  .support-dialog {
    padding: 36px 24px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: auto;
  }

  .footer-bottom,
  .support-direct {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-stores {
    gap: 7px;
  }

  .store-lockups {
    flex-wrap: wrap;
  }

  .hero-points {
    justify-content: space-between;
    gap: 10px;
  }

  .hero-points dd {
    max-width: 75px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .sun-disc {
    width: 310px;
    height: 310px;
  }

  .journey-card {
    top: 13%;
    right: -1%;
    width: 94%;
    min-height: 370px;
    padding: 40px 34px;
  }

  .journey-line {
    right: 31px;
    bottom: 33px;
    left: 31px;
  }

  .journey-icon {
    width: 34px;
    height: 34px;
  }

  .trust-note {
    min-width: 158px;
    padding: 12px 13px;
  }

  .trust-note-one {
    right: auto;
    bottom: 9%;
    left: 0;
  }

  .trust-note-two {
    top: 1%;
    right: -2%;
  }

  .trust-note-three {
    right: -2%;
    bottom: 0;
  }

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

  .demo-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .producer-section .button {
    width: 100%;
  }

  .auth-dialog {
    width: calc(100% - 16px);
  }

  .auth-aside {
    min-height: 190px;
    padding: 35px 25px;
  }

  .auth-aside h2 {
    font-size: 30px;
  }

  .auth-aside > p {
    display: none;
  }

  .auth-panel {
    padding: 32px 24px 38px;
  }

  .phone-field {
    grid-template-columns: 92px minmax(0, 1fr);
  }

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

/* Marketplace and editorial refresh */
.hero-points {
  gap: 12px;
}

.hero-points div {
  min-width: 130px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(217, 237, 184, 0.7), rgba(255, 255, 255, 0.78));
  box-shadow: inset 0 0 0 1px rgba(86, 168, 62, 0.12);
}

.hero-points div:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 229, 213, 0.72));
}

.hero-points div:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(169, 213, 139, 0.42), rgba(255, 253, 247, 0.86));
}

.journey-title {
  padding-left: 0;
  border-left: 0;
}

.product-marquee {
  position: relative;
  margin-right: calc(clamp(24px, 7vw, 110px) * -1);
  margin-left: calc(clamp(24px, 7vw, 110px) * -1);
  padding: 3px 0 36px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.product-marquee::before,
.product-marquee::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(25px, 5vw, 80px);
  content: "";
  pointer-events: none;
}

.product-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-50), transparent);
}

.product-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream-50), transparent);
}

.product-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-left: 18px;
  animation: product-marquee 64s linear infinite;
  will-change: transform;
}

.product-marquee:hover .product-track,
.product-marquee:focus-within .product-track {
  animation-play-state: paused;
}

.product-set {
  display: flex;
  gap: 18px;
}

@keyframes product-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.product-card {
  width: 306px;
  flex: 0 0 306px;
  overflow: hidden;
  border-radius: 18px;
}

.product-image-wrap {
  aspect-ratio: 1 / 0.83;
  cursor: pointer;
}

.product-photo-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-photo-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
}

.product-card:hover .product-photo-track img {
  transform: none;
}

.product-tag {
  top: 13px;
  right: 13px;
  left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(8, 40, 29, 0.12);
}

.product-tag-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-200);
  color: var(--forest-900);
}

.product-tag-icon svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.product-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(8, 40, 29, 0.12);
  transition: width 180ms ease, background 180ms ease;
}

.product-dot.active {
  width: 19px;
  border-radius: 99px;
  background: white;
}

.product-price {
  font-variant-numeric: tabular-nums;
}

.how-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(169, 213, 139, 0.26), transparent 25%),
    var(--cream-100);
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 50px;
  border: 0;
}

.step-card {
  position: relative;
  min-height: 430px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 45px rgba(8, 40, 29, 0.15);
}

.step-producer {
  background-image: url("/assets/catalog/vegetable-crate.webp");
}

.step-product {
  background-image: url("/assets/catalog/herbs-spices.webp");
}

.step-table {
  background-image: url("/assets/catalog/breakfast-spread.webp");
}

.step-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 29, 0.06) 18%, rgba(8, 40, 29, 0.9) 100%);
}

.step-content {
  position: absolute;
  right: 25px;
  bottom: 26px;
  left: 25px;
  z-index: 1;
  color: white;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.steps .step-card h3 {
  margin: 0 0 9px;
  color: white;
  font-size: clamp(25px, 2.4vw, 35px);
}

.steps .step-card p {
  color: rgba(255, 255, 255, 0.76);
}

.step-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: white;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(8, 40, 29, 0.16);
}

.producer-section {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 510px);
  align-items: center;
  min-height: 650px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0b3425, var(--forest-900) 62%, #174d37);
}

.producer-copy {
  position: relative;
  z-index: 2;
}

.producer-copy .button {
  margin-top: 30px;
}

.producer-glow {
  position: absolute;
  border: 1px solid rgba(217, 237, 184, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(217, 237, 184, 0.04),
    0 0 0 85px rgba(217, 237, 184, 0.025);
}

.producer-glow-one {
  top: -130px;
  left: -80px;
  width: 330px;
  height: 330px;
}

.producer-glow-two {
  right: 13%;
  bottom: -210px;
  width: 430px;
  height: 430px;
}

.producer-mockup {
  position: relative;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transform: rotate(2deg);
}

.producer-mockup-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.producer-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-200);
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 900;
}

.producer-mockup-top strong,
.producer-mockup-top small {
  display: block;
}

.producer-mockup-top strong {
  font-size: 14px;
}

.producer-mockup-top small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.verified-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-500);
  color: white;
  font-weight: 900;
}

.producer-mockup-photo {
  position: relative;
  min-height: 270px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 40, 29, 0.45)),
    url("/assets/catalog/seasonal-fruit.webp") center / cover;
}

.producer-photo-metrics {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.producer-photo-metrics > span {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 6px;
  min-width: 78px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  background: rgba(8, 40, 29, 0.86);
  color: white;
  backdrop-filter: blur(9px);
}

.producer-photo-metrics svg {
  grid-row: 1 / 3;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--leaf-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.producer-photo-metrics strong,
.producer-photo-metrics small {
  display: block;
}

.producer-photo-metrics strong {
  font-size: 12px;
  line-height: 1;
}

.producer-photo-metrics small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px;
}

.producer-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  text-align: center;
}

.producer-mockup-stats span:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.producer-mockup-stats strong,
.producer-mockup-stats small {
  display: block;
}

.producer-mockup-stats strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.producer-mockup-stats small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.producer-float-card {
  position: absolute;
  right: -48px;
  bottom: 65px;
  display: flex;
  align-items: center;
  min-width: 215px;
  gap: 11px;
  padding: 15px;
  background: var(--cream-50);
  color: var(--forest-900);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transform: rotate(-5deg);
}

.producer-story-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(86, 168, 62, 0.2);
  border-radius: 11px;
  background: var(--green100);
  color: var(--forest-700);
}

.producer-story-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.producer-float-card strong,
.producer-float-card small {
  display: block;
}

.producer-float-card strong {
  font-size: 12px;
}

.producer-float-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 130px);
  padding: 105px clamp(24px, 7vw, 110px);
  background: var(--cream-50);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 13px 0 18px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 5vw, 65px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.faq-intro p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 26px 0;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Inter, sans-serif;
  font-size: 20px;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-list details[open] summary span {
  background: var(--forest-900);
  color: white;
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 55px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.flag-tr {
  background: #e30a17;
}

.flag-tr::before {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  box-shadow: 2.5px 0 0 0 #e30a17;
  content: "";
}

.flag-tr::after {
  position: absolute;
  top: 3px;
  right: 3px;
  color: white;
  content: "★";
  font-size: 6px;
}

.flag-us {
  background: repeating-linear-gradient(#b22234 0 1.23px, #fff 1.23px 2.46px);
}

.flag-us::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 9px;
  background:
    radial-gradient(circle, white 0 0.55px, transparent 0.7px) 0 0 / 3px 3px,
    #3c3b6e;
  content: "";
}

.flag-us::after {
  content: none;
}

@media (max-width: 1080px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    min-height: 360px;
  }

  .step-arrow {
    margin: -4px auto;
    transform: rotate(90deg);
  }

  .producer-section {
    grid-template-columns: 1fr 0.86fr;
  }

  .producer-float-card {
    right: -15px;
  }
}

@media (max-width: 820px) {
  .hero-points div {
    min-width: 0;
    flex: 1;
  }

  .product-marquee {
    margin-right: -24px;
    margin-left: -24px;
  }

  .product-card {
    width: 280px;
    flex-basis: 280px;
  }

  .producer-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .producer-mockup {
    width: min(100%, 540px);
    margin: 15px auto 0;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-points div {
    padding: 10px;
  }

  .hero-points dt {
    font-size: 16px;
  }

  .product-card {
    width: 258px;
    flex-basis: 258px;
  }

  .step-card {
    min-height: 330px;
  }

  .producer-section {
    padding-bottom: 95px;
  }

  .producer-mockup {
    padding: 14px;
  }

  .producer-mockup-photo {
    min-height: 210px;
  }

  .producer-float-card {
    right: -8px;
    bottom: -55px;
  }

  .faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .faq-list summary {
    padding: 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .product-track {
    animation: none;
  }
}

/* Final interaction and visual refinements */
.hero {
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 247, 0.99) 0%,
      rgba(255, 253, 247, 0.96) 43%,
      rgba(247, 243, 233, 0.78) 61%,
      rgba(217, 237, 184, 0.44) 100%
    ),
    url("/assets/catalog/olive-harvest.webp") right center / 58% cover no-repeat;
}

.hero::before {
  z-index: -1;
  bottom: -180px;
  left: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(18, 60, 43, 0.11);
  box-shadow:
    0 0 0 38px rgba(18, 60, 43, 0.018),
    0 0 0 78px rgba(18, 60, 43, 0.012);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 67%, rgba(18, 60, 43, 0.07) 67.2% 67.4%, transparent 67.6%),
    radial-gradient(circle at 73% 23%, rgba(255, 255, 255, 0.5), transparent 26%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  padding: 42px 44px 42px 0;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(18, 60, 43, 0.16);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -2%;
  right: -12%;
  width: 470px;
  height: 470px;
  box-shadow:
    0 0 0 34px rgba(217, 237, 184, 0.16),
    0 0 0 70px rgba(255, 255, 255, 0.13);
}

.hero-orbit-two {
  right: 37%;
  bottom: -5%;
  width: 150px;
  height: 150px;
  background: rgba(255, 253, 247, 0.28);
}

.hero-landscape-lines {
  position: absolute;
  right: -10%;
  bottom: -14%;
  z-index: 0;
  width: 640px;
  height: 260px;
  opacity: 0.32;
  transform: rotate(-8deg);
}

.hero-landscape-lines span {
  position: absolute;
  right: 0;
  left: 0;
  height: 130px;
  border: 1px solid rgba(18, 60, 43, 0.34);
  border-radius: 50%;
}

.hero-landscape-lines span:nth-child(1) {
  bottom: 0;
}

.hero-landscape-lines span:nth-child(2) {
  bottom: 28px;
  right: 45px;
  left: -25px;
}

.hero-landscape-lines span:nth-child(3) {
  bottom: 56px;
  right: 90px;
  left: -50px;
}

.hero-landscape-lines span:nth-child(4) {
  bottom: 84px;
  right: 140px;
  left: -70px;
}

.leaf {
  display: none;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.trust-icon-warm {
  color: white;
}

.hero-points div {
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background 260ms ease;
}

.hero-points div:hover {
  z-index: 2;
  background: linear-gradient(135deg, var(--lime-200), rgba(255, 255, 255, 0.98));
  box-shadow:
    0 18px 38px rgba(8, 40, 29, 0.16),
    inset 0 0 0 2px rgba(86, 168, 62, 0.24);
  transform: translateY(-8px) scale(1.09);
}

.hero-points div:hover dt {
  transform: scale(1.08);
}

.hero-points dt {
  transform-origin: left center;
  transition: transform 260ms ease;
}

.announcement {
  grid-template-columns: auto 1fr;
}

.announcement-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(169, 213, 139, 0.32);
  border-radius: 50%;
  background: rgba(169, 213, 139, 0.1);
}

.announcement-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--leaf-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.step-card {
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms ease,
    filter 340ms ease;
}

.step-overlay {
  transition: background 340ms ease;
}

.step-content,
.step-icon {
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover {
  z-index: 2;
  filter: saturate(1.1);
  box-shadow:
    0 28px 62px rgba(8, 40, 29, 0.24),
    0 0 0 4px rgba(169, 213, 139, 0.35);
  transform: translateY(-13px) scale(1.025);
}

.step-card:hover .step-overlay {
  background:
    linear-gradient(180deg, rgba(8, 40, 29, 0.01) 10%, rgba(8, 40, 29, 0.82) 100%);
}

.step-card:hover .step-content {
  transform: translateY(-8px);
}

.step-card:hover .step-icon {
  background: var(--leaf-500);
  transform: rotate(-7deg) scale(1.12);
}

.faq-list details {
  overflow: hidden;
}

.faq-symbol {
  display: grid !important;
}

.faq-symbol b,
.faq-symbol i {
  grid-area: 1 / 1;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-symbol i {
  opacity: 0;
  transform: translateY(-5px);
}

.faq-list details[open] .faq-symbol {
  transform: none;
}

.faq-list details[open] .faq-symbol b {
  opacity: 0;
  transform: translateX(5px);
}

.faq-list details[open] .faq-symbol i {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer {
  display: grid !important;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.phone-prefix {
  display: flex;
  align-items: center;
  min-height: 48px;
  justify-content: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--forest-900);
}

.turkey-flag {
  width: 27px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(8, 40, 29, 0.15);
}

.phone-prefix strong {
  font-size: 13px;
}

@media (max-width: 820px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0 54%, rgba(247, 243, 233, 0.8) 78%, rgba(217, 237, 184, 0.43)),
      url("/assets/catalog/olive-harvest.webp") bottom center / 100% 50% no-repeat;
  }

  .hero-copy {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .hero-points div:hover {
    transform: translateY(-5px) scale(1.04);
  }
}

/* Mission, validation and refined motion */
.hero-points div {
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 620ms ease,
    background 620ms ease;
}

.hero-points div:hover {
  box-shadow:
    0 14px 30px rgba(8, 40, 29, 0.12),
    inset 0 0 0 1px rgba(86, 168, 62, 0.2);
  transform: translateY(-4px) scale(1.035);
}

.hero-points div:hover dt {
  transform: scale(1.025);
}

.hero-points dt {
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-icon svg {
  width: 21px;
  height: 21px;
}

.trust-note-one .trust-icon,
.trust-note-two .trust-icon {
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.announcement-mark {
  width: 44px;
  height: 44px;
  border-color: rgba(169, 213, 139, 0.45);
  background: linear-gradient(145deg, rgba(169, 213, 139, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 5px rgba(169, 213, 139, 0.05);
}

.announcement-mark svg {
  width: 24px;
  height: 24px;
}

.advisory-section {
  position: relative;
  padding: 110px clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 5%, rgba(169, 213, 139, 0.2), transparent 28%),
    var(--cream-50);
}

.advisory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(36px, 6vw, 90px);
  max-width: 1220px;
  margin: 0 auto 52px;
}

.advisory-heading h2 {
  max-width: 760px;
  margin: 13px 0 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.advisory-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.advisory-intro .button {
  margin-top: 24px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.advisory-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--forest-900);
  box-shadow: 0 28px 70px rgba(8, 40, 29, 0.17);
  isolation: isolate;
}

.advisory-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.advisory-card:hover img {
  transform: scale(1.045);
}

.advisory-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 40, 29, 0.06) 20%, rgba(8, 40, 29, 0.32) 52%, rgba(8, 40, 29, 0.94) 100%);
}

.advisory-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 4vw, 46px);
  color: white;
}

.advisory-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime-200);
  backdrop-filter: blur(12px);
}

.advisory-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.advisory-card-kicker {
  color: var(--leaf-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advisory-card h3 {
  max-width: 520px;
  margin: 11px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3.2vw, 43px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.advisory-card p {
  max-width: 520px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.purpose-section {
  position: relative;
  padding: 110px clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 88%, rgba(169, 213, 139, 0.3), transparent 25%),
    linear-gradient(135deg, #f7f3e9, #fffdf7 58%, #edf5df);
}

.purpose-section::before {
  position: absolute;
  top: -210px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(18, 60, 43, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(18, 60, 43, 0.02),
    0 0 0 90px rgba(18, 60, 43, 0.012);
  content: "";
}

.purpose-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.purpose-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -35px;
}

.purpose-heading h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5.5vw, 75px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.purpose-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.purpose-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.purpose-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 42px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 60, 43, 0.12);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(8, 40, 29, 0.11);
  transition:
    transform 580ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 580ms ease;
}

.purpose-card::after {
  position: absolute;
  right: -75px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.12;
  content: "";
}

.purpose-card:hover {
  z-index: 2;
  box-shadow: 0 30px 70px rgba(8, 40, 29, 0.17);
  transform: translateY(-9px);
}

.purpose-mission {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(217, 237, 184, 0.72)),
    url("/assets/catalog/vegetable-crate.webp") center / cover;
  color: var(--forest-900);
}

.purpose-vision {
  background:
    linear-gradient(145deg, rgba(8, 40, 29, 0.94), rgba(13, 59, 42, 0.76)),
    url("/assets/catalog/olive-harvest.webp") center / cover;
  color: white;
}

.purpose-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(18, 60, 43, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 38px rgba(8, 40, 29, 0.13),
    inset 0 0 0 7px rgba(86, 168, 62, 0.07);
}

.purpose-vision .purpose-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 0 0 7px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.purpose-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.purpose-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--leaf-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vision-compass .compass-ticks {
  opacity: 0.68;
}

.purpose-vision .vision-compass {
  width: 31px;
  height: 31px;
  stroke-width: 1.35;
}
.purpose-vision .purpose-kicker {
  color: var(--leaf-300);
}

.purpose-card h3 {
  max-width: 570px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.purpose-card > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.purpose-vision > p {
  color: rgba(255, 255, 255, 0.66);
}

.purpose-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.purpose-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(18, 60, 43, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 750;
  transform-origin: center;
  transition:
    transform 580ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 580ms ease,
    background 580ms ease,
    box-shadow 580ms ease;
}

.purpose-tags span:hover {
  z-index: 1;
  border-color: rgba(86, 168, 62, 0.45);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 13px 26px rgba(8, 40, 29, 0.13),
    inset 0 0 0 2px rgba(86, 168, 62, 0.12);
  transform: translateY(-4px) scale(1.045);
}

.purpose-vision .purpose-tags span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.purpose-vision .purpose-tags span:hover {
  border-color: rgba(217, 237, 184, 0.52);
  background: rgba(217, 237, 184, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.reset-back {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 800;
}

.reset-back span {
  display: inline-block;
  margin-right: 5px;
  transition: transform 220ms ease;
}

.reset-back:hover span {
  transform: translateX(-3px);
}

.reset-note {
  margin: -2px 0 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.account-type-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.account-type-switch > button {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 70px;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--forest-900);
  text-align: left;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.account-type-switch > button:hover {
  border-color: rgba(86, 168, 62, 0.42);
  transform: translateY(-2px);
}

.account-type-switch > button.active {
  border-color: var(--leaf-500);
  background: var(--green100);
  box-shadow: inset 0 0 0 1px rgba(86, 168, 62, 0.16);
}

.account-type-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--cream-100);
  color: var(--forest-700);
}

.account-type-switch > button.active .account-type-icon {
  background: white;
}

.account-type-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.account-type-switch strong,
.account-type-switch small {
  display: block;
}

.account-type-switch strong {
  font-size: 12px;
}

.account-type-switch small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
}

.signup-fields {
  display: grid;
  gap: 14px;
}

.signup-fields[hidden] {
  display: none;
}

.signup-fields > label {
  display: grid;
  gap: 7px;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 750;
}

.verification-form {
  align-content: start;
}

#auth-dialog[data-auth-stage="verify"] .auth-tabs,
#auth-dialog[data-auth-stage="verify"] [data-verification-back] {
  display: none;
}

.verification-mark {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 4px auto 12px;
  place-items: center;
  border: 1px solid rgba(86, 168, 62, 0.28);
  border-radius: 19px;
  background: var(--green100);
  color: var(--forest-700);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.45);
}

.verification-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.verification-expiry {
  padding: 11px 13px;
  border: 1px solid rgba(86, 168, 62, 0.18);
  border-radius: 9px;
  background: rgba(217, 237, 184, 0.35);
  color: var(--forest-700);
  font-size: 10px;
  line-height: 1.5;
}

.verification-code {
  font-size: 22px !important;
  font-weight: 850;
  letter-spacing: 0.42em;
  text-align: center;
}

.verification-resend {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(18, 60, 43, 0.16);
  border-radius: 10px;
  background: transparent;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.verification-resend:not(:disabled):hover {
  border-color: rgba(86, 168, 62, 0.48);
  background: rgba(217, 237, 184, 0.28);
}

.verification-resend:disabled {
  cursor: not-allowed;
  color: var(--muted);
  opacity: 0.64;
}

.verification-resend-countdown {
  min-width: 42px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(18, 60, 43, 0.08);
  font-size: 10px;
}

.verification-resend:not(:disabled) .verification-resend-countdown {
  display: none;
}

.faq-symbol svg {
  grid-area: 1 / 1;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-arrow-down {
  opacity: 0;
  transform: translateY(-4px);
}

.faq-list details[open] .faq-symbol {
  background: transparent;
  color: var(--forest-900);
  transform: none;
}

.faq-list details.is-open .faq-symbol {
  background: var(--forest-900);
  color: white;
}

.faq-list details.is-open .faq-arrow-right {
  opacity: 0;
  transform: translateX(4px);
}

.faq-list details.is-open .faq-arrow-down {
  opacity: 1;
  transform: translateY(0);
}

.faq-list details.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-list details:not(.is-open) .faq-answer {
  grid-template-rows: 0fr;
  opacity: 0;
}

.form-error {
  display: grid;
  gap: 5px;
  padding: 11px 13px;
  border-left: 3px solid var(--danger);
  border-radius: 5px;
  background: rgba(217, 91, 74, 0.08);
  color: #a6382b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.form-error[hidden] {
  display: none;
}

.form-error span::before {
  margin-right: 6px;
  content: "•";
}

.form-error[data-tone="info"] {
  border-left-color: var(--leaf-500);
  background: rgba(86, 168, 62, 0.09);
  color: var(--forest-700);
}

.form-error[data-tone="info"] span::before {
  content: "i";
  display: inline-grid;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.auth-form input.input-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(217, 91, 74, 0.1);
}

.auth-form textarea.input-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(217, 91, 74, 0.1);
}

.password-strength {
  display: grid;
  gap: 7px;
}

.password-strength,
.password-rules {
  max-height: 0;
  margin-top: -7px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 320ms ease,
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.password-field:focus-within ~ .password-strength {
  max-height: 56px;
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.password-field:focus-within ~ .password-rules {
  max-height: 72px;
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.password-strength-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.password-strength-bars i {
  height: 5px;
  border-radius: 99px;
  background: #e4e8e4;
  transition: background 220ms ease, transform 220ms ease;
}

.password-strength[data-score="1"] .password-strength-bars i:nth-child(-n + 1),
.password-strength[data-score="2"] .password-strength-bars i:nth-child(-n + 2) {
  background: #d95b4a;
}

.password-strength[data-score="3"] .password-strength-bars i:nth-child(-n + 3) {
  background: #e2a928;
}

.password-strength[data-score="4"] .password-strength-bars i:nth-child(-n + 4) {
  background: #75b94e;
}

.password-strength[data-score="5"] .password-strength-bars i {
  background: var(--forest-700);
}

.password-strength-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.password-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.password-rules span {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--cream-100);
  color: #879189;
  font-size: 8px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease;
}

.password-rules span::before {
  margin-right: 4px;
  content: "○";
}

.password-rules span.passed {
  background: var(--green100);
  color: var(--forest-700);
}

.password-rules span.passed::before {
  content: "✓";
}

@media (max-width: 820px) {
  .purpose-heading,
  .purpose-cards {
    grid-template-columns: 1fr;
  }

  .purpose-heading .eyebrow {
    margin-bottom: 0;
  }

  .purpose-card {
    min-height: 500px;
  }
}

@media (max-width: 820px) {
  .advisory-heading,
  .advisory-grid {
    grid-template-columns: 1fr;
  }

  .advisory-heading {
    align-items: start;
  }

  .advisory-card {
    min-height: 510px;
  }
}

@media (max-width: 560px) {
  .advisory-section {
    padding: 80px 24px;
  }

  .advisory-heading {
    gap: 24px;
    margin-bottom: 36px;
  }

  .advisory-intro .button {
    width: 100%;
  }

  .advisory-grid {
    gap: 18px;
  }

  .advisory-card {
    min-height: 520px;
    border-radius: 20px;
  }

  .advisory-card-content {
    padding: 28px 24px;
  }

  .purpose-section {
    padding: 80px 24px;
  }

  .purpose-heading {
    gap: 20px;
    margin-bottom: 40px;
  }

  .purpose-card {
    min-height: 560px;
    padding: 30px 26px;
  }

  .purpose-tags {
    padding-top: 24px;
  }

  .account-type-switch {
    grid-template-columns: 1fr;
  }
}

/* Hakkımızda */
.about-page {
  background: var(--cream-50);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: center;
  min-height: 690px;
  gap: 60px;
  padding: 100px clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 89% 16%, rgba(169, 213, 139, 0.34), transparent 28%),
    linear-gradient(135deg, #fffdf7 0%, #f7f3e9 62%, #edf5df 100%);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.about-hero h1 {
  margin: 20px 0 30px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.about-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
}

.about-hero-mark {
  display: grid;
  width: min(100%, 350px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(18, 60, 43, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--forest-700);
  box-shadow: 0 35px 80px rgba(8, 40, 29, 0.13), inset 0 0 0 30px rgba(217, 237, 184, 0.22);
}

.about-hero-mark svg {
  width: 56%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(45px, 9vw, 140px);
  padding: 120px clamp(24px, 7vw, 110px);
}

.about-story h2 {
  max-width: 820px;
  margin: 15px 0 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-story-copy {
  display: grid;
  align-content: end;
  gap: 22px;
}

.about-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-values-section {
  padding: 15px clamp(24px, 7vw, 110px) 125px;
}

.about-values-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  margin-bottom: 46px;
}

.about-values-intro h2 {
  max-width: 880px;
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}

.about-values article,
.about-values article:first-child,
.about-values article:last-child {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--forest-900);
  box-shadow: 0 18px 42px rgba(8, 40, 29, 0.12);
  transform: translateY(0);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.about-values article::before,
.about-values article::after {
  position: absolute;
  inset: 0;
  content: "";
}

.about-values article::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.001);
  transition: transform 420ms cubic-bezier(.2,.7,.25,1), filter 420ms ease;
}

.about-values article::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 24, 17, 0.06) 12%, rgba(5, 24, 17, 0.28) 48%, rgba(5, 24, 17, 0.94) 100%);
  transition: background 320ms ease;
}

.about-values .value-transparency::before { background-image: url("/assets/catalog/heirloom-tomatoes.webp"); }
.about-values .value-local::before { background-image: url("/assets/catalog/olive-harvest.webp"); }
.about-values .value-knowledge::before { background-image: url("/assets/advisory/agronomy-consultation.jpg"); background-position: 52% center; }
.about-values .value-sustainability::before { background-image: url("/assets/catalog/vegetable-crate.webp"); }

.about-value-content {
  display: flex;
  min-height: 430px;
  padding: 28px 26px;
  flex-direction: column;
  justify-content: flex-end;
}

.about-value-index {
  position: absolute;
  top: 24px;
  left: 25px;
  display: grid;
  min-width: 37px;
  height: 37px;
  padding: 0 9px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(8, 40, 29, 0.28);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.about-values h3 {
  margin: 0 0 13px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.35vw, 35px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.about-values p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.65;
  transform: translateY(5px);
  transition: color 300ms ease, transform 300ms ease;
}

.about-values article:hover {
  box-shadow: 0 26px 58px rgba(8, 40, 29, 0.2);
  transform: translateY(-5px);
}

.about-values article:hover::before {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.about-values article:hover::after {
  background: linear-gradient(180deg, rgba(5, 24, 17, 0.02) 8%, rgba(5, 24, 17, 0.2) 44%, rgba(5, 24, 17, 0.96) 100%);
}

.about-values article:hover p { color: rgba(255,255,255,.92); transform: translateY(0); }
.about-hero-mark { transition: transform 380ms ease, box-shadow 380ms ease; }
.about-hero:hover .about-hero-mark { transform: translateY(-4px) rotate(1.2deg); box-shadow: 0 42px 88px rgba(8, 40, 29, 0.16), inset 0 0 0 30px rgba(217, 237, 184, 0.28); }

.about-direction {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 50px;
  padding: 100px clamp(24px, 7vw, 110px);
  background: var(--forest-900);
  color: white;
}

.about-direction h2 { max-width: 820px; margin: 15px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 5vw, 66px); font-weight: 500; letter-spacing: -0.05em; line-height: 1.02; }
.about-direction > p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; }
.about-direction .button { grid-column: 2; width: fit-content; }
.about-footer { padding-top: 28px; }

@media (max-width: 900px) {
  .about-hero, .about-story, .about-direction { grid-template-columns: 1fr; }
  .about-hero { min-height: auto; }
  .about-hero-mark { width: 250px; }
  .about-values-intro { grid-template-columns: 1fr; gap: 14px; }
  .about-values { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-values article, .about-values article:first-child, .about-values article:last-child { min-height: 390px; border-radius: 18px; }
  .about-value-content { min-height: 390px; }
  .about-direction .button { grid-column: 1; }
}

@media (max-width: 560px) {
  .footer-meta, .footer-legal { align-items: flex-start; flex-direction: column; gap: 9px; }
  .footer-legal { justify-content: flex-start; }
  .about-hero { gap: 45px; padding: 75px 24px; }
  .about-hero h1 { font-size: 50px; }
  .about-story { padding: 80px 24px; }
  .about-values-section { padding: 0 24px 80px; }
  .about-values { grid-template-columns: 1fr; }
  .about-direction { padding: 80px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-values article,
  .about-values article::before,
  .about-values p,
  .about-hero-mark {
    transition: none;
  }

  .about-values article:hover,
  .about-values article:hover::before,
  .about-hero:hover .about-hero-mark {
    transform: none;
  }
}

.activation-code-help {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.activation-request-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--forest-700);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.activation-request-link:focus-visible {
  outline: 3px solid rgba(86, 168, 62, 0.22);
  outline-offset: 3px;
}

.company-billing-address{display:grid;gap:14px;min-width:0;margin:0;padding:16px;border:1px solid rgba(18,60,43,.13);border-radius:14px;background:#fbfcf8}.company-billing-address legend{padding:0;color:var(--forest-900);font-size:12px;font-weight:800}.company-billing-address>p{margin:-4px 0 0;color:var(--muted);font-size:9px;line-height:1.45}.company-address-catalog-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.company-address-catalog-grid>label,.company-address-preview{display:grid;gap:7px;min-width:0;color:var(--forest-900);font-size:10px;font-weight:800}.company-address-catalog-grid input{min-width:0}.company-address-combo{position:relative}.company-address-combo>button{display:grid;width:100%;height:48px;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:10px;padding:0 13px;border:1px solid rgba(18,60,43,.16);border-radius:11px;background:#fff;color:#65776c;font:inherit;font-size:10px;font-weight:750;text-align:left;transition:border-color .16s,box-shadow .16s}.company-address-combo>button svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.company-address-combo.has-value>button{color:var(--forest-900)}.company-address-combo>button:not(:disabled):hover,.company-address-combo.open>button{border-color:rgba(47,123,70,.48);box-shadow:0 0 0 4px rgba(86,168,62,.1)}.company-address-combo>button:disabled{background:#f1f3ef;color:#a0aaa3;cursor:not-allowed}.company-address-combo-menu{position:absolute;z-index:28;top:calc(100% + 6px);right:0;left:0;overflow:hidden;border:1px solid rgba(18,60,43,.14);border-radius:12px;background:#fff;box-shadow:0 18px 38px rgba(8,40,29,.18)}.company-address-combo-menu>label{display:grid;gap:4px;padding:10px;border-bottom:1px solid rgba(18,60,43,.08);background:#f7faf4;color:#65776c;font-size:7px;font-weight:850;text-transform:uppercase}.company-address-combo-menu input{height:34px;padding:0 9px;border:1px solid rgba(18,60,43,.14);border-radius:8px;background:#fff;color:var(--forest-900);font:inherit;font-size:9px;outline:0}.company-address-combo-menu input:focus{border-color:rgba(47,123,70,.5)}.company-address-combo-menu [data-company-address-combo-options]{display:grid;max-height:210px;overflow:auto;padding:5px}.company-address-combo-menu [data-company-address-combo-options]>button{display:grid;gap:2px;padding:9px;border:0;border-radius:8px;background:transparent;color:var(--forest-900);text-align:left}.company-address-combo-menu [data-company-address-combo-options]>button:hover{background:#edf7e7}.company-address-combo-menu strong{font-size:9px}.company-address-combo-menu small{color:#738278;font-size:7px}.company-address-combo-empty{display:grid;gap:3px;padding:13px;color:#65776c}.company-address-combo-empty strong{font-size:9px}.company-address-preview{padding-top:2px}.company-address-preview output{min-height:42px;padding:11px 12px;border:1px dashed rgba(47,123,70,.28);border-radius:10px;background:#fff;color:#5d7063;font-size:9px;font-weight:650;line-height:1.5}.company-billing-address.is-complete .company-address-preview output{border-color:rgba(47,123,70,.42);background:#f4faee;color:#244b35}.company-billing-address.is-invalid{border-color:var(--danger);box-shadow:0 0 0 3px rgba(194,79,61,.12)}@media(max-width:620px){.company-address-catalog-grid{grid-template-columns:1fr}.company-billing-address{padding:14px}}
.company-billing-identity{display:grid;grid-template-columns:minmax(0,1fr) minmax(150px,.45fr);gap:12px}.company-billing-identity>label{display:grid;gap:7px;min-width:0;color:var(--forest-900);font-size:10px;font-weight:800}.company-billing-identity input{min-width:0}@media(max-width:620px){.company-billing-identity{grid-template-columns:1fr}}

/* Kurumsal fatura adresi: kataloglu, dengeli alan düzeni */
.company-billing-address{gap:16px!important;padding:18px!important}.company-billing-address>p{margin:0!important}.company-billing-identity{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important}.company-billing-identity>label,.company-address-catalog-grid>label{align-content:start}.company-billing-identity input,.company-address-catalog-grid>label>input{height:54px!important;padding:0 15px!important;border-color:rgba(18,60,43,.16)!important;border-radius:12px!important;background:#fff!important;color:var(--forest-900)!important;font-size:12px!important;font-weight:740!important}.company-billing-identity small{min-height:0!important;margin-top:-2px;color:#6f8075!important;font-size:8px!important;font-weight:650!important;line-height:1.4}.company-address-catalog-grid{gap:15px 14px!important}.company-address-combo>button{height:54px!important;padding:0 15px!important;border-radius:12px!important;font-size:11px!important}.company-address-combo-menu{border-radius:16px!important}.company-address-combo-menu>label{gap:6px!important;padding:12px!important}.company-address-combo-menu input{height:40px!important;border-radius:11px!important;font-size:10px!important}.company-address-combo-menu [data-company-address-combo-options]{gap:7px!important;max-height:300px!important;padding:10px!important}.company-address-combo-menu [data-company-address-combo-options]>button{grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important;gap:10px!important;min-height:54px!important;padding:10px 11px!important;border:1px solid rgba(18,60,43,.08)!important;border-radius:12px!important;background:#fff!important}.company-address-combo-menu [data-company-address-combo-options]>button:hover{border-color:rgba(86,168,62,.36)!important;background:#f4faef!important}.company-address-combo-menu [data-company-address-combo-options] strong{font-size:10px!important}.company-address-combo-menu [data-company-address-combo-options] i{display:grid;width:30px;height:30px;place-items:center;border-radius:50%;background:#f0f4ee;color:#708078;font-size:21px;font-style:normal;line-height:1}.company-address-preview output{min-height:50px!important;padding:14px!important;border-radius:12px!important;font-size:10px!important}.company-address-catalog-grid>label:last-of-type input{letter-spacing:.04em}@media(max-width:620px){.company-billing-address{padding:15px!important}.company-billing-identity{grid-template-columns:1fr!important}.company-address-catalog-grid{gap:12px!important}}
