/* =========================================================
   Fluxylora — marketing site
   Design tokens + components + animations
   ========================================================= */

:root {
  /* ---- brand greens (from logo) ---- */
  --green-950: #14271c;
  --green-900: #1b3325;
  --green-800: #244231;
  --green-700: #2f4a38;
  --green-600: #3d5c3f;
  --brand:     #436149; /* logo icon fill */
  --green-500: #4f6f50;
  --green-400: #6f9162;
  --leaf:      #8fb46f;
  --leaf-300:  #b5ce9a;
  --sage:      #cfe0b8;
  --mist:      #e7efda;

  /* ---- paper / neutrals ---- */
  --paper:    #f6f7ec;
  --paper-2:  #fbfbf3;
  --white:    #ffffff;
  --ink:      #1b2a20;
  --ink-soft: #46584b;
  --ink-mute: #6a7a6d;
  --line:     #e2e6d3;

  /* ---- accent (contrast) ---- */
  --accent:      #e2823c;
  --accent-600:  #cf6a23;
  --accent-300:  #f4b483;
  --amber:       #f0a934;

  /* ---- effects ---- */
  --shadow-sm: 0 2px 8px rgba(27, 51, 37, .06);
  --shadow:    0 14px 40px rgba(27, 51, 37, .10);
  --shadow-lg: 0 30px 70px rgba(20, 39, 28, .18);
  --ring: 0 0 0 4px rgba(143, 180, 111, .28);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1200px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }

::selection { background: var(--leaf); color: var(--green-950); }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 1000;
  background: var(--green-800); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .96rem; letter-spacing: .01em;
  padding: 12px 22px; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--green-600), var(--brand) 60%, var(--green-700));
  color: #fff; box-shadow: 0 10px 24px rgba(61, 92, 63, .32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(61, 92, 63, .42); }

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  color: #fff; box-shadow: 0 10px 24px rgba(207, 106, 35, .34);
}
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(207, 106, 35, .46); }

.btn--ghost {
  background: rgba(255, 255, 255, .6);
  color: var(--green-800);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--leaf); background: #fff; box-shadow: var(--shadow); }

.btn--login {
  background: var(--green-800); color: #fff;
  padding: 11px 20px; box-shadow: 0 8px 20px rgba(36, 66, 49, .28);
}
.btn--login:hover { transform: translateY(-2px); background: var(--green-900); box-shadow: 0 12px 26px rgba(36, 66, 49, .4); }

/* =========================================================
   Navbar (fixed)
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height .3s var(--ease), background .3s, box-shadow .3s, border-color .3s;
  background: rgba(246, 247, 236, .72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(246, 247, 236, .9);
  box-shadow: 0 8px 30px rgba(27, 51, 37, .08);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(100% - 44px, 1320px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 44px; height: auto; transition: transform .4s var(--ease); }
.nav.is-scrolled .brand__mark { width: 38px; }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand__word {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  color: var(--green-800); letter-spacing: -.01em;
}

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > a {
  position: relative; padding: 9px 14px; border-radius: 10px;
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav__links > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--leaf); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links > a:hover { color: var(--green-800); }
.nav__links > a:hover::after,
.nav__links > a.is-active::after { transform: scaleX(1); }
.nav__links > a.is-active { color: var(--green-800); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__mobileActions { display: none; }

/* language toggle */
.lang {
  display: inline-flex; align-items: center; gap: 3px;
  font-weight: 700; font-size: .82rem; letter-spacing: .03em;
  padding: 7px 11px; border-radius: 100px;
  border: 1.5px solid var(--line); color: var(--ink-mute);
  transition: border-color .2s, color .2s, background .2s;
}
.lang:hover { border-color: var(--leaf); }
.lang__sep { opacity: .4; }
.lang__tr, .lang__en { transition: color .2s, opacity .2s; }
html[lang="tr"] .lang__tr { color: var(--green-700); }
html[lang="tr"] .lang__en { opacity: .4; }
html[lang="en"] .lang__en { color: var(--green-700); }
html[lang="en"] .lang__tr { opacity: .4; }

