/* ===== MNEMOS — Yaşayan Anılar ===== */
:root {
  --bg: #f4f5ec;
  --bg-alt: #eaeee0;
  --panel: #ffffff;
  --panel-2: #f4f3ea;
  --line: rgba(27, 59, 47, .14);
  --gold: #1b4332;
  --gold-bright: #14532d;
  --gold-dim: #6f8578;
  --text: #21302a;
  --muted: #5f6f64;
  --green: #40916c;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(27, 59, 47, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--gold-bright); }
h3 { font-size: 1.35rem; color: var(--text); }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, .95); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--gold); }
.brand-mark { width: 38px; height: 38px; }
.brand-mark-img { width: 46px; height: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.25rem; letter-spacing: .18em; color: var(--gold-bright); }
.brand-text small { font-size: .68rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

.main-nav { display: flex; gap: 18px; margin-inline-start: auto; align-items: center; }
.main-nav a { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; color: var(--muted); transition: color .2s; white-space: nowrap; }
.main-nav a svg { opacity: .7; transition: opacity .2s, transform .2s; }
.main-nav a:hover { color: var(--gold-bright); }
.main-nav a:hover svg { opacity: 1; transform: translateY(-1px); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Dil seçici */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--line); border-radius: 8px;
  color: var(--text); padding: 7px 12px; cursor: pointer; font-size: .82rem;
  font-family: var(--sans); letter-spacing: .08em;
}
.lang-btn:hover { border-color: var(--gold-dim); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  list-style: none; min-width: 170px; padding: 6px; display: none;
  box-shadow: var(--shadow); z-index: 50;
}
.lang-menu.open { display: block; }
.lang-menu button {
  width: 100%; text-align: start; background: none; border: 0; color: var(--text);
  padding: 9px 12px; border-radius: 7px; cursor: pointer; font-size: .88rem;
  display: flex; justify-content: flex-start; align-items: center; gap: 10px;
  font-family: var(--sans);
}
.lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-menu button:hover { background: rgba(27, 67, 50, .1); }
.lang-menu button.active { color: var(--gold-bright); }
.lang-menu em { font-size: .68rem; color: var(--muted); font-style: normal; border: 1px solid var(--line); padding: 1px 7px; border-radius: 20px; }

/* Butonlar */
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 10px;
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer; border: 0; font-family: var(--sans); text-align: center;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 12px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(27, 67, 50, .25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27, 67, 50, .38); }
.btn-ghost { background: none; border: 1px solid var(--gold-dim); color: var(--gold-bright); }
.btn-ghost:hover { background: rgba(27, 67, 50, .08); border-color: var(--gold); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 140px 0 90px;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 38%, rgba(27, 67, 50, .14), transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(64, 145, 108, .06), transparent 70%);
  pointer-events: none;
}
.hero-tree {
  position: absolute; width: min(620px, 90vw); top: 50%; left: 50%;
  transform: translate(-50%, -52%); color: var(--gold);
  opacity: .16; pointer-events: none;
}
.hero-tree-nodes circle { animation: pulse 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.hero-tree-nodes circle:nth-child(2) { animation-delay: .6s; }
.hero-tree-nodes circle:nth-child(3) { animation-delay: 1.2s; }
.hero-tree-nodes circle:nth-child(4) { animation-delay: 1.8s; }
.hero-tree-nodes circle:nth-child(5) { animation-delay: 2.4s; }
@keyframes pulse { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

/* Animasyonlu aurora zemin */
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-aurora span {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  animation: auroraFloat 18s ease-in-out infinite;
}
.hero-aurora span:nth-child(1) { width: 42vw; height: 42vw; left: -8vw; top: -6vw; background: radial-gradient(circle, rgba(45,106,79,.55), transparent 70%); }
.hero-aurora span:nth-child(2) { width: 38vw; height: 38vw; right: -6vw; top: 4vw; background: radial-gradient(circle, rgba(212,175,55,.42), transparent 70%); animation-delay: -6s; }
.hero-aurora span:nth-child(3) { width: 46vw; height: 46vw; left: 30vw; bottom: -18vw; background: radial-gradient(circle, rgba(64,145,108,.4), transparent 70%); animation-delay: -12s; }
@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4vw, 3vw) scale(1.12); }
  66% { transform: translate(-3vw, 2vw) scale(.95); }
}

