/* ============================================================
   VeriKale — çok sayfalı site (Versiyon A · Anıtsal Kale)
   ============================================================ */
:root {
  --bg: #0a1c19; --bg-2: #0c211d; --bg-foot: #08120f;
  --ink: #eef3ef; --muted: #9bb3ac; --muted-2: #cdd8d3; --faint: #5d716b;
  --gold: #d9b478; --teal: #1fb0a3; --teal-2: #3fc7ba; --dark-ink: #04110f;
  --gold-20: rgba(217,180,120,.2); --gold-16: rgba(217,180,120,.16);
  --star: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='44'%20height='44'%3E%3Cg%20fill='none'%20stroke='%23d9b478'%20stroke-opacity='0.07'%3E%3Crect%20x='10'%20y='10'%20width='24'%20height='24'/%3E%3Crect%20x='10'%20y='10'%20width='24'%20height='24'%20transform='rotate(45%2022%2022)'/%3E%3C/g%3E%3C/svg%3E");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: Manrope, system-ui, sans-serif; min-height: 100vh; overflow-x: hidden; }
::selection { background: var(--teal); color: var(--dark-ink); }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(0); } to { transform: rotate(-360deg); } }
a { color: inherit; }
img, svg { display: block; }
.page { position: relative; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.wrap-1100 { max-width: 1100px; margin: 0 auto; }
.wrap-1040 { max-width: 1040px; margin: 0 auto; }
.wrap-760 { max-width: 760px; margin: 0 auto; }
.wrap-680 { max-width: 680px; margin: 0 auto; }
.diamond { display: inline-block; background: var(--teal); transform: rotate(45deg); flex: none; }

.brand-mark { position: relative; display: inline-block; flex: none; line-height: 0; }
.brand-mark svg { display: block; width: 100%; height: 100%; }

/* ---------------- HEADER ---------------- */
.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 0 36px; min-height: 70px; background: rgba(9,24,21,.97); border-bottom: 1px solid var(--gold-16); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .brand-mark { width: 26px; height: 26px; }
.brand-name { font-family: "Playfair Display", serif; font-size: 19px; letter-spacing: .34em; color: var(--gold); font-weight: 600; }

.nav { display: flex; gap: 26px; align-items: center; }
.nav-item { position: relative; }
.nav-link { color: var(--muted-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav-link:hover { color: var(--gold); }
.caret { font-size: 9px; opacity: .7; }

.dropdown { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 330px; background: var(--bg-2); border: 1px solid var(--gold-20); border-radius: 14px; padding: 10px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; box-shadow: 0 22px 54px rgba(0,0,0,.5); z-index: 60; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
/* link ile dropdown arasındaki boşluğu köprüle → fare geçerken kapanmaz */
.has-dropdown .dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.dropdown-link { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 10px; text-decoration: none; transition: background .15s; }
.dropdown-link:hover { background: var(--bg); }
.dropdown-mark { width: 9px; height: 9px; margin-top: 5px; background: var(--gold); }
.dropdown-title { display: block; color: var(--ink); font-weight: 700; font-size: 14px; }
.dropdown-desc { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.4; margin-top: 3px; }
.dropdown-all { padding: 11px 12px; color: var(--teal-2); font-weight: 700; font-size: 13px; text-decoration: none; border-top: 1px solid var(--gold-16); margin-top: 4px; }

.header-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 3px; padding: 3px; border: 1px solid rgba(217,180,120,.25); border-radius: 999px; }
.lang-btn { padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .08em; background: transparent; color: var(--muted); text-decoration: none; line-height: 1; transition: all .2s; }
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--gold); color: var(--dark-ink); }
.nav-login { font-weight: 600; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 38px; padding: 0 9px; background: transparent; border: 1px solid var(--gold-20); border-radius: 8px; cursor: pointer; }
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- BUTTONS ---------------- */
.btn { display: inline-block; text-decoration: none; cursor: pointer; font-family: inherit; border: none; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.btn-cta { white-space: nowrap; padding: 10px 18px; background: var(--teal); color: var(--dark-ink); border-radius: 7px; font-size: 13.5px; font-weight: 700; }
.btn-cta:hover { background: var(--teal-2); }
.btn-primary { padding: 15px 28px; background: var(--teal); color: var(--dark-ink); border-radius: 8px; font-weight: 700; font-size: 15px; }
.btn-primary:hover { background: var(--teal-2); }
.btn-outline { padding: 15px 26px; background: transparent; color: var(--ink); border: 1px solid rgba(217,180,120,.5); border-radius: 8px; font-weight: 600; font-size: 15px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding: 64px 24px 84px; border-bottom: 1px solid var(--gold-16);
  background:
    radial-gradient(40% 50% at 18% 14%, rgba(217,180,120,.26), transparent 70%),
    radial-gradient(44% 54% at 84% 26%, rgba(31,176,163,.30), transparent 72%),
    radial-gradient(60% 62% at 50% 112%, rgba(63,199,186,.18), transparent 72%),
    #07130f; }
.hero-inner { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.mandala { position: relative; width: 296px; height: 296px; }
.mandala svg { display: block; width: 100%; height: 100%; }
.mandala--sm { width: 240px; height: 240px; }
/* koruma amblemi (kalkan + radar) animasyonu — merkez etrafında döner */
.vk-mark .sweep, .vk-mark .ring-rev { transform-box: view-box; transform-origin: 50px 50px; }
.vk-mark .sweep { animation: spin 8s linear infinite; }
.vk-mark .ring-rev { animation: spin-rev 40s linear infinite; }

.badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border: 1px solid rgba(217,180,120,.4); border-radius: 999px; font-size: 12.5px; letter-spacing: .02em; color: var(--gold); font-weight: 600; }
.badge .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.hero-title { font-family: "Playfair Display", serif; font-weight: 600; font-size: clamp(34px,5.4vw,62px); line-height: 1.08; margin: 0; max-width: 860px; color: var(--ink); text-wrap: balance; }
.hero-sub { font-size: clamp(15px,1.6vw,19px); line-height: 1.65; color: var(--muted); max-width: 640px; margin: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 2px; }
.hero-strip { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 20px; border: 1px solid rgba(217,180,120,.22); border-radius: 10px; overflow: hidden; }
.strip-item { display: flex; align-items: center; gap: 10px; padding: 14px 26px; font-size: 13.5px; color: var(--ink); border-left: 1px solid var(--gold-16); }
.strip-item:first-child { border-left: none; }
.strip-item .diamond { width: 7px; height: 7px; }

/* ---------------- SECTIONS ---------------- */
.section { padding: 84px 24px; }
.section.bg-deep { background: var(--bg); }
.section.bg-panel { background: var(--bg-2); border-top: 1px solid rgba(217,180,120,.1); border-bottom: 1px solid rgba(217,180,120,.1); }
.section-head { margin-bottom: 44px; }
.eyebrow { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: var(--teal); margin: 0 0 14px; }
.section-title { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(28px,3.6vw,42px); line-height: 1.15; color: var(--ink); margin: 0; }
.section-intro { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 620px; margin: 16px auto 0; }
.section-head .section-intro { margin-bottom: 0; }

/* page hero (inner pages) */
.page-hero { padding: 76px 24px 44px; background: radial-gradient(72% 80% at 50% -8%, rgba(31,176,163,.10), transparent 58%); border-bottom: 1px solid var(--gold-16); }
.page-title { font-family: "Playfair Display", serif; font-weight: 600; font-size: clamp(30px,4.4vw,50px); line-height: 1.1; margin: 0 0 14px; color: var(--ink); text-wrap: balance; }
.page-lead { font-size: clamp(15px,1.7vw,19px); line-height: 1.6; color: var(--muted); max-width: 640px; margin: 0; }
.center .page-lead { margin: 0 auto; }

/* stats / steps / features (shared) */
.stats { display: flex; flex-wrap: wrap; border: 1px solid rgba(217,180,120,.25); border-radius: 14px; overflow: hidden; margin-top: 6px; }
.stat { flex: 1; min-width: 180px; padding: 34px 24px; border-left: 1px solid var(--gold-16); }
.stat:first-child { border-left: none; }
.stat-num { font-family: "Playfair Display", serif; font-weight: 600; font-size: 46px; line-height: 1; color: var(--teal-2); margin-bottom: 12px; }
.stat-label { font-size: 14px; line-height: 1.5; color: var(--muted); }
.why-note { font-size: 12px; color: var(--faint); margin: 18px 0 0; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step { padding: 34px 28px; border: 1px solid rgba(217,180,120,.22); border-radius: 14px; background: var(--bg-2); text-align: left; }
.step-mark { position: relative; display: inline-block; width: 40px; height: 40px; margin-bottom: 22px; line-height: 0; }
.step-mark svg { display: block; width: 100%; height: 100%; }
.step-num { font-family: "Playfair Display", serif; font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.step-title { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.step-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature { padding: 28px; border: 1px solid rgba(217,180,120,.2); border-radius: 12px; background: var(--bg); transition: border-color .2s; }
.section.bg-panel .feature { background: var(--bg); }
.feature:hover { border-color: rgba(31,176,163,.6); }
.feature .diamond { width: 11px; height: 11px; margin-bottom: 18px; }
.feature-title { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.feature-desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------------- SOLUTION CARDS (teaser) ---------------- */
.sol-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sol-card { display: flex; flex-direction: column; gap: 9px; padding: 26px; border: 1px solid var(--gold-20); border-radius: 14px; background: var(--bg); text-decoration: none; transition: transform .2s, border-color .2s; }
.sol-card:hover { transform: translateY(-4px); border-color: rgba(31,176,163,.6); }
.sol-card-mark { position: relative; width: 34px; height: 34px; display: inline-block; margin-bottom: 6px; line-height: 0; }
.sol-card-mark svg { display: block; width: 100%; height: 100%; }
.sol-card-title { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0; }
.sol-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }
.sol-card-from { font-size: 13px; color: var(--muted-2); }
.sol-card-from strong { color: var(--teal-2); font-size: 15px; }
.sol-card-arrow { font-size: 13px; font-weight: 700; color: var(--gold); margin-top: 4px; }

/* ---------------- TRUST ROW ---------------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--gold-20); border-radius: 999px; font-size: 13px; color: var(--muted-2); }
.trust-chip .diamond { width: 7px; height: 7px; }

/* ---------------- PLANS ---------------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px,1fr)); gap: 18px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 30px 24px; border: 1px solid rgba(217,180,120,.25); border-radius: 16px; background: var(--bg-2); transition: transform .2s; }
.section.bg-deep .plan { background: var(--bg-2); }
.plan:hover { transform: translateY(-4px); }
.plan-ring { position: absolute; inset: -1px; border: 2px solid var(--teal); border-radius: 16px; pointer-events: none; opacity: 0; }
.plan.is-featured .plan-ring { opacity: 1; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; background: var(--gold); color: var(--dark-ink); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-family: "Playfair Display", serif; font-size: 22px; color: var(--ink); }
.plan-price-row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.plan-price { font-family: "Playfair Display", serif; font-size: 36px; color: var(--teal-2); line-height: 1; }
.plan-price--quote { font-size: 28px; }
.plan-period { font-size: 13px; color: var(--muted); }
.plan-features { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; line-height: 1.45; color: var(--muted-2); }
.plan-feature .diamond { width: 8px; height: 8px; background: var(--gold); margin-top: 5px; }
.plan-btn { padding: 13px; border-radius: 8px; font-weight: 700; font-size: 14.5px; cursor: pointer; text-align: center; text-decoration: none; display: block; background: transparent; color: var(--ink); border: 1px solid rgba(217,180,120,.45); transition: all .2s; }
.plan-btn:hover { border-color: var(--gold); color: var(--gold); }
.plan.is-featured .plan-btn { background: var(--teal); color: var(--dark-ink); border-color: var(--teal); }
.plan.is-featured .plan-btn:hover { background: var(--teal-2); border-color: var(--teal-2); color: var(--dark-ink); }

/* pricing page groups */
.pricing-group { margin-bottom: 56px; }
.pricing-group:last-of-type { margin-bottom: 24px; }
.pricing-group-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--gold-16); }
.pricing-group-title { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(22px,2.6vw,30px); color: var(--ink); margin: 0 0 6px; }
.pricing-group-desc { font-size: 14.5px; color: var(--muted); margin: 0; max-width: 640px; }
.pricing-group-link { color: var(--gold); font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; }
.pricing-group-link:hover { color: var(--teal-2); }
.price-note { font-size: 12.5px; color: var(--faint); text-align: center; max-width: 720px; margin: 14px auto 0; line-height: 1.5; }

/* billing period toggle */
.billing-bar { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 0 auto 42px; }
.billing-toggle { display: inline-flex; gap: 4px; padding: 5px; background: var(--bg-2); border: 1px solid var(--gold-20); border-radius: 999px; }
.bt-btn { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border: none; background: transparent; color: var(--muted); font-family: inherit; font-size: 14px; font-weight: 700; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; white-space: nowrap; }
.bt-btn:hover { color: var(--ink); }
.bt-btn.is-active { background: var(--teal); color: var(--dark-ink); }
.bt-save { font-size: 10.5px; font-weight: 800; padding: 3px 8px; border-radius: 999px; background: var(--gold); color: var(--dark-ink); text-transform: uppercase; letter-spacing: .02em; }
.bt-btn.is-active .bt-save { background: var(--dark-ink); color: var(--gold); }
.billing-refund { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted-2); margin: 0; }
.billing-refund .diamond { width: 8px; height: 8px; }
@media (max-width: 480px) { .bt-btn { padding: 10px 15px; font-size: 13px; } .bt-save { display: none; } }

/* solution hero */
.sol-hero { padding-bottom: 28px; }
.sol-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; max-width: 1100px; margin: 0 auto; }
.sol-hero-text .hero-actions { justify-content: flex-start; margin-top: 22px; }
.sol-hero-text .trust-row { justify-content: flex-start; }
.sol-hero-mark { display: flex; justify-content: center; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gold-20); border-radius: 12px; background: var(--bg-2); padding: 0 20px; }
.faq-q { cursor: pointer; padding: 18px 28px 18px 0; font-weight: 700; font-size: 16px; color: var(--ink); list-style: none; position: relative; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 15px; color: var(--gold); font-size: 22px; line-height: 1; }
.faq-item[open] .faq-q::after { content: '\2013'; }
.faq-a { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label { font-size: 13px; color: var(--muted-2); font-weight: 600; }
.contact-form input, .contact-form textarea { background: var(--bg-2); border: 1px solid var(--gold-20); border-radius: 9px; padding: 13px 14px; color: var(--ink); font-family: inherit; font-size: 15px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; }
.form-note { font-size: 12.5px; color: var(--faint); margin: 16px 0 0; }
.form-mail { font-size: 14px; color: var(--muted); margin: 8px 0 0; }
.form-mail a { color: var(--teal-2); }
.form-success { display: flex; align-items: center; gap: 10px; background: rgba(31,176,163,.1); border: 1px solid rgba(31,176,163,.4); color: var(--ink); padding: 14px 16px; border-radius: 10px; margin-bottom: 22px; font-size: 14.5px; }
.form-success .diamond { width: 9px; height: 9px; }
.form-error { background: rgba(214,96,96,.12); border: 1px solid rgba(214,96,96,.45); color: #f0cccc; padding: 14px 16px; border-radius: 10px; margin-bottom: 22px; font-size: 14.5px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* prose (legal) */
.prose { color: var(--muted); font-size: 15px; line-height: 1.7; }
.prose p { margin: 0 0 14px; }
.prose-h { font-family: "Playfair Display", serif; font-weight: 500; font-size: 21px; color: var(--ink); margin: 28px 0 10px; }
.prose-h:first-child { margin-top: 0; }
.legal-disclaimer { margin-top: 30px; padding: 14px 16px; border: 1px dashed var(--gold-20); border-radius: 10px; font-size: 12.5px; color: var(--faint); }

/* blog */
.eyebrow-link { color: inherit; text-decoration: none; }
.eyebrow-link:hover { color: var(--gold); }
.article-meta { font-size: 13px; color: var(--faint); margin: 4px 0 0; letter-spacing: .04em; }
.article-lead { font-size: 19px; line-height: 1.6; color: var(--muted-2); margin: 0 0 28px; font-weight: 500; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { display: flex; flex-direction: column; gap: 10px; padding: 26px; border: 1px solid var(--gold-20); border-radius: 14px; background: var(--bg); text-decoration: none; transition: transform .2s, border-color .2s; }
.section.bg-panel .blog-card { background: var(--bg); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(31,176,163,.6); }
.blog-card-date { font-size: 12px; color: var(--teal-2); letter-spacing: .04em; font-weight: 600; }
.blog-card-title { font-family: "Playfair Display", serif; font-weight: 500; font-size: 19px; line-height: 1.25; color: var(--ink); margin: 0; }
.blog-card-desc { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; flex: 1; }
.blog-card-arrow { font-size: 13px; font-weight: 700; color: var(--gold); margin-top: 4px; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* cookie bar */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 780px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; padding: 14px 18px; background: #0c211d; border: 1px solid var(--gold-20); border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.cookie-bar[hidden] { display: none; }
.site-header.nav-open ~ .cookie-bar { display: none; }
.cookie-text { font-size: 13px; color: var(--muted-2); flex: 1; min-width: 220px; line-height: 1.5; }
.cookie-text a { color: var(--teal-2); }
.cookie-accept { padding: 9px 22px; background: var(--teal); color: var(--dark-ink); border: none; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s; }
.cookie-accept:hover { background: var(--teal-2); }

/* ---------------- ASSURANCE ---------------- */
.assurance { padding: 88px 24px; background: radial-gradient(62% 85% at 50% 28%, rgba(31,176,163,.10), transparent 60%), var(--bg-2); border-top: 1px solid var(--gold-16); }
.assurance-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.towers { display: flex; align-items: flex-end; gap: 10px; }
.tower { border-radius: 50% 50% 4px 4px; position: relative; }
.tower span { position: absolute; left: 50%; transform: translateX(-50%) rotate(45deg); }
.tower.t-side { width: 46px; height: 64px; border: 1.5px solid rgba(217,180,120,.55); }
.tower.t-side span { top: -12px; width: 8px; height: 8px; background: var(--teal); }
.tower.t-main { width: 60px; height: 92px; border: 1.5px solid var(--teal); }
.tower.t-main span { top: -14px; width: 10px; height: 10px; background: var(--gold); }
.assurance-title { font-family: "Playfair Display", serif; font-weight: 600; font-size: clamp(30px,4vw,46px); line-height: 1.12; margin: 0; color: var(--ink); }
.assurance-text { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 560px; margin: 0; }

/* ---------------- FOOTER ---------------- */
.site-footer { padding: 56px 40px 34px; background: var(--bg-foot); border-top: 1px solid rgba(217,180,120,.18); }
.footer-top { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brandcol { max-width: 290px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 24px; height: 24px; }
.footer-brand .brand-name { font-size: 16px; letter-spacing: .3em; }
.footer-tagline { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; line-height: 1.5; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; font-weight: 700; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-copy { max-width: 1100px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(217,180,120,.1); font-size: 12.5px; color: var(--faint); text-align: center; }

/* ---------------- REVEAL ---------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-revealed { opacity: 1; transform: none; }

/* scroll ilerleme çubuğu */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--gold), var(--teal-2)); z-index: 60; will-change: transform; pointer-events: none; }
/* kademeli (staggered) çocuk belirme */
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.6,.2,1), transform .6s cubic-bezier(.2,.6,.2,1); }
.stagger.is-revealed > * { opacity: 1; transform: none; }
.stagger.is-revealed > *:nth-child(1) { transition-delay: .04s; }
.stagger.is-revealed > *:nth-child(2) { transition-delay: .11s; }
.stagger.is-revealed > *:nth-child(3) { transition-delay: .18s; }
.stagger.is-revealed > *:nth-child(4) { transition-delay: .25s; }
.stagger.is-revealed > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-revealed > *:nth-child(6) { transition-delay: .39s; }
/* hero parallax hedefi */
.hero .mandala { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .stagger > * { opacity: 1; transform: none; transition: none; }
  .hero .mandala { transform: none !important; opacity: 1 !important; }
  .scroll-progress { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .vk-mark .sweep, .vk-mark .ring-rev { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) { .sol-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 1080px) {
  .nav-toggle { display: flex; order: 3; }
  .site-header { padding: 0 20px; min-height: 62px; }
  .nav, .header-right { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 2px; }
  .site-header.nav-open { padding-bottom: 18px; }
  .site-header.nav-open .nav, .site-header.nav-open .header-right { display: flex; }
  .nav { padding-top: 6px; border-top: 1px solid var(--gold-16); }
  .nav-item { width: 100%; }
  .nav-link { padding: 13px 4px; border-bottom: 1px solid rgba(217,180,120,.1); font-size: 15px; }
  .has-dropdown .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: transparent; min-width: 0; padding: 4px 0 10px 14px; }
  .has-dropdown .dropdown::before { display: none; }
  .has-dropdown .dropdown-link { padding: 9px 8px; }
  .has-dropdown .dropdown-desc { display: none; }
  .has-dropdown .dropdown-all { border: none; padding: 8px; }
  .site-header.nav-open .header-right { gap: 14px; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--gold-16); }
  .lang-switch { align-self: flex-start; }
  .nav-login { align-self: flex-start; padding: 4px; }
  .header-right .btn-cta { text-align: center; padding: 14px; width: 100%; font-size: 14.5px; }
  .sol-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .sol-hero-mark { order: -1; }
  .footer-top { gap: 30px; }
  .footer-cols { gap: 36px; }
}
@media (max-width: 760px) {
  .section { padding: 60px 20px; }
  .hero { padding: 44px 20px 60px; }
  .page-hero { padding: 56px 20px 36px; }
  .steps, .features, .sol-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .assurance { padding: 60px 20px; }
  .site-footer { padding: 40px 20px 28px; }
  .pricing-group-head { align-items: flex-start; }
}
@media (max-width: 480px) {
  .mandala { width: 220px; height: 220px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; text-align: center; }
}