/* hamburger */
.hamburger { display: none; width: 42px; height: 42px; border-radius: 12px; position: relative; }
.hamburger span {
  position: absolute; left: 10px; right: 10px; height: 2.4px; background: var(--green-800);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .25s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20, 39, 28, .4); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s;
}
.nav__backdrop.is-show { opacity: 1; }

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--leaf), var(--accent));
  z-index: 200; transition: width .1s linear;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; padding: calc(var(--nav-h) + 72px) 0 110px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(143, 180, 111, .18), transparent 60%),
    radial-gradient(900px 500px at -5% 20%, rgba(207, 224, 184, .35), transparent 55%),
    var(--paper);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(61, 92, 63, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 92, 63, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 600px at 60% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 60% 30%, #000, transparent 75%);
}

.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; }
.blob--1 { width: 460px; height: 460px; top: -120px; right: -80px;
  background: radial-gradient(circle, var(--leaf), transparent 70%); animation: float1 16s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; bottom: -120px; left: -60px;
  background: radial-gradient(circle, var(--sage), transparent 70%); animation: float2 20s ease-in-out infinite; }
.blob--3 { width: 240px; height: 240px; top: 40%; left: 52%;
  background: radial-gradient(circle, rgba(226, 130, 60, .4), transparent 70%); animation: float1 18s ease-in-out infinite reverse; }
.blob--soft { width: 700px; height: 700px; top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(143, 180, 111, .28), transparent 70%); filter: blur(70px); animation: float2 24s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 28px) scale(1.08); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(34px, -24px) scale(1.12); } }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .7); border: 1px solid var(--line);
  padding: 7px 15px 7px 11px; border-radius: 100px;
  font-weight: 600; font-size: .86rem; color: var(--green-700);
  box-shadow: var(--shadow-sm);
}
.eyebrow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 0 rgba(143, 180, 111, .6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(143, 180, 111, .6); } 70% { box-shadow: 0 0 0 10px rgba(143, 180, 111, 0); } 100% { box-shadow: 0 0 0 0 rgba(143, 180, 111, 0); } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600; font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06; letter-spacing: -.02em; color: var(--green-900);
  margin: 22px 0 20px;
}
.hero__title span { display: block; }
.grad {
  background: linear-gradient(100deg, var(--brand), var(--leaf) 55%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero__lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; font-size: .92rem; color: var(--ink-mute); font-weight: 600; }
.hero__trust svg { color: var(--green-500); flex: none; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(61, 92, 63, .35); border-radius: 100px;
  display: grid; place-items: start center; padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--green-600); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* falling leaves */
.leaves { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.leaf-p {
  position: absolute; top: -8%;
  width: var(--s); height: var(--s);
  background: var(--c); border-radius: 0 100% 0 100%;
  opacity: .5; animation: fall var(--d) linear var(--delay) infinite;
}
@keyframes fall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10% { opacity: .55; }
  100% { transform: translateY(118vh) translateX(var(--x)) rotate(540deg); opacity: 0; }
}

/* ----- hero visual / dashboard mock ----- */
.hero__visual { position: relative; min-height: 460px; }

.orbit {
  position: absolute; inset: 0; z-index: 1;
  animation: spin 38s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orbit__badge {
  position: absolute; padding: 7px 13px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  font-weight: 700; font-size: .76rem; color: var(--green-700);
  animation: spin 38s linear infinite reverse;
}
.orbit__badge--1 { top: 2%; left: 18%; }
.orbit__badge--2 { top: 10%; right: 4%; color: var(--accent-600); }
.orbit__badge--3 { bottom: 8%; left: 2%; }
.orbit__badge--4 { bottom: 2%; right: 16%; }

.panel {
  position: relative; z-index: 2;
  background: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.panel--main { padding: 22px; }
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.panel__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--green-800); }

.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.pill--ok { background: rgba(143, 180, 111, .18); color: var(--green-700); }
.pill--ok i { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); animation: pulse 2s infinite; }

