/* =================================================================
   YATIRIM TEŞVİK — Editöryel / köşeli tasarım dili
   Brief renkler: mavi #4054B2 · yeşil #23A455
   ================================================================= */

:root {
  --brand-blue:   #4054B2;
  --brand-green:  #23A455;

  /* LIGHT yüzeyler */
  --bg:            #F4F4F1;
  --bg-elev:       #FBFBF9;
  --bg-ink:        #0E0E0C;
  --text:          #0E0E0C;
  --text-soft:     #4A4A45;
  --text-mute:     #8A8A82;
  --line:          rgba(14,14,12,.14);
  --line-strong:   rgba(14,14,12,.85);
  --logo:          rgba(14,14,12,.5);

  --gutter:        clamp(20px, 5vw, 96px);
  --header-h:      96px;
  --font:          'Space Grotesk', system-ui, sans-serif;
  --font-logo:     'Roboto Slab', Georgia, serif;
  --ease:          cubic-bezier(.16,1,.3,1);
}

[data-theme="dark"] {
  --bg:            #0B0B0A;
  --bg-elev:       #141412;
  --bg-ink:        #F4F4F1;
  --text:          #F4F4F1;
  --text-soft:     #B5B5AE;
  --text-mute:     #74746C;
  --line:          rgba(244,244,241,.14);
  --line-strong:   rgba(244,244,241,.6);
  --logo:          rgba(244,244,241,.5);
  color-scheme: dark;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  transition: background .5s var(--ease), color .5s var(--ease);
  font-feature-settings: "ss01";
}
img,svg { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul,ol { list-style: none; }
::selection { background: var(--brand-blue); color: #fff; }

/* ---- Layout ---- */
.wrap { width: 100%; padding-inline: var(--gutter); }
.block { padding: clamp(80px, 13vw, 180px) 0; border-top: 1px solid var(--line); position: relative; }
.dot-end { color: var(--brand-green); }

/* ---- Logo (bold italik, alt alta iki satır, yeşil cam, harfin içinden ince ışık) ---- */
.logo {
  position: relative;
  display: flex; flex-direction: column; line-height: .98;
  font-family: var(--font-logo); font-style: italic; font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); letter-spacing: .005em;
  white-space: nowrap;
  padding: .06em .14em;
  /* Tek tip yeşil taban + dar parlak şerit.
     Şerit %50'de; background-size 300% sayesinde ışık harflerin
     dışında dinlenir → "reveal" değil gerçek parıltı olur. */
  background-image: linear-gradient(
    100deg,
    var(--brand-green) 0%,
    var(--brand-green) 45%,
    #9aedb0 48%,
    #ffffff 50%,
    #9aedb0 52%,
    var(--brand-green) 55%,
    var(--brand-green) 100%
  );
  background-size: 300% 100%;
  background-repeat: no-repeat;
  background-position: 100% 0;   /* dinlenme: şerit solda dışarıda, yazı tam yeşil */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: opacity .3s, filter .3s;
  will-change: background-position;
}
.logo:hover { filter: brightness(1.12); }
[data-theme="dark"] .logo { filter: drop-shadow(0 0 14px rgba(35,164,85,.25)); }

/* =================================================================
   PRELOADER
   ================================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 999; background: var(--bg-ink); color: var(--bg);
  display: grid; place-items: center; transition: transform .9s var(--ease), opacity .9s;
}
.preloader.is-done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.preloader__label {
  position: absolute; bottom: 6vh; left: 0; right: 0; text-align: center;
  font-family: var(--font-logo); font-style: italic; font-size: 1rem; letter-spacing: .2em;
}
.preloader__bar { width: min(420px, 70vw); height: 2px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.preloader__bar::after {
  content: ""; position: absolute; inset: 0; width: 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  animation: load 1.6s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

/* ---- Scroll progress ---- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; z-index: 300; width: 0; background: linear-gradient(90deg, var(--brand-blue), var(--brand-green)); }

/* ---- Cursor ---- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 998; border-radius: 50%; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.6); transition: width .25s var(--ease), height .25s, border-color .25s, border-radius .25s; }
.cursor-ring.is-hover { width: 54px; height: 54px; border-radius: 8px; border-color: var(--brand-green); }
@media (hover: none),(pointer: coarse) { .cursor-dot,.cursor-ring { display:none; } }

/* =================================================================
   HEADER
   ================================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; padding: 10px 16px; font-size: .9rem; font-weight: 500; color: var(--text-soft);
  transition: color .25s;
}
.nav__link span { color: var(--text-mute); font-size: .7rem; margin-right: 4px; }
.nav__link:hover { color: var(--text); }
.nav__link--cta { background: var(--text); color: var(--bg) !important; margin-left: 10px; padding: 12px 22px; }
.nav__link--cta:hover { background: var(--brand-blue); color: #fff; }
.nav__link--cta span { display: none; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line);
  color: var(--text-soft); transition: color .25s, border-color .25s, transform .4s var(--ease);
}
.theme-toggle:hover { color: var(--text); border-color: var(--text); transform: rotate(20deg); }
.icon-sun, .icon-moon { grid-area: 1/1; transition: opacity .3s, transform .3s; }
.icon-sun { opacity: 0; transform: rotate(-90deg) scale(.6); }
[data-theme="dark"] .icon-sun { opacity: 1; transform: none; }
[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(90deg) scale(.6); }

.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { width: 18px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: calc(var(--header-h) + 40px); padding-bottom: 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: .5;
}
.hero__inner { position: relative; z-index: 2; padding-bottom: 60px; }
.hero__meta { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--text-mute); margin-bottom: 40px; text-transform: uppercase; letter-spacing: .08em; }
.hero__dot { color: var(--brand-green); }
.hero__index { font-family: var(--font-logo); font-style: italic; }
.hero__title {
  font-size: clamp(3rem, 11vw, 11rem); line-height: .92; font-weight: 500; letter-spacing: -.04em;
  margin-bottom: 60px;
}
/* kuyruklu harflerin (y,j,g,p,ş,ç) kesilmemesi için padding + margin telafisi */
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .14em;   /* kuyruklar için boşluk */
  margin-bottom: -.14em;   /* yer kaplamasın diye telafi */
}
.hero__title .line > span { display: block; will-change: transform; }
.mark {
  font-style: italic; font-family: var(--font-logo); font-weight: 400;
  color: var(--brand-green); position: relative;
}
.hero__foot { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; border-top: 1px solid var(--line); padding-top: 32px; }
.hero__lead { max-width: 460px; color: var(--text-soft); font-size: clamp(1rem, 1.3vw, 1.15rem); }
.hero__cta { }