.hero-inner { position: relative; max-width: 880px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: #1b6e4a; margin-bottom: 26px; padding: 8px 18px; border-radius: 30px;
  background: rgba(255,255,255,.7); border: 1px solid rgba(45,106,79,.2);
  box-shadow: 0 4px 18px rgba(27,59,47,.08); backdrop-filter: blur(6px);
}
.hk-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 0 rgba(46,204,113,.6); animation: hkPulse 1.8s infinite; }
@keyframes hkPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); } 50% { box-shadow: 0 0 0 8px rgba(46,204,113,0); } }
.hero-title {
  font-size: clamp(2.7rem, 6.6vw, 4.8rem); font-weight: 600; margin-bottom: 24px; line-height: 1.08;
  background: linear-gradient(120deg, #14532d 0%, #2d6a4f 40%, #b8860b 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 auto 40px; max-width: 720px; }
.ht-item {
  display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 600; color: #2f4739;
  padding: 9px 16px; border-radius: 30px; background: rgba(255,255,255,.72);
  border: 1px solid rgba(27,59,47,.1); box-shadow: 0 3px 12px rgba(27,59,47,.06); backdrop-filter: blur(6px);
  transition: transform .18s, box-shadow .18s;
}
.ht-item:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(27,59,47,.14); }
.ht-item b { font-size: 1.05rem; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px;
  border: 2px solid rgba(45,106,79,.35); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; border-radius: 3px; background: #2d6a4f; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 660px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-quote { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-dim); font-style: italic; }
.hero-quote cite { display: block; font-size: .85rem; margin-top: 6px; letter-spacing: .1em; }

/* ---------- Bölümler ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid rgba(27, 67, 50, .07); }
.section-kicker {
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-sub { color: var(--muted); margin-top: 18px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2 h2 { margin-bottom: 20px; }
.grid-2 p + p { margin-top: 14px; }
.grid-2 p { color: var(--muted); }
.grid-2 p strong { color: var(--text); }

.quote-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow); position: relative;
}
.quote-card::before {
  content: "“"; position: absolute; top: -18px; inset-inline-start: 26px;
  font-family: var(--serif); font-size: 5rem; color: var(--gold); line-height: 1;
}
.quote-card p { font-family: var(--serif); font-size: 1.45rem; color: var(--gold-bright); font-style: italic; margin-bottom: 18px; line-height: 1.4; }
.quote-card span { color: var(--muted); font-size: .95rem; }

/* Kartlar */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.card-icon { font-size: 1.9rem; margin-bottom: 16px; }
/* Modern renkli ikon kutuları (landing) */
.card-icon, .feature-icon {
  width: 54px; height: 54px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 16px;
  background: linear-gradient(140deg, var(--ic1, #2d6a4f), var(--ic2, #1b4332));
  box-shadow: 0 8px 20px var(--ish, rgba(27,59,47,.28)), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .18s, box-shadow .22s;
}
.card:hover .card-icon, .feature:hover .feature-icon { transform: translateY(-3px) rotate(-3deg); }
.feature-icon.c1, .card-icon.c1 { --ic1:#34c48b; --ic2:#0f9d6b; --ish:rgba(15,157,107,.3); }
.feature-icon.c2, .card-icon.c2 { --ic1:#5aa0ff; --ic2:#3b6fd4; --ish:rgba(59,111,212,.3); }
.feature-icon.c3, .card-icon.c3 { --ic1:#c084fc; --ic2:#8b5cf6; --ish:rgba(139,92,246,.3); }
.feature-icon.c4 { --ic1:#e6a53c; --ic2:#c67f22; --ish:rgba(198,127,34,.3); }
.feature-icon.c5 { --ic1:#ee6fa8; --ic2:#cf3f8c; --ish:rgba(207,63,140,.3); }
.feature-icon.c6 { --ic1:#3fb8c9; --ic2:#1f8ea0; --ish:rgba(31,142,160,.3); }
.security-icon {
  width: 48px; height: 48px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 18px rgba(27,59,47,.24), inset 0 1px 0 rgba(255,255,255,.25);
  background: linear-gradient(140deg, var(--ic1, #2d6a4f), var(--ic2, #1b4332));
}
.security-icon.c-lib { --ic1:#5aa0ff; --ic2:#3b6fd4; }
.security-icon.c-vault { --ic1:#e6a53c; --ic2:#8a6d33; }
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { color: var(--muted); font-size: .93rem; }

.brand-voice { text-align: center; margin-top: 64px; }
.brand-voice p { font-family: var(--serif); font-size: 1.4rem; color: var(--muted); }
.brand-voice strong { color: var(--gold-bright); }
.brand-motto { margin-top: 22px; font-style: italic; color: var(--gold) !important; font-size: 1.2rem !important; }

/* Özellikler */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s, border-color .25s, background .25s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--gold-dim); background: var(--panel-2); }
.feature-icon { font-size: 1.9rem; margin-bottom: 14px; }
.feature h3 { margin-bottom: 10px; font-size: 1.2rem; color: var(--gold-bright); }
.feature p { color: var(--muted); font-size: .92rem; }

/* Güvenlik */
.security-grid { align-items: stretch; }
.security-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px;
}
.security-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.security-icon { font-size: 2rem; }
.security-card h3 small { display: block; font-size: .78rem; color: var(--muted); font-family: var(--sans); letter-spacing: .08em; }
.security-card ul { list-style: none; }
.security-card li {
  padding: 12px 0 12px 30px; position: relative;
  color: var(--muted); font-size: .95rem;
  border-bottom: 1px solid rgba(27, 67, 50, .08);
}
.security-card li:last-child { border-bottom: 0; }
.security-card li::before {
  content: "✓"; position: absolute; inset-inline-start: 4px; color: var(--green); font-weight: 700;
}

/* Etik */
.ethics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ethic {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.ethic-no {
  font-family: var(--serif); font-size: 2.4rem; color: rgba(27, 67, 50, .25);
  position: absolute; top: 16px; inset-inline-end: 22px; font-weight: 700;
}
.ethic h3 { font-size: 1.12rem; color: var(--gold-bright); margin-bottom: 10px; padding-inline-end: 48px; }
.ethic p { color: var(--muted); font-size: .9rem; }

/* Fiyatlandırma */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(27, 67, 50, .1), var(--panel) 45%);
  box-shadow: 0 14px 44px rgba(27, 67, 50, .12);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #ffffff; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 30px; text-transform: uppercase; white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; color: var(--gold-bright); margin-bottom: 6px; }
.price-tag { font-family: var(--serif); font-size: 1.7rem; color: var(--text); margin-bottom: 20px; }
.price-tag span { font-size: .95rem; color: var(--muted); }
.price-card ul { list-style: none; flex: 1; margin-bottom: 26px; }
.price-card li {
  padding: 9px 0 9px 24px; position: relative; color: var(--muted); font-size: .87rem;
}
.price-card li::before { content: "◆"; position: absolute; inset-inline-start: 2px; color: var(--gold-dim); font-size: .6rem; top: 14px; }

/* Yol haritası */
.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-inline-start: 34px; }
.timeline::before {
  content: ""; position: absolute; inset-inline-start: 8px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold), rgba(27, 67, 50, .1));
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; inset-inline-start: -33px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--gold);
  box-shadow: 0 0 14px rgba(27, 67, 50, .5);
}
.timeline-item h3 { color: var(--gold-bright); margin-bottom: 8px; font-size: 1.3rem; }
.timeline-item p { color: var(--muted); font-size: .95rem; }

/* Köken */
.origin-grid .logo-frame {
  background: #f4f2ee; border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.origin-grid img { border-radius: 8px; }

/* CTA bandı */
.cta-band {
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #14532d 0%, #1b6e4a 55%, #b8860b 130%);
  border-block: 1px solid rgba(0,0,0,.1);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 90% at 20% 0%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(ellipse 60% 90% at 85% 100%, rgba(212,175,55,.28), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 12px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 32px; }
.cta-band .btn-gold { background: #fff; color: #14532d; }
.cta-band .btn-gold:hover { background: #f5f0e2; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* Footer — koyu orman yeşili zemin, açık metinler */
.site-footer { padding: 70px 0 0; background: #16362a; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; }
.footer-logo-img { width: 44px; height: auto; display: block; }
.footer-brand .brand-text strong { color: #e8f0e9; }
.footer-brand .brand-text small { color: #9fb8a8; }
.footer-motto { color: #b9cfc0; font-family: var(--serif); font-style: italic; font-size: 1.02rem; max-width: 300px; }
.site-footer h4 {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: #8fd0ab; margin-bottom: 16px; font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-ic {
  width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(143,208,171,.22), rgba(143,208,171,.08));
  color: #b6e6c7; box-shadow: inset 0 0 0 1px rgba(143,208,171,.2);
}
.site-footer a, .site-footer p { display: flex; align-items: center; gap: 8px; color: #a9bfb1; font-size: .9rem; margin-bottom: 11px; transition: color .15s, transform .15s; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #ffffff; transform: translateX(3px); }
.fl-dot { width: 5px; height: 5px; border-radius: 50%; background: #8fd0ab; opacity: .55; flex-shrink: 0; transition: opacity .15s, transform .15s; }
.site-footer a:hover .fl-dot { opacity: 1; transform: scale(1.4); background: #c9a24b; }
.fl-info svg { color: #8fd0ab; flex-shrink: 0; }
.footer-gdpr { color: #8fd0ab !important; font-size: .8rem !important; }
.footer-col h4 { position: relative; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0; text-align: center;
}
.footer-bottom p { color: #8ea699; font-size: .82rem; }

/* Reveal animasyonu */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards-3, .feature-grid, .ethics-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255, 255, 255, .98); flex-direction: column; gap: 0;
    padding: 12px 5%; border-bottom: 1px solid var(--line); z-index: 99;
  }
  .main-nav.open a { padding: 14px 0; border-bottom: 1px solid rgba(27, 67, 50, .08); font-size: 1rem; }
}
@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .cards-3, .feature-grid, .ethics-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 70px 0; }
  .header-actions .btn { display: none; }
  .hero { padding-top: 110px; }
}

/* RTL (Arapça için hazır) */
[dir="rtl"] .timeline { padding-inline-start: 0; padding-inline-end: 34px; }
[dir="rtl"] .timeline::before { inset-inline-start: auto; inset-inline-end: 8px; }
[dir="rtl"] .timeline-dot { inset-inline-start: auto; inset-inline-end: -33px; }

/* ================= ŞOV EFEKTLERİ ================= */
/* Başlıkta akan ışıltı */
.hero-title {
  background-size: 200% auto;
  animation: titleShine 7s ease-in-out infinite;
}
@keyframes titleShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Süzülen yapraklar */
.hero-leaves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-leaves span {
  position: absolute; top: -6vh; font-size: 18px; opacity: 0;
  animation: leafFall linear infinite;
  filter: drop-shadow(0 2px 3px rgba(20,60,35,.15));
}
@keyframes leafFall {
  0%   { transform: translate(0, -6vh) rotate(0deg); opacity: 0; }
  8%   { opacity: .8; }
  50%  { transform: translate(6vw, 50vh) rotate(160deg); opacity: .75; }
  90%  { opacity: .5; }
  100% { transform: translate(-4vw, 108vh) rotate(340deg); opacity: 0; }
}

/* Canlı Bilgelik Odası demosu */
.hero-demo {
  position: relative; width: min(440px, 94%); margin: 6px auto 40px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
  border: 1px solid rgba(45,106,79,.18); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(20,60,35,.18);
  padding: 16px 18px 18px; text-align: left;
  animation: demoFloat 6s ease-in-out infinite;
}
@keyframes demoFloat { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-9px) rotate(.4deg); } }
.hd-glow { position: absolute; inset: -2px; border-radius: 24px; pointer-events: none; z-index: -1;
  background: linear-gradient(120deg, rgba(45,106,79,.4), rgba(212,175,55,.45), rgba(45,106,79,.4));
  background-size: 300% 300%; filter: blur(14px); opacity: .45; animation: glowMove 6s linear infinite; }
@keyframes glowMove { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.hd-head { display: flex; align-items: center; gap: 11px; padding-bottom: 12px; border-bottom: 1px solid rgba(45,106,79,.12); }
.hd-av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(135deg, #f4e8c8, #e6d3a0); border: 2px solid #d4af37; }
.hd-who strong { display: block; font-size: .95rem; color: #14532d; }
.hd-who small { color: #b8860b; font-size: .74rem; }
.hd-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; color: #1f7d52; }
.hd-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; animation: hkPulse 1.6s infinite; }
.hd-msgs { padding-top: 12px; display: flex; flex-direction: column; gap: 9px; min-height: 208px; }
.hd-msg { max-width: 84%; padding: 9px 14px; border-radius: 15px; font-size: .87rem; line-height: 1.45; opacity: 0; }
.hd-msg.user { align-self: flex-end; background: linear-gradient(135deg, #2f8d5b, #1f7d52); color: #fff; border-bottom-right-radius: 4px; }
.hd-msg.ai { align-self: flex-start; background: #f4efe2; color: #3a2f18; border-bottom-left-radius: 4px; }
.hd-typing { align-self: flex-start; background: #f4efe2; border-radius: 15px; border-bottom-left-radius: 4px;
  padding: 12px 16px; display: flex; gap: 5px; opacity: 0; }
.hd-typing span { width: 7px; height: 7px; border-radius: 50%; background: #b8a878; animation: hdDots 1.2s infinite; }
.hd-typing span:nth-child(2) { animation-delay: .18s; }
.hd-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes hdDots { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }
/* 14 sn'lik sonsuz sohbet döngüsü */
.hd-msg.m1 { animation: hdShow 14s infinite; animation-delay: 0s; }
.hd-msg.m2 { animation: hdShow2 14s infinite; }
.hd-msg.m3 { animation: hdShow3 14s infinite; }
.hd-msg.m4 { animation: hdShow4 14s infinite; }
.hd-typing.m5 { animation: hdType 14s infinite; }
@keyframes hdShow  { 0%,3% { opacity:0; transform:translateY(10px);} 6%,96% { opacity:1; transform:none;} 100% { opacity:0; } }
@keyframes hdShow2 { 0%,20% { opacity:0; transform:translateY(10px);} 24%,96% { opacity:1; transform:none;} 100% { opacity:0; } }
@keyframes hdShow3 { 0%,44% { opacity:0; transform:translateY(10px);} 48%,96% { opacity:1; transform:none;} 100% { opacity:0; } }
@keyframes hdShow4 { 0%,70% { opacity:0; transform:translateY(10px);} 74%,96% { opacity:1; transform:none;} 100% { opacity:0; } }
@keyframes hdType  { 0%,8% { opacity:0; } 10%,20% { opacity:1; } 24%,52% { opacity:0; } 56%,68% { opacity:1; } 72%,100% { opacity:0; } }

/* Canlı sayaçlar */
.hero-stats { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 26px auto 34px; }
.hs-item {
  min-width: 140px; padding: 16px 20px; border-radius: 18px; text-align: center;
  background: rgba(255,255,255,.66); border: 1px solid rgba(45,106,79,.14);
  backdrop-filter: blur(8px); box-shadow: 0 8px 24px rgba(20,60,35,.08);
  transition: transform .2s, box-shadow .2s;
}
.hs-item:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 34px rgba(20,60,35,.16); }
.hs-num { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700;
  background: linear-gradient(120deg, #14532d, #b8860b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hs-item span { font-size: .78rem; color: #5a6b5f; font-weight: 600; }

/* Kartlarda gradyan parlama çerçevesi */
.cards-3 > *, .feature-grid > *, .pricing-grid > *, .ethics-grid > * {
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.cards-3 > *:hover, .feature-grid > *:hover, .pricing-grid > *:hover, .ethics-grid > *:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(20,60,35,.16);
}
.cards-3 > *::after, .feature-grid > *::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, rgba(45,106,79,.55), rgba(212,175,55,.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s;
}
.cards-3 > *:hover::after, .feature-grid > *:hover::after { opacity: 1; }

/* Kademeli belirme */
.reveal { transition-delay: var(--rd, 0s); }

/* CTA bandında ışık süpürmesi */
.cta-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 220px; pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  left: -260px; animation: ctaSweep 4.5s ease-in-out infinite; transform: skewX(-14deg);
}
@keyframes ctaSweep { 0%, 55% { left: -260px; } 85%, 100% { left: 115%; } }

@media (max-width: 640px) {
  .hero-demo { margin-bottom: 30px; }
  .hs-item { min-width: 42%; padding: 13px 12px; }
  .hs-num { font-size: 1.6rem; }
}

/* ================= Güven rozetleri — modern SVG ikonlar ================= */
.ht-ic { width: 26px; height: 26px; border-radius: 9px; display: inline-grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(20,60,35,.18); }
.ht-ic.c1 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.ht-ic.c2 { background: linear-gradient(135deg, #38bdf8, #2563eb); }
.ht-ic.c3 { background: linear-gradient(135deg, #34d399, #059669); }
.ht-ic.c4 { background: #fff; border: 1px solid rgba(0,0,0,.08); }
.ht-item { gap: 10px; padding: 9px 16px 9px 10px; }
.ht-txt { line-height: 1; }

/* Demo avatar — monogram */
.hd-av { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: #fff; letter-spacing: .02em;
  background: linear-gradient(135deg, #2d6a4f, #14532d); border: 2px solid #d4af37; }

/* ================= Canlı üst menü ================= */
.main-nav { gap: 6px; }
.main-nav a { padding: 9px 13px; border-radius: 12px; font-weight: 600; color: #4a5a4f;
  transition: color .18s, background .18s, transform .18s, box-shadow .18s; }
.main-nav a:hover { color: #14532d; background: rgba(45,106,79,.09); transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(20,60,35,.1); }
.main-nav a:hover svg { transform: scale(1.15) rotate(-4deg); opacity: 1; }
.main-nav a:nth-child(1) svg { color: #8b5cf6; }
.main-nav a:nth-child(2) svg { color: #d4af37; }
.main-nav a:nth-child(3) svg { color: #059669; }
.main-nav a:nth-child(4) svg { color: #dc7633; }
.main-nav a:nth-child(5) svg { color: #2563eb; }
.main-nav a:nth-child(6) svg { color: #c0397a; }
/* Giriş butonu nabız parlaması */
.header-actions .btn-gold { position: relative; overflow: hidden; }
.header-actions .btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 46px; left: -70px; transform: skewX(-18deg);
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.4), transparent);
  animation: navBtnShine 3.6s ease-in-out infinite;
}
@keyframes navBtnShine { 0%, 55% { left: -70px; } 85%, 100% { left: 130%; } }

/* ================= Son rötuşlar ================= */
/* "Uygulamaya Giriş" tek satır */
.header-actions .btn-gold { white-space: nowrap; }

/* Güven rozetleri: 4'ü tek sırada */
@media (min-width: 721px) { .hero-trust { flex-wrap: nowrap; } .ht-item { white-space: nowrap; } }

/* Yeni özellik ikon renkleri */
.feature-icon.c7  { --ic1:#f0872b; --ic2:#d96b1e; --ish:rgba(217,107,30,.3); }
.feature-icon.c8  { --ic1:#22b8cf; --ic2:#0e8ba8; --ish:rgba(14,139,168,.3); }
.feature-icon.c9  { --ic1:#51cf66; --ic2:#2b9e46; --ish:rgba(43,158,70,.3); }
.feature-icon.c10 { --ic1:#d4af37; --ic2:#a8811a; --ish:rgba(168,129,26,.32); }

/* Sayaç kartlarına ekstra efekt: gradyan çerçeve + ışık süpürmesi */
.hs-item { position: relative; overflow: hidden; }
.hs-item::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, rgba(45,106,79,.5), rgba(212,175,55,.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5;
}
.hs-item::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; left: -90px; transform: skewX(-16deg); pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  animation: hsSweep 5.5s ease-in-out infinite;
}
.hs-item:nth-child(2)::after { animation-delay: .7s; }
.hs-item:nth-child(3)::after { animation-delay: 1.4s; }
.hs-item:nth-child(4)::after { animation-delay: 2.1s; }
@keyframes hsSweep { 0%, 60% { left: -90px; } 90%, 100% { left: 130%; } }

/* ================= Etik Anayasa — canlı renkli tablo görünümü ================= */
.ethics-grid { gap: 20px; }
.ethic { padding: 0; overflow: hidden; border: 1px solid rgba(27,59,47,.1); }
.ethic h3 {
  display: flex; align-items: center; gap: 10px; margin: 0; padding: 15px 20px; padding-inline-end: 64px;
  color: #fff; font-size: 1.05rem;
  background: linear-gradient(120deg, var(--ec1, #2d6a4f), var(--ec2, #14532d));
}
.ethic p { padding: 18px 20px 22px; margin: 0; }
.ethic-no {
  top: 10px; inset-inline-end: 14px; font-size: 1.5rem; color: #fff; opacity: .95;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(4px);
}
.ethic:nth-child(1) { --ec1:#2d9d6a; --ec2:#14532d; }
.ethic:nth-child(2) { --ec1:#8b5cf6; --ec2:#5b21b6; }
.ethic:nth-child(3) { --ec1:#f08c3a; --ec2:#c2591a; }
.ethic:nth-child(4) { --ec1:#38bdf8; --ec2:#1d4ed8; }
.ethic:nth-child(5) { --ec1:#ec6a9f; --ec2:#b62d6e; }
.ethic:nth-child(6) { --ec1:#d4af37; --ec2:#8f6a10; }
.ethic::after { display: none; }
.ethic:hover { box-shadow: 0 20px 44px rgba(20,60,35,.18); }

/* ================= Üst bar çakışma düzeltmesi ================= */
.brand { flex-shrink: 0; }
.brand-text strong { white-space: nowrap; }
.brand-text small { white-space: nowrap; }
@media (max-width: 1250px) {
  .brand-text small { display: none; }         /* "YAŞAYAN ANILAR" alt yazısı dar ekranda gizlenir */
  .main-nav { gap: 2px; }
  .main-nav a { padding: 8px 9px; font-size: .84rem; }
  .header-inner { gap: 14px; }
}
@media (max-width: 1120px) and (min-width: 1021px) {
  .main-nav a svg { display: none; }           /* çok dar masaüstünde ikonlar gizlenir, yazılar sığar */
}

/* Yeni özellik ikon renkleri */
.feature-icon.c11 { --ic1:#5b6472; --ic2:#39404d; --ish:rgba(57,64,77,.3); }
.feature-icon.c12 { --ic1:#e0393b; --ic2:#b02426; --ish:rgba(176,36,38,.3); }

/* ================= Nene & Dede iletişim sahnesi ================= */
.comm-scene {
  position: relative; margin-top: 22px; padding: 26px 22px 58px;
  background: linear-gradient(160deg, #ffffff, #f4f9f2);
  border: 1px solid rgba(45,106,79,.14); border-radius: 22px;
  box-shadow: 0 16px 40px rgba(20,60,35,.12);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  overflow: hidden;
}
.cs-person { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; width: 108px; }
.cs-av {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; font-size: 2.3rem;
  background: linear-gradient(135deg, #f8f0d8, #efe0b4); border: 3px solid #d4af37;
  animation: csFloat 4.5s ease-in-out infinite;
}
.cs-person.video .cs-av { animation-delay: -2.2s; border-color: #2d6a4f; background: linear-gradient(135deg, #e7f3ea, #d3e9dc); }
@keyframes csFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.cs-person b { font-size: .88rem; color: #14532d; }
/* Konuşma halkası (nene konuşuyor) */
.cs-ring { position: absolute; top: -6px; width: 86px; height: 86px; border-radius: 50%; pointer-events: none;
  animation: csTalk 2s ease-out infinite; border: 2px solid rgba(212,175,55,.65); }
@keyframes csTalk { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
/* Ses dalgası çubukları */
.cs-wave { display: flex; gap: 3px; align-items: flex-end; height: 18px; }
.cs-wave span { width: 4px; border-radius: 3px; background: linear-gradient(180deg, #d4af37, #b8860b); animation: csWave 1s ease-in-out infinite; }
.cs-wave span:nth-child(1) { height: 7px; animation-delay: 0s; }
.cs-wave span:nth-child(2) { height: 14px; animation-delay: .15s; }
.cs-wave span:nth-child(3) { height: 18px; animation-delay: .3s; }
.cs-wave span:nth-child(4) { height: 12px; animation-delay: .45s; }
.cs-wave span:nth-child(5) { height: 8px; animation-delay: .6s; }
@keyframes csWave { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1.15); } }
/* Görüntülü arama çerçevesi (dede) */
.cs-corners { position: absolute; top: -10px; width: 96px; height: 96px; pointer-events: none; }
.cs-corners::before, .cs-corners::after {
  content: ""; position: absolute; width: 20px; height: 20px; border: 3px solid #2d6a4f; border-radius: 4px;
}
.cs-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.cs-corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.cs-rec { display: inline-flex; align-items: center; gap: 5px; font-size: .64rem; font-weight: 800; letter-spacing: .08em;
  color: #c0392b; background: rgba(224,57,59,.1); border: 1px solid rgba(224,57,59,.3); padding: 3px 9px; border-radius: 12px; }
.cs-dot { width: 7px; height: 7px; border-radius: 50%; background: #e0393b; animation: csBlink 1.1s infinite; }
@keyframes csBlink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
/* İkisi arasındaki hat + akıp giden ikonlar */
.cs-link { position: relative; flex: 1; height: 74px; }
.cs-line { position: absolute; top: 36px; left: 4px; right: 4px; height: 3px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, rgba(45,106,79,.4) 0 10px, transparent 10px 18px); }
.cs-flow { position: absolute; top: 22px; font-size: 1.15rem; opacity: 0;
  background: #fff; border-radius: 50%; padding: 4px; box-shadow: 0 4px 12px rgba(20,60,35,.18);
  animation: csFlow 6s linear infinite; }
.cs-flow.f2 { animation-delay: 2s; }
.cs-flow.f3 { animation-delay: 4s; }
@keyframes csFlow {
  0% { left: 0%; opacity: 0; transform: scale(.6); }
  8% { opacity: 1; transform: scale(1); }
  42% { opacity: 1; }
  50% { left: 88%; opacity: 0; transform: scale(.6); }
  100% { left: 88%; opacity: 0; }
}
/* Sohbet balonları (yazılı) — dönüşümlü belirir */
.cs-bubble { position: absolute; bottom: 12px; max-width: 46%; font-size: .78rem; line-height: 1.4;
  padding: 8px 13px; border-radius: 13px; opacity: 0; box-shadow: 0 5px 14px rgba(20,60,35,.12); }
.cs-bubble.b1 { left: 18px; background: #fff; border: 1px solid #ecd9a8; border-bottom-left-radius: 4px; color: #6b5a2e;
  animation: csBub1 9s ease-in-out infinite; }
.cs-bubble.b2 { right: 18px; background: linear-gradient(135deg, #2f8d5b, #1f7d52); color: #fff; border-bottom-right-radius: 4px;
  animation: csBub2 9s ease-in-out infinite; }
@keyframes csBub1 { 0%,8% { opacity:0; transform: translateY(8px);} 14%,46% { opacity:1; transform:none;} 52%,100% { opacity:0; } }
@keyframes csBub2 { 0%,48% { opacity:0; transform: translateY(8px);} 56%,90% { opacity:1; transform:none;} 96%,100% { opacity:0; } }
/* Yazıyor… üç nokta */
.cs-typing { position: absolute; bottom: 16px; right: 30px; display: flex; gap: 4px;
  background: #eef4ef; border-radius: 12px; padding: 8px 12px; opacity: 0; animation: csTypeShow 9s infinite; }
.cs-typing span { width: 6px; height: 6px; border-radius: 50%; background: #7ea88e; animation: csWave 1s infinite; }
.cs-typing span:nth-child(2) { animation-delay: .15s; }
.cs-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes csTypeShow { 0%,30% { opacity: 0; } 36%,50% { opacity: 1; } 54%,100% { opacity: 0; } }
@media (max-width: 480px) { .cs-bubble { max-width: 44%; font-size: .7rem; } .cs-av { width: 62px; height: 62px; font-size: 1.9rem; } }

/* ================= Mnemosyne sözü — belirgin ================= */
.hero-quote { position: relative; max-width: 640px; margin: 0 auto; padding: 10px 30px; }
.hero-quote span {
  display: block; font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.3;
  background: linear-gradient(110deg, #14532d 15%, #b8860b 45%, #d4af37 55%, #14532d 85%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: quoteShine 6.5s ease-in-out infinite;
}
@keyframes quoteShine { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-quote::before, .hero-quote::after {
  font-family: var(--serif); font-size: 4.2rem; line-height: 1; color: rgba(212,175,55,.45);
  position: absolute; pointer-events: none;
}
.hero-quote::before { content: "“"; top: -18px; left: -8px; }
.hero-quote::after { content: "”"; bottom: 8px; right: -8px; }
.hero-quote cite {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: .92rem; margin-top: 14px; letter-spacing: .22em; color: #b8860b; font-weight: 600;
}
.hero-quote cite::before, .hero-quote cite::after {
  content: ""; height: 1.5px; width: 46px;
  background: linear-gradient(90deg, transparent, #d4af37); 
}
.hero-quote cite::after { background: linear-gradient(90deg, #d4af37, transparent); }

/* ================= Etik kartları — ikon rozetleri + efekt ================= */
.ethic-no.ic { font-size: 0; }
.ethic-no.ic svg { display: block; }
.ethic-no {
  animation: ethPulse 3s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.3,1.6,.5,1), background .25s;
}
.ethic:nth-child(2) .ethic-no { animation-delay: .5s; }
.ethic:nth-child(3) .ethic-no { animation-delay: 1s; }
.ethic:nth-child(4) .ethic-no { animation-delay: 1.5s; }
.ethic:nth-child(5) .ethic-no { animation-delay: 2s; }
.ethic:nth-child(6) .ethic-no { animation-delay: 2.5s; }
@keyframes ethPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.45); }
  50% { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}
.ethic:hover .ethic-no { transform: rotate(-10deg) scale(1.18); background: rgba(255,255,255,.3); }
/* Başlık bandından geçen ışık süpürmesi */
.ethic h3 { position: relative; overflow: hidden; }
.ethic h3::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 46px; left: -70px; transform: skewX(-18deg);
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
}
.ethic:hover h3::after { animation: ethShine .8s ease; }
@keyframes ethShine { from { left: -70px; } to { left: 120%; } }

/* ================= Mnemosyne'den Mnemos'a — geçiş animasyonu ================= */
/* Başlık: bronzdan yeşile akan gradyan (antik → modern) */
#koken h2 {
  background: linear-gradient(100deg, #8a6a2f 0%, #b8860b 30%, #2d6a4f 70%, #14532d 100%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: originShift 7s ease-in-out infinite;
}
@keyframes originShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.origin-flow {
  display: flex; align-items: center; gap: 14px; margin-top: 30px;
  background: linear-gradient(120deg, #fbf6e8 0%, #f0f7f0 100%);
  border: 1px solid rgba(45,106,79,.14); border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(20,60,35,.08);
}
.of-node { display: flex; flex-direction: column; align-items: center; gap: 2px; width: 104px; flex-shrink: 0; }
.of-node b { font-family: var(--serif); font-size: .95rem; color: #14532d; }
.of-node small { font-size: .68rem; color: #8a7a52; font-weight: 700; letter-spacing: .04em; }
.of-ic {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 4px;
}
.of-node.past .of-ic { background: linear-gradient(135deg, #f2e6c4, #e0c98e); border: 2px solid #b8860b;
  animation: ofPulseGold 3s ease-in-out infinite; }
.of-node.future .of-ic { background: linear-gradient(135deg, #dff0e4, #bfe2cc); border: 2px solid #2d6a4f;
  animation: ofPulseGreen 3s ease-in-out infinite 1.5s; }
@keyframes ofPulseGold { 0%,100% { box-shadow: 0 0 0 0 rgba(184,134,11,.4); } 50% { box-shadow: 0 0 0 10px rgba(184,134,11,0); } }
@keyframes ofPulseGreen { 0%,100% { box-shadow: 0 0 0 0 rgba(45,106,79,.4); } 50% { box-shadow: 0 0 0 10px rgba(45,106,79,0); } }
/* Ara hat: bronz → yeşil */
.of-track { position: relative; flex: 1; height: 52px; min-width: 90px; }
.of-line { position: absolute; top: 25px; left: 0; right: 0; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #b8860b, #2d6a4f);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 10px, transparent 10px 17px); }
/* Akıp giden hafıza parçacıkları: altından yeşile dönüşür */
.of-p { position: absolute; top: 21px; width: 11px; height: 11px; border-radius: 50%;
  animation: ofTravel 4.2s linear infinite; opacity: 0; box-shadow: 0 0 10px rgba(212,175,55,.6); }
.of-p.p2 { animation-delay: 1.05s; }
.of-p.p3 { animation-delay: 2.1s; }
.of-p.p4 { animation-delay: 3.15s; }
@keyframes ofTravel {
  0%   { left: 0%;  background: #d4af37; opacity: 0; transform: scale(.6); }
  10%  { opacity: 1; transform: scale(1); }
  50%  { background: #7fb069; }
  88%  { opacity: 1; transform: scale(1.15); }
  100% { left: 94%; background: #2d6a4f; opacity: 0; transform: scale(.6); }
}
/* Logo çerçevesi: süzülme + dönen ışıltı aurası */
.logo-frame { position: relative; animation: csFloat 6s ease-in-out infinite; }
.logo-frame::before {
  content: ""; position: absolute; inset: -14px; border-radius: 28px; z-index: -1; filter: blur(18px); opacity: .5;
  background: conic-gradient(from 0deg, rgba(45,106,79,.5), rgba(212,175,55,.55), rgba(56,189,248,.35), rgba(45,106,79,.5));
  animation: logoAura 9s linear infinite;
}
@keyframes logoAura { to { transform: rotate(360deg); } }
.logo-frame img { transition: transform .35s ease; }
.logo-frame:hover img { transform: scale(1.04) rotate(-1.2deg); }
@media (max-width: 560px) { .of-node { width: 84px; } .of-ic { width: 44px; height: 44px; font-size: 1.2rem; } }

/* ================= Hibrit mimari — canlı senkron akışı ================= */
.security-grid { position: relative; }
.sec-sync { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 120px; height: 60px; z-index: 3; pointer-events: none; }
.ss-lock { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 1.5rem;
  background: #fff; border-radius: 50%; padding: 8px; box-shadow: 0 8px 22px rgba(20,60,35,.2);
  animation: ofPulseGreen 3s ease-in-out infinite; }
.ss-dot { position: absolute; top: 26px; width: 9px; height: 9px; border-radius: 50%;
  animation: ssGo 3.6s linear infinite; opacity: 0; }
.ss-dot.d2 { animation-delay: 1.2s; }
.ss-dot.d3 { animation-delay: 2.4s; }
@keyframes ssGo {
  0%   { left: -6px; background: #5aa0ff; opacity: 0; }
  12%  { opacity: 1; }
  46%  { left: 46%; background: #2d6a4f; }
  50%  { opacity: 0; }
  54%  { left: 54%; opacity: 0; background: #d4af37; }
  62%  { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: calc(100% - 4px); background: #b8860b; opacity: 0; }
}
.security-icon { animation: csFloat 4.8s ease-in-out infinite; }
.security-card:nth-child(3) .security-icon { animation-delay: -2.4s; }
@media (max-width: 720px) { .sec-sync { display: none; } }

/* ================= Rehber sayfası (rehber.html) ================= */
.guide-hero { min-height: auto; padding: 130px 0 40px; }
.gd-back { font-size: .86rem; font-weight: 600; color: #2f6a4f; white-space: nowrap; padding: 8px 12px; border-radius: 10px; }
.gd-back:hover { background: rgba(45,106,79,.09); }
.gt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1020px) { .gt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gt-grid { grid-template-columns: 1fr; } }
.gt-card { background: #fff; border: 1px solid rgba(27,59,47,.1); border-radius: 20px; padding: 20px 22px 24px;
  box-shadow: 0 8px 24px rgba(20,60,35,.07); transition: transform .25s, box-shadow .25s; position: relative; }
.gt-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(20,60,35,.16); }
.gt-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, rgba(45,106,79,.55), rgba(212,175,55,.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .25s; }
.gt-card:hover::after { opacity: 1; }
.gt-card h3 { font-size: 1.08rem; color: #14532d; margin: 14px 0 8px; }
.gt-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.gt-viz { height: 110px; border-radius: 14px; display: flex; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(140deg, #f4f9f2, #fbf6e8); border: 1px solid rgba(27,59,47,.08); overflow: hidden; position: relative; }

/* Mini sahneler */
.gt-big { font-size: 2.3rem; position: relative; display: inline-grid; place-items: center; animation: csFloat 4s ease-in-out infinite; }
.gt-ring { position: absolute; inset: -10px; border: 2px solid rgba(45,106,79,.55); border-radius: 50%; animation: csTalk 2s ease-out infinite; }
.gt-ring.r2 { animation-delay: 1s; }
.gt-ring.gold { border-color: rgba(212,175,55,.7); }
.gt-ring.green { border-color: rgba(46,204,113,.6); }
/* agac */
.gt-tree { position: relative; width: 150px; height: 84px; }
.gtn { position: absolute; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem;
  background: #fff; border: 2px solid #d4af37; box-shadow: 0 4px 10px rgba(20,60,35,.12); animation: gcIn2 .6s both, csFloat 4.5s 1s ease-in-out infinite; }
.gtn.a { left: 12px; top: 0; }
.gtn.b { right: 12px; top: 0; animation-delay: .15s, 1.4s; }
.gtn.c { left: 56px; bottom: 0; border-color: #2d6a4f; animation-delay: .3s, 1.8s; }
@keyframes gcIn2 { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
.gt-tline { position: absolute; left: 74px; top: 40px; width: 2.5px; height: 22px; background: linear-gradient(180deg, #d4af37, #2d6a4f); }
/* sohbet */
.gt-chat { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; width: 88%; }
.gt-bub { font-size: .74rem; padding: 6px 11px; border-radius: 11px; box-shadow: 0 3px 8px rgba(20,60,35,.1); }
.gt-bub.u { align-self: flex-end; background: linear-gradient(135deg, #2f8d5b, #1f7d52); color: #fff; border-bottom-right-radius: 3px; animation: mdUp2 .5s .2s both; }
.gt-bub.a { background: #fff; color: #4a3f28; border: 1px solid #ece0c2; border-bottom-left-radius: 3px; animation: mdUp2 .5s .9s both; }
@keyframes mdUp2 { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
/* arama dalgalari */
.gt-big.phone { animation: gtShake 2.2s ease-in-out infinite; }
@keyframes gtShake { 0%, 12%, 100% { transform: rotate(0); } 2%,6%,10% { transform: rotate(-12deg); } 4%,8% { transform: rotate(12deg); } }
.gt-callwave { width: 26px; height: 26px; border: 3px solid rgba(46,204,113,.6); border-left-color: transparent; border-bottom-color: transparent;
  border-radius: 50%; transform: rotate(45deg); animation: csBlink 1.6s infinite; }
.gt-callwave.w2 { width: 40px; height: 40px; animation-delay: .4s; }
/* ani -> kasa ucusu */
.gt-fly { font-size: 1.5rem; animation: gtFly 3s ease-in-out infinite; }
@keyframes gtFly { 0% { transform: translate(-26px, -8px) scale(.9); opacity: 0; } 20% { opacity: 1; } 60% { transform: translate(10px, 4px) scale(.7); opacity: 1; } 75%,100% { transform: translate(18px, 8px) scale(.4); opacity: 0; } }
/* zaman tuneli */
.gt-timeline { position: relative; width: 80%; height: 30px; }
.gt-timeline i { position: absolute; top: 14px; left: 0; right: 0; height: 3px; border-radius: 2px; background: linear-gradient(90deg, #d4af37, #2d6a4f); }
.gtd { position: absolute; top: 8px; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 3px solid #cbb26a; animation: gtLight 4s infinite; }
.gtd.t1 { left: 4%; } .gtd.t2 { left: 32%; animation-delay: 1s; } .gtd.t3 { left: 60%; animation-delay: 2s; } .gtd.t4 { left: 88%; animation-delay: 3s; }
@keyframes gtLight { 0%,20% { border-color: #2d6a4f; box-shadow: 0 0 12px rgba(45,106,79,.7); transform: scale(1.25); } 30%,100% { border-color: #cbb26a; box-shadow: none; transform: scale(1); } }
/* kitap parlamasi */
.gt-big.book { overflow: visible; }
.gt-shine { position: absolute; inset: -6px; border-radius: 12px;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.7) 50%, transparent 70%);
  background-size: 220% 100%; animation: gtBookShine 3s ease-in-out infinite; }
@keyframes gtBookShine { 0%,40% { background-position: 130% 0; } 80%,100% { background-position: -30% 0; } }
/* QR tarama */
.gt-qr { position: relative; color: #14532d; display: inline-grid; place-items: center; padding: 8px; background: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(20,60,35,.12); overflow: hidden; }
.gt-scan { position: absolute; left: 4px; right: 4px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, transparent, #2ecc71, transparent);
  animation: gtScan 2.2s ease-in-out infinite; }
@keyframes gtScan { 0%,100% { top: 8%; } 50% { top: 88%; } }
/* ses klonu dalgalari */
.cs-wave.big span { width: 5px; }
.cs-wave.big { height: 26px; }
.cs-wave.green span { background: linear-gradient(180deg, #51cf66, #2b9e46); }
.gt-arrow { font-size: 1.4rem; color: #b8860b; animation: csBlink 1.5s infinite; }
/* olgunluk gostergesi */
.gt-gauge { width: 70%; height: 12px; border-radius: 8px; background: #ece3cf; overflow: hidden; }
.gt-gauge i { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, #2f8d5b, #d4af37); animation: gtFill 4s ease-in-out infinite; }
@keyframes gtFill { 0% { width: 8%; } 55%,70% { width: 92%; } 100% { width: 8%; } }
.gt-seed { position: absolute; bottom: 10px; font-size: .8rem; letter-spacing: .06em; }
/* can */
.gt-big.bell { animation: gtSwing 2.6s ease-in-out infinite; transform-origin: top center; }
@keyframes gtSwing { 0%, 30%, 100% { transform: rotate(0); } 6% { transform: rotate(16deg); } 12% { transform: rotate(-13deg); } 18% { transform: rotate(8deg); } 24% { transform: rotate(-5deg); } }
.gt-badge { position: absolute; top: -6px; right: -10px; min-width: 20px; height: 20px; border-radius: 10px;
  background: #e0393b; color: #fff; font-size: .68rem; font-weight: 800; display: grid; place-items: center; border: 2px solid #fff;
  animation: hkPulse 1.8s infinite; }
.gt-chain { font-size: 1.3rem; animation: csFloat 4s ease-in-out infinite 1s; }
/* rehber CTA */
.gt-cta { text-align: center; margin-top: 50px; }
.gt-cta h2 { margin-bottom: 20px; }

/* ================= Etik kartları — her ikon kendi hikâyesini anlatır ================= */
/* 01 Anahtar: kilidi açar gibi sallanır */
.ethic:nth-child(1) .ethic-no svg { animation: ethKey 3.2s ease-in-out infinite; transform-origin: 70% 30%; }
@keyframes ethKey { 0%, 55%, 100% { transform: rotate(0); } 65% { transform: rotate(-24deg); } 75% { transform: rotate(14deg); } 85% { transform: rotate(-8deg); } }
/* 02 Kalp: atar */
.ethic:nth-child(2) .ethic-no svg { animation: ethHeart 1.9s ease-in-out infinite; transform-origin: center; }
@keyframes ethHeart { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.22); } 24% { transform: scale(1); } 36% { transform: scale(1.15); } 48% { transform: scale(1); } }
/* 03 Yasak etiketi: reddeder gibi iki yana sallanır */
.ethic:nth-child(3) .ethic-no svg { animation: ethNo 3.4s ease-in-out infinite; transform-origin: center; }
@keyframes ethNo { 0%, 60%, 100% { transform: translateX(0); } 68% { transform: translateX(-4px); } 76% { transform: translateX(4px); } 84% { transform: translateX(-3px); } 92% { transform: translateX(0); } }
/* 04 Sonsuzluk: nefes alır, hiç durmaz */
.ethic:nth-child(4) .ethic-no svg { animation: ethInf 3s ease-in-out infinite; transform-origin: center; }
@keyframes ethInf { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.18); opacity: .75; } }
/* 05 Terazi: dengede salınır */
.ethic:nth-child(5) .ethic-no svg { animation: ethScale 4s ease-in-out infinite; transform-origin: 50% 15%; }
@keyframes ethScale { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(7deg); } 75% { transform: rotate(-7deg); } }
/* 06 Göz: arada kırpar */
.ethic:nth-child(6) .ethic-no svg { animation: ethEye 4.5s ease-in-out infinite; transform-origin: center; }
@keyframes ethEye { 0%, 40%, 48%, 100% { transform: scaleY(1); } 44% { transform: scaleY(.12); } 78% { transform: scaleY(1); } 82% { transform: scaleY(.12); } 86% { transform: scaleY(1); } }

/* Etik ikonları — belirgin: beyaz kutu içinde büyük renkli ikon */
.ethic-no {
  background: #fff !important; border: none !important;
  width: 46px; height: 46px; border-radius: 13px; top: 8px;
  color: var(--ec2, #14532d);
  box-shadow: 0 5px 14px rgba(0,0,0,.22);
}
.ethic-no.ic svg { width: 26px; height: 26px; stroke-width: 2.1; }
@keyframes ethPulse {
  0%, 100% { box-shadow: 0 5px 14px rgba(0,0,0,.22), 0 0 0 0 rgba(255,255,255,.55); }
  50% { box-shadow: 0 5px 14px rgba(0,0,0,.22), 0 0 0 8px rgba(255,255,255,0); }
}

/* Rehber/landing üst bar — mobil sıkıştırma */
@media (max-width: 640px) {
  .header-actions { gap: 8px; }
  #gCta { display: inline-flex !important; padding: 9px 12px; font-size: .78rem; white-space: nowrap; }
  #langCurrent { display: none; }
  .gd-back { font-size: 0; padding: 8px 10px; }
  .gd-back::before { content: "←"; font-size: 1.1rem; line-height: 1; }
}
@media (max-width: 640px) {
  .site-header .brand-text { display: none; }   /* mobilde yalnız logo */
  #gCta { padding: 8px 10px; font-size: .74rem; }
}

/* İkon rozeti başlık bandının ÜSTÜNDE kalsın (h3 position:relative onu örtüyordu) */
.ethic-no { z-index: 6; }

/* ================= LOGO ŞOVU — elde telefon → özellik turu → logo patlaması ================= */
.logo-show { position: relative; min-height: 470px; display: grid; place-items: center;
  padding: 30px 20px; overflow: hidden; background: #fff; border-radius: 24px; }
/* El + telefon düzeneği hafifçe salınır */
.ls-rig { position: relative; animation: lsBob 5s ease-in-out infinite, lsRigOut 18s ease-in-out infinite; }
@keyframes lsBob { 0%,100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-10px) rotate(1.2deg); } }
/* Tur bitince telefon geri çekilip solar, logo sahneyi alır */
@keyframes lsRigOut {
  0%, 68% { opacity: 1; scale: 1; filter: none; }
  76%, 92% { opacity: 0; scale: .8; filter: blur(4px); }
  97%, 100% { opacity: 1; scale: 1; filter: none; }
}
.ls-hand { position: absolute; bottom: -46px; left: 50%; transform: translateX(-58%) rotate(8deg);
  font-size: 5.2rem; z-index: 0; filter: saturate(.9); }
.ls-phone { position: relative; z-index: 1; width: 210px; height: 420px; border-radius: 34px;
  background: #0d1512; padding: 12px 10px; box-shadow: 0 24px 60px rgba(10,25,15,.35), inset 0 0 0 2.5px #2c3a32; }
.ls-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 74px; height: 18px;
  background: #0d1512; border-radius: 0 0 12px 12px; z-index: 3; }
.ls-screen { position: relative; width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
  background: linear-gradient(170deg, #eef6ef, #f7f3e6); }
/* Ekran sahneleri — sırayla oynar (18s döngü) */
.ls-scene { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; padding: 20px 14px; opacity: 0; }
.ls-scene b { font-size: .82rem; color: #14532d; background: #fff; padding: 6px 13px; border-radius: 16px;
  box-shadow: 0 3px 9px rgba(20,60,35,.12); white-space: nowrap; }
.ls-scene.s1 { animation: lsS1 18s ease-in-out infinite; }
.ls-scene.s2 { animation: lsS2 18s ease-in-out infinite; }
.ls-scene.s3 { animation: lsS3 18s ease-in-out infinite; }
.ls-scene.s4 { animation: lsS4 18s ease-in-out infinite; }
@keyframes lsS1 { 0%,1% { opacity:0; transform: translateX(24px);} 4%,16% { opacity:1; transform:none;} 19%,100% { opacity:0; transform: translateX(-24px);} }
@keyframes lsS2 { 0%,19% { opacity:0; transform: translateX(24px);} 22%,34% { opacity:1; transform:none;} 37%,100% { opacity:0; transform: translateX(-24px);} }
@keyframes lsS3 { 0%,37% { opacity:0; transform: translateX(24px);} 40%,52% { opacity:1; transform:none;} 55%,100% { opacity:0; transform: translateX(-24px);} }
@keyframes lsS4 { 0%,55% { opacity:0; transform: translateX(24px);} 58%,66% { opacity:1; transform:none;} 69%,100% { opacity:0; transform: translateX(-24px);} }
/* Sahne içi mini görseller */
.ls-tree { position: relative; width: 130px; height: 92px; }
.ls-tree span { position: absolute; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.15rem; background: #fff; border: 2px solid #d4af37; box-shadow: 0 4px 10px rgba(20,60,35,.14); }
.ls-tree span:nth-child(1) { left: 6px; top: 0; }
.ls-tree span:nth-child(2) { right: 6px; top: 0; }
.ls-tree span.k { left: 46px; bottom: 0; border-color: #2d6a4f; }
.ls-tree i { position: absolute; left: 64px; top: 40px; width: 2.5px; height: 20px;
  background: linear-gradient(180deg, #d4af37, #2d6a4f); }
.ls-bub { font-size: .74rem; padding: 7px 12px; border-radius: 12px; box-shadow: 0 3px 8px rgba(20,60,35,.12); }
.ls-bub.u { align-self: flex-end; margin-right: 6px; background: linear-gradient(135deg, #2f8d5b, #1f7d52); color: #fff; border-bottom-right-radius: 3px; }
.ls-bub.a { align-self: flex-start; margin-left: 6px; background: #fff; color: #4a3f28; border: 1px solid #ece0c2; border-bottom-left-radius: 3px; }
.ls-callav { position: relative; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: #fff; background: linear-gradient(135deg, #2d6a4f, #14532d);
  border: 3px solid #d4af37; }
.ls-callring { position: absolute; inset: -9px; border: 2px solid rgba(46,204,113,.6); border-radius: 50%;
  animation: csTalk 1.6s ease-out infinite; }
.ls-tl { position: relative; width: 130px; height: 26px; }
.ls-tl i { position: absolute; top: 11px; left: 0; right: 0; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #d4af37, #2d6a4f); }
.ls-tl u { position: absolute; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: #fff;
  border: 3px solid #cbb26a; animation: gtLight 3s infinite; }
.ls-tl u.d1 { left: 6%; } .ls-tl u.d2 { left: 44%; animation-delay: 1s; } .ls-tl u.d3 { left: 82%; animation-delay: 2s; }
/* BÜYÜK FİNAL: logo ekrandan doğar, tüm kartı kaplar */
.ls-logo-big { position: absolute; inset: 0; margin: auto; width: min(86%, 430px); z-index: 4;
  opacity: 0; transform: scale(.12); pointer-events: none;
  animation: lsLogo 18s cubic-bezier(.22,.9,.3,1) infinite;
  filter: drop-shadow(0 18px 44px rgba(20,60,35,.3));
}
@keyframes lsLogo {
  0%, 66%  { opacity: 0; transform: scale(.12); }
  70%      { opacity: 1; }
  76%, 90% { opacity: 1; transform: scale(1); }
  93%      { opacity: 1; transform: scale(1.04); }
  97%, 100%{ opacity: 0; transform: scale(.12); }
}
/* Final anında kart arkası ışısın */
.logo-show::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3; opacity: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,.28), rgba(45,106,79,.12) 45%, transparent 70%);
  animation: lsGlow 18s ease-in-out infinite; }
@keyframes lsGlow { 0%,66% { opacity: 0; } 74%,90% { opacity: 1; } 97%,100% { opacity: 0; } }
/* eski hover kuralı bu sahneye dokunmasın */
.logo-show:hover img { transform: none; }
.logo-show .ls-logo-big:hover { transform: none; }
@media (max-width: 560px) {
  .logo-show { min-height: 420px; }
  .ls-phone { width: 180px; height: 360px; }
  .ls-hand { font-size: 4.2rem; bottom: -38px; }
}