.panel__kpis { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items: center; margin-bottom: 18px; }
.kpi__label { font-size: .82rem; color: var(--ink-mute); display: block; }
.kpi__val { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: var(--green-900); display: block; line-height: 1.1; }
.kpi__val small { font-family: var(--font-sans); font-size: .9rem; font-weight: 600; color: var(--ink-mute); }
.kpi__delta { font-size: .82rem; font-weight: 700; }
.kpi__delta--down { color: var(--green-600); }

.donut { position: relative; width: 104px; height: 104px; margin-inline: auto; }
.donut__ring {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(var(--brand) 0 38%, var(--leaf) 38% 68%, var(--accent) 68% 92%, var(--mist) 92% 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  animation: donut-grow 1.4s var(--ease) both;
}
@keyframes donut-grow { from { transform: rotate(-120deg) scale(.6); opacity: 0; } to { transform: rotate(0) scale(1); opacity: 1; } }
.donut__center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.donut__center b { font-family: var(--font-display); font-size: 1.25rem; color: var(--green-800); }
.donut__center small { font-size: .68rem; color: var(--ink-mute); }

.bars { display: flex; align-items: flex-end; gap: 12px; height: 120px; padding-top: 8px; border-top: 1px dashed var(--line); }
.bar {
  flex: 1; position: relative; height: var(--h);
  background: linear-gradient(180deg, var(--leaf), var(--green-500));
  border-radius: 8px 8px 4px 4px; min-height: 14px;
  transform-origin: bottom; animation: grow 1.1s var(--ease) both;
}
.bar--accent { background: linear-gradient(180deg, var(--accent-300), var(--accent)); }
.bar span {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: .64rem; font-weight: 600; color: var(--ink-mute); white-space: nowrap;
}
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bars .bar:nth-child(1) { animation-delay: .1s; }
.bars .bar:nth-child(2) { animation-delay: .2s; }
.bars .bar:nth-child(3) { animation-delay: .3s; }
.bars .bar:nth-child(4) { animation-delay: .4s; }
.bars .bar:nth-child(5) { animation-delay: .5s; }

.panel--chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  padding: 12px 16px; border-radius: var(--r);
}
.chip-a { top: -6%; right: -4%; }
.chip-b { bottom: -4%; left: -6%; }
.chip__ico {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(143, 180, 111, .2); color: var(--green-700); font-weight: 800;
}
.chip__ico--accent { background: rgba(226, 130, 60, .18); color: var(--accent-600); }
.panel--chip b { display: block; font-size: .9rem; color: var(--green-900); }
.panel--chip small { font-size: .76rem; color: var(--ink-mute); }

/* floats */
.float-a { animation: bob 7s ease-in-out infinite; }
.float-b { animation: bob 6s ease-in-out .4s infinite; }
.float-c { animation: bob 8s ease-in-out .8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================
   STATS band
   ========================================================= */
.stats {
  background: linear-gradient(120deg, var(--green-800), var(--green-700) 55%, var(--green-600));
  color: #fff; position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 120%, rgba(143, 180, 111, .35), transparent 60%);
}
.stats__grid {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 46px 0; text-align: center;
}
.stat { position: relative; }
.stat::after { content: ""; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255, 255, 255, .16); }
.stats__grid .stat:last-child::after { display: none; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1; display: block; }
.stat__label { display: block; margin-top: 8px; font-size: .92rem; color: var(--mist); }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.kicker {
  display: inline-block; font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600); background: rgba(143, 180, 111, .16); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.kicker--light { color: var(--leaf-300); background: rgba(255, 255, 255, .1); }
.section__title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; color: var(--green-900);
}
.section__title--light { color: #fff; }
.section__sub { margin-top: 16px; font-size: 1.1rem; color: var(--ink-soft); }
.section__sub--light { color: var(--mist); }

/* =========================================================
   FLOW (how it works)
   ========================================================= */
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flow__line { position: absolute; top: 42px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--leaf-300) 0 10px, transparent 10px 20px); z-index: 0; }
.flow__step {
  position: relative; z-index: 1; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 24px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.flow__step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--leaf-300); }