/* ---- Marquee ---- */
.marquee {
  position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; overflow: hidden; background: var(--bg-elev);
}
.marquee__track {
  display: flex; align-items: center; gap: 28px; white-space: nowrap; width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee__track span { font-size: .9rem; font-weight: 500; letter-spacing: .1em; color: var(--text-soft); text-transform: uppercase; }
.marquee__sep { color: var(--brand-green); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =================================================================
   STATS
   ================================================================= */
.stats { border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item {
  padding: clamp(36px, 5vw, 64px) 0; border-left: 1px solid var(--line); padding-left: 24px;
}
.stats__item:first-child { border-left: none; }
.stats__num { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 500; letter-spacing: -.03em; line-height: 1; display: inline-block; }
.stats__plus { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 400; color: var(--brand-green); }
.stats__label { display: block; margin-top: 12px; font-size: .82rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; }

/* =================================================================
   BLOCK HEAD
   ================================================================= */
.block__head { margin-bottom: clamp(48px, 7vw, 90px); max-width: 900px; }
.block__head--row { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 40px; }
.block__index { display: inline-block; font-size: .78rem; color: var(--text-mute); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-logo); font-style: italic; }
.block__title { font-size: clamp(2.4rem, 7vw, 6rem); line-height: .95; font-weight: 500; letter-spacing: -.035em; }
.block__desc { margin-top: 28px; font-size: clamp(1rem, 1.3vw, 1.2rem); color: var(--text-soft); max-width: 560px; }

/* =================================================================
   LIST (Services)
   ================================================================= */
.list { border-top: 1px solid var(--line); }
.list__row {
  position: relative; display: grid; grid-template-columns: 80px 1.1fr 2fr auto; gap: 40px; align-items: center;
  padding: 32px 0; border-bottom: 1px solid var(--line); cursor: pointer;
  transition: padding .4s var(--ease);
}
.list__row::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--brand-blue); transition: width .4s var(--ease); z-index: 0;
}
.list__row:hover { padding-left: 28px; padding-right: 12px; }
.list__row:hover::before { width: 4px; }
.list__row > * { position: relative; z-index: 1; }
.list__num { font-family: var(--font-logo); font-style: italic; color: var(--text-mute); font-size: .9rem; }
.list__title { font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 500; letter-spacing: -.02em; transition: color .3s; }
.list__row:hover .list__title { color: var(--brand-blue); }
.list__text { color: var(--text-soft); font-size: .98rem; max-width: 480px; opacity: .6; transition: opacity .3s; }
.list__row:hover .list__text { opacity: 1; }
.list__arrow { font-size: 1.4rem; color: var(--text-mute); transition: transform .4s var(--ease), color .3s; }
.list__row:hover .list__arrow { transform: translateX(8px); color: var(--brand-green); }