.flow__ico {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--brand));
  box-shadow: 0 10px 22px rgba(61, 92, 63, .28);
}
.flow__ico svg { width: 30px; height: 30px; }
.flow__step-no { font-family: var(--font-display); font-weight: 600; color: var(--leaf); font-size: .9rem; letter-spacing: .1em; }
.flow__step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--green-800); margin: 4px 0 10px; }
.flow__step p { font-size: .96rem; color: var(--ink-soft); }

/* =========================================================
   FEATURE cards
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(135deg, var(--leaf), transparent 40%, transparent 60%, var(--accent-300));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card__ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  transition: transform .35s var(--ease);
}
.card:hover .card__ico { transform: rotate(-6deg) scale(1.06); }
.card__ico svg { width: 28px; height: 28px; }
.card__ico--leaf { background: rgba(143, 180, 111, .18); color: var(--green-600); }
.card__ico--accent { background: rgba(226, 130, 60, .15); color: var(--accent-600); }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--green-800); margin-bottom: 8px; }
.card p { font-size: .97rem; color: var(--ink-soft); }

.features__more { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.mini {
  display: flex; align-items: center; gap: 13px; padding: 16px 18px;
  background: linear-gradient(180deg, rgba(231, 239, 218, .5), rgba(246, 247, 236, .4));
  border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.mini:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini__ico { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--green-600); box-shadow: var(--shadow-sm); }
.mini__ico svg { width: 21px; height: 21px; }
.mini b { display: block; font-size: .96rem; color: var(--green-800); }
.mini span { font-size: .83rem; color: var(--ink-mute); }

/* =========================================================
   IMPACT (dark)
   ========================================================= */
.impact {
  background: linear-gradient(160deg, var(--green-900), var(--green-800) 55%, var(--green-950));
  color: #fff; overflow: hidden;
}
.impact__bg { position: absolute; inset: 0; z-index: 0; }
.impact .container { position: relative; z-index: 1; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fact {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.fact:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .08); border-color: rgba(143, 180, 111, .4); }
.fact__num {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1; display: block; margin-bottom: 12px;
  background: linear-gradient(100deg, var(--leaf-300), var(--accent-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fact p { font-size: .96rem; color: var(--mist); }

.quote {
  position: relative; max-width: 860px; margin: 60px auto 0; text-align: center;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.45; color: #fff;
}
.quote__mark { width: 54px; height: 54px; color: var(--leaf); opacity: .5; margin: 0 auto 8px; }

/* =========================================================
   MODULES
   ========================================================= */
.modules { background: var(--paper-2); }
.modgrid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.mod {
  padding: 11px 18px; border-radius: 100px; font-weight: 600; font-size: .92rem;
  color: var(--green-800); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); position: relative; padding-left: 34px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, color .25s;
}
.mod::before {
  content: ""; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 0 100% 0 100%; background: var(--leaf);
  transition: background .25s, transform .25s;
}
.mod:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--leaf-300); color: var(--green-900); }
.mod:hover::before { background: var(--accent); transform: translateY(-50%) rotate(90deg); }

/* =========================================================
   COMPLIANCE
   ========================================================= */
.marquee { overflow: hidden; padding: 14px 0; border-block: 1px solid var(--line); margin: 8px 0 40px; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--green-400); white-space: nowrap; opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }

.badges { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.badge {
  display: grid; place-items: center; text-align: center; min-height: 78px; padding: 14px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
  font-weight: 700; font-size: .9rem; color: var(--green-700);
  transition: transform .25s var(--ease), box-shadow .25s, color .25s, border-color .25s;
}
.badge:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow); color: var(--accent-600); border-color: var(--accent-300); }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative; overflow: hidden; padding: clamp(72px, 10vw, 130px) 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-700) 60%, var(--brand));
  color: #fff; text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__inner { position: relative; z-index: 2; max-width: 680px; }
.cta__mark { width: 84px; margin: 0 auto 22px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.25)); animation: bob 6s ease-in-out infinite; }
.cta__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.02em; }
.cta__sub { margin: 16px auto 30px; font-size: 1.12rem; color: var(--mist); max-width: 520px; }
.cta__form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.cta__form input {
  flex: 1; padding: 15px 20px; border-radius: 100px; border: 1.5px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12); color: #fff; font-size: 1rem; font-family: inherit;
}
.cta__form input::placeholder { color: rgba(255, 255, 255, .6); }
.cta__form input:focus { background: rgba(255, 255, 255, .2); border-color: var(--leaf); box-shadow: none; }
.cta__note { margin-top: 16px; font-size: .88rem; color: rgba(255, 255, 255, .7); }
.cta__note.is-ok { color: var(--leaf-300); font-weight: 700; }
.cta__note.is-err { color: var(--accent-300); font-weight: 700; }
.cta__contact { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 1rem; color: var(--mist); }
.cta__contact svg { color: var(--leaf); flex: none; }
.cta__contact a { font-weight: 700; color: #fff; border-bottom: 2px solid rgba(143, 180, 111, .55); padding-bottom: 1px; transition: border-color .2s, color .2s; }
.cta__contact a:hover { color: var(--leaf-300); border-color: var(--leaf); }

.cta__or { margin-top: 18px; }
.cta__login { font-weight: 700; color: #fff; border-bottom: 2px solid rgba(143, 180, 111, .6); padding-bottom: 2px; transition: border-color .2s; }
.cta__login:hover { border-color: var(--leaf); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--green-950); color: rgba(255, 255, 255, .72); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.brand--footer .brand__word { color: #fff; }
.footer__brand p { margin: 16px 0 18px; font-size: .95rem; max-width: 340px; line-height: 1.7; }
.footer__mail { display: inline-flex; align-items: center; gap: 9px; margin: -4px 0 18px; font-size: .95rem; }
.footer__mail svg { color: var(--leaf); flex: none; }
.footer__mail a { color: var(--leaf-300); font-weight: 600; transition: color .2s; }
.footer__mail a:hover { color: #fff; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); color: #fff; transition: background .25s, transform .25s;
}
.footer__social a:hover { background: var(--green-600); transform: translateY(-3px); }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #fff; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: .94rem; color: rgba(255, 255, 255, .66); transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: var(--leaf-300); padding-left: 5px; }

.footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; }
.footer__bar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .86rem; }
.footer__legal { display: flex; align-items: center; gap: 18px; }
.footer__legal a { color: rgba(255, 255, 255, .66); transition: color .2s; }
.footer__legal a:hover { color: var(--leaf-300); }
.lang--footer { border-color: rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .7); }
html[lang="tr"] .lang--footer .lang__tr,
html[lang="en"] .lang--footer .lang__en { color: var(--leaf-300); }

/* =========================================================
   to-top
   ========================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-700); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease), background .25s;
}
.to-top.is-show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--green-800); transform: translateY(-3px); }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; margin-inline: auto; min-height: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .badges { grid-template-columns: repeat(4, 1fr); }
  .features__more { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: var(--paper-2); padding: calc(var(--nav-h) + 16px) 22px 30px;
    transform: translateX(105%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(20, 39, 28, .18); overflow-y: auto;
  }
  .nav__links.is-open { transform: none; }
  .nav__links > a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links > a::after { display: none; }
  .nav__mobileActions { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
  .nav__mobileActions .lang { align-self: flex-start; }
  .nav__mobileActions .btn { justify-content: center; }
  .nav__actions .lang, .nav__actions .btn--login { display: none; }
  .hamburger { display: block; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat:nth-child(2)::after { display: none; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__line { display: none; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__visual { min-height: 380px; }
  .cards { grid-template-columns: 1fr; }
  .features__more { grid-template-columns: 1fr; }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bar-in { flex-direction: column; text-align: center; }
  .cta__form { flex-direction: column; }
  .cta__form .btn { justify-content: center; }
  .panel--chip { display: none; }
  .orbit__badge { font-size: .68rem; padding: 5px 10px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