/* =================================================================
   METHOD (Süreç)
   ================================================================= */
.method__inner { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.method__head { position: sticky; top: calc(var(--header-h) + 40px); }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 36px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: var(--font-logo); font-style: italic; font-size: 1.1rem; color: var(--brand-green); }
.step__t { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 500; letter-spacing: -.02em; margin-bottom: 8px; }
.step__d { color: var(--text-soft); max-width: 520px; }

/* =================================================================
   FEATURE (Neden Biz)
   ================================================================= */
.feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.feature__visual {
  position: relative; background: var(--bg-ink); color: var(--bg); padding: clamp(40px, 5vw, 72px);
  min-height: 460px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
}
.feature__visual::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 260px; height: 260px;
  background: radial-gradient(circle, var(--brand-green), transparent 65%); opacity: .35; filter: blur(20px);
}
.feature__mark { font-family: var(--font-logo); font-style: italic; font-size: 5rem; line-height: 1; color: var(--brand-green); }
.feature__quote p { font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.3; font-weight: 400; letter-spacing: -.01em; }
.feature__seal { display: flex; align-items: baseline; gap: 6px; position: relative; z-index: 1; }
.feature__seal-n { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.feature__seal-plus { font-size: 2rem; color: var(--brand-green); }
.feature__seal-l { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); margin-left: 14px; line-height: 1.3; }
.feature__copy .block__title { margin-bottom: 48px; }
.feature__bullets { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.bullet {
  display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line);
  font-size: 1.05rem; font-weight: 500; transition: padding .3s var(--ease), color .3s;
}
.bullet:hover { padding-left: 16px; color: var(--brand-blue); }
.bullet__x { color: var(--brand-green); font-weight: 400; }

/* =================================================================
   EXPERTISE (Sektörler)
   ================================================================= */
.tags { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tag {
  flex: 1; min-width: 160px; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 500; letter-spacing: -.01em; color: var(--text-soft);
  display: flex; align-items: center; transition: color .3s, background .3s;
}
.tag:hover { color: var(--text); background: var(--bg-elev); }

/* =================================================================
   INSIGHTS (Yazılar)
   ================================================================= */
.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.post {
  padding: clamp(32px, 4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 28px; transition: background .3s;
}
.post:hover { background: var(--bg-elev); }
.post__num { font-family: var(--font-logo); font-style: italic; color: var(--text-mute); font-size: .85rem; }
.post__body { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.post__cat { display: inline-block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-green); }
.post__title { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.2; margin-top: 4px; }
.post__text { color: var(--text-soft); font-size: .95rem; }
.post__meta { margin-top: auto; font-size: .8rem; color: var(--text-mute); }

/* =================================================================
   FAQ
   ================================================================= */
.faq__inner { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.faq__head { position: sticky; top: calc(var(--header-h) + 40px); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 500; letter-spacing: -.015em; transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brand-blue); }
.faq__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--text); transition: transform .35s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__item p { padding: 0 0 28px; color: var(--text-soft); max-width: 640px; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.contact__title { font-size: clamp(2.4rem, 6vw, 5rem); line-height: .95; font-weight: 500; letter-spacing: -.035em; margin: 16px 0 28px; }
.contact__lead { color: var(--text-soft); font-size: 1.1rem; max-width: 420px; margin-bottom: 48px; }
.contact__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.contact__list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.contact__list small { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); }
.contact__list a, .contact__list span { font-size: 1.05rem; font-weight: 500; }

.contact__form { display: flex; flex-direction: column; gap: 4px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 26px 16px 10px; border: 1px solid var(--line); border-radius: 0;
  background: transparent; color: var(--text); font-family: inherit; font-size: 1rem; resize: vertical;
  margin: -1px 0 0 -1px;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-blue); z-index: 2; position: relative; }
.field label {
  position: absolute; left: 16px; top: 18px; color: var(--text-mute); font-size: 1rem; pointer-events: none;
  transition: transform .25s var(--ease), font-size .25s, color .25s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-12px); font-size: .72rem; color: var(--brand-blue); text-transform: uppercase; letter-spacing: .08em;
}
.form__note { margin-top: 12px; font-size: .9rem; color: var(--brand-green); min-height: 1.2em; }

/* ---- Buttons / links ---- */
.btn-link {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px;
  background: var(--text); color: var(--bg); font-weight: 500; font-size: .95rem;
  transition: background .3s, transform .3s var(--ease);
}
.btn-link svg { transition: transform .3s var(--ease); }
.btn-link:hover { background: var(--brand-blue); transform: translateY(-2px); }
.btn-link:hover svg { transform: translateX(4px); }
.btn-link--inline { background: transparent; color: var(--text); border: 1px solid var(--line-strong); padding: 12px 20px; }
.btn-link--inline:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-solid {
  margin-top: 16px; padding: 20px; width: 100%; background: var(--brand-blue); color: #fff;
  font-weight: 600; font-size: 1rem; transition: background .3s;
}
.btn-solid:hover { background: var(--brand-green); }
.btn-solid--full { width: 100%; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--bg-ink); color: var(--bg); padding-top: clamp(60px, 8vw, 120px); }
.footer__hero { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(244,244,241,.15); }
.footer__back { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; transition: color .3s; }
.footer__back:hover { color: var(--brand-green); }
.footer__big {
  font-family: var(--font-logo); font-style: italic; font-weight: 400;
  font-size: clamp(2.5rem, 13vw, 14rem); line-height: .85; letter-spacing: -.02em; text-align: center; flex: 1;
  color: var(--brand-green);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0; border-bottom: 1px solid rgba(244,244,241,.15); }
.footer__col--brand p { color: rgba(244,244,241,.6); max-width: 300px; font-size: .95rem; }
.footer__col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(244,244,241,.5); margin-bottom: 18px; }
.footer__col a, .footer__col span { display: block; padding: 6px 0; color: rgba(244,244,241,.85); font-size: .95rem; transition: color .25s; }
.footer__col a:hover { color: var(--brand-green); }
.footer__bar { padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: rgba(244,244,241,.5); }
.footer__legal a { color: rgba(244,244,241,.5); }
.footer__legal a:hover { color: var(--bg); }

/* =================================================================
   REVEAL
   ================================================================= */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .insights__grid { grid-template-columns: 1fr 1fr; }
  .feature__inner, .contact__inner, .faq__inner, .method__inner { grid-template-columns: 1fr; gap: 48px; }
  .method__head, .faq__head { position: static; }
  .hero__foot { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); flex-direction: column; align-items: stretch;
    background: var(--bg-elev); padding: calc(var(--header-h) + 24px) 24px 32px; gap: 4px;
    transform: translateX(100%); transition: transform .45s var(--ease); border-left: 1px solid var(--line);
  }
  .nav.is-open { transform: none; }
  .nav__link { padding: 16px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link--cta { margin: 16px 0 0; text-align: center; }
  .menu-toggle { display: flex; }
  .list__row { grid-template-columns: 50px 1fr; gap: 16px; }
  .list__text, .list__arrow { display: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(3) { border-left: none; }
  .insights__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__hero { flex-direction: column; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .preloader { display: none; }
}
