:root {
  interpolate-size: allow-keywords;
  --bg: #F0F2F5;
  --surface: #FFFFFF;
  --surface-2: #E8EAED;
  --ink: #1E293B;
  --ink-soft: #64748B;
  --accent: #DC2626;
  --accent-2: #0369A1;
  --line: #D1D5DB;
  --line-strong: #9CA3AF;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;
  --header-h: 72px;
  --container-w: 1240px;
  --container-pad: clamp(16px, 4vw, 32px);
  --section-py: clamp(3.5rem, 8vw, 6rem);
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px -4px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 32px -8px rgba(0,0,0,.14);
  --shadow-accent: 0 12px 32px -8px rgba(220,38,38,.15);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-in-out: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100vw; }
body { font-family: var(--font-body); font-size: clamp(.9375rem, 1.5vw, 1.0625rem); line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.skip-link { position: absolute; top: -100px; left: 16px; background: var(--accent); color: #fff; padding: 8px 16px; font-size: .875rem; font-weight: 600; border-radius: 0 0 var(--radius) var(--radius); z-index: 10000; transition: top 200ms; }
.skip-link:focus { top: 0; color: #fff; outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--ink); letter-spacing: -.012em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.0625rem, 2vw, 1.25rem); }
p { margin-bottom: 1em; }
.mono { font-family: var(--font-mono); font-weight: 500; }
.small { font-size: .8125rem; }
.ink-soft { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }
main { padding-top: var(--header-h); }

/* ── HEADER ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1080; background: rgba(240, 242, 245, 0.92); transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease; }
.site-header.scrolled { background: rgba(240,242,245,.98); box-shadow: 0 8px 24px -16px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: transform 260ms cubic-bezier(.16,1,.3,1); }
.logo:hover { transform: translateY(-1px); }
.logo-mark { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; letter-spacing: -.02em; color: #fff; background: var(--accent); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; transition: box-shadow 260ms cubic-bezier(.16,1,.3,1); }
.logo:hover .logo-mark { box-shadow: 0 4px 12px -4px rgba(220,38,38,.25); }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--ink); letter-spacing: -.01em; }
.site-header.scrolled .logo-mark { background: var(--ink); }

/* ── NAV DESKTOP ── */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav__link { position: relative; padding: 8px 14px; font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--ink); text-decoration: none; transition: color 200ms; }
.nav__link::after { content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 260ms var(--ease); }
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--accent); }
.nav-cta { background: var(--ink); color: var(--surface) !important; border-radius: var(--radius); padding: 8px 20px !important; margin-left: 8px; transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent); color: var(--surface) !important; transform: translateY(-1px); box-shadow: 0 4px 12px -4px rgba(220,38,38,.3); }

/* ── NAV TOGGLE ── */
.nav-toggle { display: none; position: relative; z-index: 1100; width: 48px; height: 48px; background: rgba(30,41,59,.08); border: 2px solid var(--ink); border-radius: var(--radius); cursor: pointer; padding: 10px; flex-direction: column; align-items: center; justify-content: center; transition: background 200ms, border-color 200ms, box-shadow 200ms; }
.nav-toggle:hover, .nav-toggle:active { background: rgba(220,38,38,.08); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.nav-toggle span { display: block; width: 22px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform 300ms var(--ease), opacity 200ms, background 200ms; transform-origin: center; }
.nav-toggle span:nth-child(2) { margin: 5px 0; }
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── DRAWER ── */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1040; opacity: 0; pointer-events: none; transition: opacity 240ms; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 92vw); background: var(--surface); z-index: 1050; transform: translateX(100%); transition: transform 320ms cubic-bezier(.2,.7,.2,1); padding: calc(var(--header-h) + 24px) 28px 28px; overflow-y: auto; }
.drawer.is-open { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a { display: block; padding: 14px 16px; font-family: var(--font-body); font-size: 1.0625rem; font-weight: 500; color: var(--ink); border-radius: var(--radius); transition: background 200ms, color 200ms, transform 200ms, padding-left 200ms; text-decoration: none; }
.drawer-nav a:hover, .drawer-nav a.is-active { background: rgba(220,38,38,.06); color: var(--accent); padding-left: 22px; box-shadow: inset 3px 0 0 var(--accent); }
.drawer-nav .drawer-cta { margin-top: 16px; background: var(--ink); color: var(--surface); text-align: center; border-radius: var(--radius); }
.drawer-nav .drawer-cta:hover { background: var(--accent); color: var(--surface); }

/* ── HERO ── */
.hero { padding: clamp(3rem,8vw,5rem) 0 var(--section-py); background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: -10%; width: 50%; height: 100%; background: radial-gradient(ellipse at 70% 30%, rgba(180,83,9,.05) 0%, rgba(220,38,38,.02) 40%, transparent 70%); pointer-events: none; }
.hero .badge { margin-bottom: 1.25rem; display: inline-block; }
.hero h1 { margin-bottom: 1.5rem; max-width: 700px; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.1875rem); color: var(--ink-soft); max-width: 580px; line-height: 1.65; margin-bottom: 2rem; }

.badge { font-family: var(--font-mono); font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; background: rgba(30,41,59,.06); color: var(--ink-soft); border-radius: 2px; padding: 5px 12px; display: inline-block; }
.badge--red { background: rgba(220,38,38,.08); color: var(--accent); border: 1px solid rgba(220,38,38,.15); }
.badge--green { background: rgba(22,163,74,.08); color: #16a34a; border: 1px solid rgba(22,163,74,.15); }
.badge--blue { background: rgba(3,105,161,.08); color: var(--accent-2); border: 1px solid rgba(3,105,161,.15); }

/* ── SPECS BAR ── */
.specs-bar { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; max-width: 600px; background: var(--surface); }
.spec-item { flex: 1; min-width: 160px; padding: 16px 20px; border-right: 1px solid var(--line); }
.spec-item:last-child { border-right: none; }
.spec-label { display: block; font-family: var(--font-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.spec-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--ink); }
.spec-item--accent .spec-value { color: var(--accent); }
.counter { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ── TRUST STRIP ── */
.trust-strip { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .8125rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .02em; }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.trust-item svg path, .trust-item svg circle, .trust-item svg rect { stroke: var(--accent); }

/* ── SECTIONS ── */
.section { padding: var(--section-py) 0; }
.section--alt { background-color: var(--surface-2); background-image: radial-gradient(circle, rgba(30,41,59,.03) 1px, transparent 1px); background-size: 20px 20px; }
.section--dark { background: var(--ink); color: var(--surface); background-image: radial-gradient(circle at 10% 20%, rgba(180,83,9,.04) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(220,38,38,.03) 0%, transparent 40%); }
.section--dark .section-heading { color: var(--surface); border-left-color: var(--accent); }
.section--dark .mono-label { color: var(--accent); }
.section--dark .ink-soft { color: var(--line); }
.section-heading { border-left: 3px solid var(--accent); padding-left: 16px; margin: 0 0 2.5rem; }
.mono-label { display: block; font-family: var(--font-mono); font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .375rem; }
.section-intro { color: var(--ink-soft); max-width: 620px; margin-bottom: 2rem; }

/* ── STITCH DIVIDER ── */
.stitch-divider { height: 2px; max-width: var(--container-w); margin: 0 auto; background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px); opacity: .25; }

/* ── TABLES ── */
.table-scroll { display: block; width: 100%; max-width: 100%; min-width: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); position: relative; }
.table-scroll > table { margin: 0 !important; min-width: 580px; width: 100%; }
.table-scroll::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 24px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(240,242,245,.6)); z-index: 2; transition: opacity 300ms; }
.table-scroll.is-scrolled-end::after { opacity: 0; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th { font-family: var(--font-mono); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); text-align: left; padding: 14px 18px; background: var(--surface-2); border-bottom: 2px solid var(--line); white-space: nowrap; }
table td { padding: 14px 18px; border-bottom: 1px solid rgba(209,213,219,.5); font-size: .9375rem; vertical-align: top; }
table tbody tr:last-child td { border-bottom: none; }
table tbody tr { background: var(--surface); transition: background 260ms cubic-bezier(.16,1,.3,1); }
table tbody tr:hover { background: rgba(180,83,9,.035); }
table .price-col { font-family: var(--font-mono); font-weight: 500; color: var(--ink); white-space: nowrap; }
table .warranty-badge { font-family: var(--font-mono); font-size: .75rem; background: rgba(3,105,161,.08); color: var(--accent-2); padding: 3px 8px; border-radius: 2px; white-space: nowrap; }

/* ── FLOW CHART ── */
.flow-chart { max-width: 800px; margin: 2rem auto; }
.flow-svg { width: 100%; height: auto; }
.flow-svg .flow-box { fill: var(--surface); stroke: var(--line-strong); stroke-width: 1.5; rx: 4; }
.flow-svg .flow-box--active { stroke: var(--accent); stroke-width: 2; }
.flow-svg .flow-line { stroke: var(--line-strong); stroke-width: 1.5; stroke-dasharray: 6 4; fill: none; }
.flow-svg .flow-arrow { fill: var(--accent); }
.flow-svg text { font-family: var(--font-mono); fill: var(--ink); }
.flow-svg .flow-label { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.flow-svg .flow-num { font-size: 18px; font-weight: 700; fill: var(--accent); }
.reveal.is-in .flow-line-animated { animation: flow-draw 2s ease forwards; }
@keyframes flow-draw { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }

/* ── COMPARE CARDS (before/after flip) ── */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.compare-card { perspective: 1000px; cursor: pointer; position: relative; }
.compare-card__inner { position: relative; min-height: 380px; transition: transform 600ms var(--ease); transform-style: preserve-3d; }
@media (hover: hover) { .compare-card:hover .compare-card__inner { transform: rotateY(180deg); } .compare-card::before { display: none; } }
.compare-card.is-flipped .compare-card__inner { transform: rotateY(180deg); }
.compare-card__front, .compare-card__back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; }
.compare-card__back { transform: rotateY(180deg); }
.compare-card__img { flex: 1; min-height: 220px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.compare-card__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.compare-card__img-placeholder { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; }
.compare-card__info { padding: 18px 20px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.compare-card__info h3 { width: 100%; font-size: 1rem; margin-bottom: 0; }
.compare-card__info .mono { font-size: .75rem; color: var(--ink-soft); width: 100%; }

/* ── SPEC SHEET ── */
.spec-sheet { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-entry { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 24px; background: var(--surface); align-items: start; transition: background 200ms; }
.spec-entry:hover { background: rgba(220,38,38,.015); }
.spec-entry__icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(220,38,38,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); transition: transform 300ms var(--ease); }
.spec-entry:hover .spec-entry__icon { transform: rotate(12deg); }
.spec-entry__icon svg { width: 20px; height: 20px; }
.spec-entry__body h4 { font-size: 1rem; margin-bottom: 4px; }
.spec-entry__meta { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-soft); letter-spacing: .04em; margin-bottom: 6px; }
.spec-entry__desc { font-size: .875rem; color: var(--ink-soft); margin: 0; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 48px; max-width: 700px; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: repeating-linear-gradient(180deg, var(--accent) 0 8px, transparent 8px 16px); opacity: .35; }
.timeline-step { position: relative; margin-bottom: 2.5rem; padding-bottom: .5rem; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step::before { content: ''; position: absolute; left: -38px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent); }
.timeline-step__time { font-family: var(--font-mono); font-size: .75rem; font-weight: 500; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-step h4 { margin-bottom: 6px; }
.timeline-step p { font-size: .9375rem; color: var(--ink-soft); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); }
.testimonial-card--featured { grid-column: 1 / -1; border-color: rgba(220,38,38,.25); background: rgba(220,38,38,.04); }
.testimonial-card__quote { font-size: clamp(.9375rem, 1.5vw, 1.0625rem); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; color: rgba(255,255,255,.88); }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(220,38,38,.15); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: .875rem; color: var(--accent); flex-shrink: 0; }
.testimonial-card__name { font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; color: var(--surface); }
.testimonial-card__detail { font-family: var(--font-mono); font-size: .75rem; color: var(--line-strong); letter-spacing: .04em; }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 2.5rem; }
.package-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.package-card--featured { border-color: var(--accent); }
.package-card--featured::before { content: 'Popüler'; position: absolute; top: -11px; right: 20px; font-family: var(--font-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 3px 12px; border-radius: 2px; }
.package-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.package-card__price { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 700; color: var(--accent); margin-bottom: 1.5rem; }
.package-card__price small { font-size: .75rem; font-weight: 500; color: var(--ink-soft); }
.package-card__list { margin-bottom: 1.5rem; }
.package-card__list li { padding: 6px 0; font-size: .9375rem; display: flex; align-items: flex-start; gap: 10px; }
.package-card__list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.package-card__excluded { border-top: 1px solid var(--line); padding-top: 1rem; margin-top: .5rem; }
.package-card__excluded li { padding: 4px 0; font-size: .8125rem; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 10px; }
.package-card__excluded li::before { content: '—'; color: var(--line-strong); flex-shrink: 0; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-family: var(--font-heading); font-weight: 600; font-size: 1.0625rem; color: var(--ink); cursor: pointer; list-style: none; user-select: none; transition: color 200ms; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-mono); font-size: 1.25rem; font-weight: 500; color: var(--accent); flex-shrink: 0; transition: transform 300ms var(--ease); }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body { height: 0; padding: 0 0; overflow: hidden; transition: height 360ms var(--ease-in-out), padding-block-end 360ms var(--ease-in-out); }
.faq-item[open] .faq-body { height: auto; padding-block-end: 20px; }
.faq-item .faq-body p { font-size: .9375rem; color: var(--ink-soft); line-height: 1.7; margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item .faq-body { transition: none; } }

/* ── NOTES ── */
.notes-list { max-width: 700px; }
.note-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: start; }
.note-item:last-child { border-bottom: none; }
.note-date { font-family: var(--font-mono); font-size: .8125rem; font-weight: 500; color: var(--accent); white-space: nowrap; letter-spacing: .02em; padding-top: 2px; }
.note-text { font-size: .9375rem; color: var(--ink); }

/* ── CAPACITY ── */
.capacity-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .8125rem; font-weight: 500; color: var(--accent-2); background: rgba(3,105,161,.06); border: 1px solid rgba(3,105,161,.12); border-radius: 2px; padding: 10px 16px; margin-top: 2rem; }
.capacity-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #16a34a; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.3); } 50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } }

/* ── FORMS ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { position: relative; }
.field label { display: block; font-family: var(--font-mono); font-size: .75rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select, .field textarea { display: block; width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--surface); border: none; border-bottom: 2px solid var(--line); border-radius: 0; transition: border-color 200ms, background 200ms, box-shadow 200ms; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); background: rgba(220,38,38,.015); box-shadow: 0 2px 0 0 var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 40px; }
.field input[type="checkbox"] { appearance: auto; -webkit-appearance: auto; width: 18px; height: 18px; min-width: 18px; min-height: 18px; padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--accent); }
.kvkk { display: flex; align-items: flex-start; gap: 10px; font-size: .8125rem; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }
.kvkk input[type="checkbox"] { margin-top: 2px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; background: var(--ink); color: var(--surface); border: none; border-radius: var(--radius); cursor: pointer; transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); text-decoration: none; letter-spacing: .01em; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); color: var(--surface); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; background: transparent; color: var(--ink); border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: background 220ms, color 220ms, border-color 220ms, transform 220ms; text-decoration: none; }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-submit { display: block; width: 100%; padding: 16px 32px; font-family: var(--font-heading); font-weight: 600; font-size: 1.0625rem; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); cursor: pointer; transition: background 260ms cubic-bezier(.22,.68,0,1.02), transform 260ms cubic-bezier(.22,.68,0,1.02), box-shadow 260ms cubic-bezier(.22,.68,0,1.02); letter-spacing: .01em; position: relative; overflow: hidden; }
.btn-submit::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%); opacity: 0; transition: opacity 300ms; pointer-events: none; }
.btn-submit:hover::before { opacity: 1; }
.btn-submit:hover, .btn-submit:focus-visible { background: #b91c1c; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(220,38,38,.28); }
.btn-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: clamp(3rem, 6vw, 5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.footer-brand .logo-mark { background: var(--accent); }
.footer-brand .logo-text { color: var(--surface); }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: 1rem; max-width: 280px; line-height: 1.6; }
.footer-heading { font-family: var(--font-mono); font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-links a { display: block; padding: 5px 0; font-size: .9375rem; color: rgba(255,255,255,.7); transition: color 200ms; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: .9375rem; color: rgba(255,255,255,.7); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item svg path, .footer-contact-item svg circle, .footer-contact-item svg rect { stroke: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 1.25rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); transition: background 200ms, color 200ms; text-decoration: none; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.3); font-family: var(--font-mono); }
.footer-vkn { font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.25); margin-top: .5rem; letter-spacing: .04em; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: 0 16px 48px -12px rgba(0,0,0,.22), 0 0 0 1px rgba(0,0,0,.04); z-index: 9999; transform: translateY(140%); opacity: 0; transition: transform 380ms cubic-bezier(.22,.68,0,1.02), opacity 300ms; }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.cookie-text { font-size: .8125rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.cookie-text a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { flex: 1; min-height: 44px; font-family: var(--font-heading); font-weight: 600; font-size: .875rem; border-radius: var(--radius); cursor: pointer; transition: background 200ms, transform 200ms, border-color 200ms, box-shadow 200ms; border: none; }
.cookie-accept { background: var(--ink); color: var(--surface); }
.cookie-accept:hover { background: var(--accent); color: var(--surface); transform: translateY(-1px); box-shadow: 0 4px 12px -4px rgba(220,38,38,.25); }
.cookie-reject { background: var(--surface); color: var(--ink); border: 2px solid var(--ink) !important; font-weight: 600; box-shadow: 0 1px 3px rgba(30,41,59,.08); }
.cookie-reject:hover { background: var(--ink); color: var(--surface); border-color: var(--ink) !important; transform: translateY(-1px); box-shadow: 0 4px 12px -4px rgba(30,41,59,.25); }
.cookie-settings { background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line) !important; }
.cookie-settings:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink) !important; }

/* ── PAGE HERO (secondary pages) ── */
.page-hero { min-height: 240px; display: flex; align-items: center; background: var(--ink); color: var(--surface); padding: clamp(3rem,6vw,4.5rem) 0 clamp(2.5rem,5vw,4rem); }
.page-hero h1 { color: var(--surface); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero .badge { color: var(--accent); background: rgba(220,38,38,.12); border: 1px solid rgba(220,38,38,.2); margin-bottom: 1rem; }
.page-hero .sub { color: var(--line); max-width: 600px; margin: 0; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 3rem; }
.contact-card { border: 1px solid var(--line); padding: 24px; border-radius: var(--radius-lg); background: var(--surface); transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-accent); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(220,38,38,.06); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; transition: transform 260ms var(--ease); }
.contact-card:hover .contact-card__icon { transform: scale(1.08); }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label { font-family: var(--font-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.contact-card__value { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; word-break: break-word; overflow-wrap: anywhere; }
.contact-card__value a { color: var(--ink); text-decoration: none; }
.contact-card__value a:hover { color: var(--accent); }
.contact-card__note { font-size: .8125rem; color: var(--ink-soft); margin: 0; }

.hours-grid { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 400px; margin-bottom: 3rem; }
.hour-row { display: flex; justify-content: space-between; padding: 12px 18px; background: var(--surface); font-variant-numeric: tabular-nums; font-size: .9375rem; transition: background 200ms; }
.hour-row:hover { background: rgba(180,83,9,.03); }
.hour-row.is-today { background: rgba(220,38,38,.04); font-weight: 600; }
.hour-row .day { font-weight: 500; }
.hour-row .time { font-family: var(--font-mono); font-size: .875rem; color: var(--ink-soft); }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.team-card__avatar { width: 64px; height: 64px; border-radius: 50%; background: rgba(220,38,38,.08); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--accent); margin-bottom: 16px; }
.team-card h3 { font-size: 1.125rem; margin-bottom: 2px; }
.team-card__role { font-family: var(--font-mono); font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: .9375rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

.stats-row { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 2.5rem 0; max-width: 800px; }
.stat-box { flex: 1; min-width: 160px; padding: 24px 20px; text-align: center; background: var(--surface); border-right: 1px solid var(--line); }
.stat-box:last-child { border-right: none; }
.stat-box__number { font-family: var(--font-mono); font-weight: 700; font-size: 2rem; color: var(--accent); margin-bottom: 4px; }
.stat-box__label { font-size: .8125rem; color: var(--ink-soft); }

/* ── POLICY PAGES ── */
.policy-content { max-width: 780px; }
.policy-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; border-left: 3px solid var(--accent); padding-left: 14px; }
.policy-content h3 { font-size: 1.125rem; margin: 1.75rem 0 .75rem; }
.policy-content p { color: var(--ink-soft); margin-bottom: 1rem; }
.policy-content ul { margin: 0 0 1.5rem 20px; }
.policy-content li { color: var(--ink-soft); margin-bottom: .5rem; list-style: disc; line-height: 1.65; }

/* ── THANK YOU ── */
.thankyou-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem var(--container-pad) 4rem; }
.thankyou-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(22,163,74,.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.thankyou-icon svg { width: 36px; height: 36px; color: #16a34a; }
.thankyou-section h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.thankyou-section p { color: var(--ink-soft); max-width: 440px; margin: 0 auto 2rem; }

/* ── 404 ── */
.error-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem var(--container-pad) 4rem; }
.error-code { font-family: var(--font-mono); font-size: clamp(5rem, 12vw, 10rem); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 1rem; opacity: .2; }
.error-section h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .75rem; }
.error-section p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px) scale(.985); transition: opacity 880ms cubic-bezier(.16,1,.3,1), transform 880ms cubic-bezier(.16,1,.3,1); transition-delay: calc(var(--i, 0) * 105ms); }
.reveal.is-in { opacity: 1; transform: translateY(0) scale(1); }

/* ── NICHE ANIMATIONS ── */
@keyframes needle-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.25); } 50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); } }
.section-heading .mono-label { position: relative; padding-left: 14px; }
.section-heading .mono-label::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: needle-pulse 2.5s ease infinite; }

@keyframes color-sweep { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.compare-card__back .compare-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(220,38,38,.08) 0%, transparent 60%); animation: color-sweep 800ms var(--ease) forwards; }

@keyframes leather-grain { 0% { background-position: 0 0; } 100% { background-position: 20px 20px; } }
.section--alt { animation: leather-grain 12s linear infinite; }

@keyframes stitch-move { to { background-position: -28px 0; } }
.stitch-divider { animation: stitch-move 3s linear infinite; }

/* ── LEATHER-THEMED MICRO-EFFECTS ── */
@keyframes warm-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(180,83,9,.0); } 50% { box-shadow: 0 0 24px -4px rgba(180,83,9,.12); } }
@keyframes leather-breathe { 0%,100% { box-shadow: 0 0 0 0 rgba(139,109,74,.0); } 50% { box-shadow: 0 0 20px -6px rgba(139,109,74,.10); } }
@keyframes warm-sweep { from { background-position: -100% 0; } to { background-position: 100% 0; } }
@keyframes amber-shimmer { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 20%, rgba(180,83,9,.18) 50%, transparent 80%); background-size: 200% 100%; animation: warm-sweep 4s ease-in-out infinite; pointer-events: none; }

.compare-card::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none; transition: box-shadow 400ms cubic-bezier(.16,1,.3,1); }
.compare-card:hover::after { box-shadow: inset 0 0 0 2px rgba(180,83,9,.12); }

.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 50%); opacity: 0; transition: opacity 340ms cubic-bezier(.16,1,.3,1); pointer-events: none; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 12px 32px -8px rgba(220,38,38,.22), 0 0 0 1px rgba(220,38,38,.08), 0 0 40px -12px rgba(180,83,9,.08); }

.btn-ghost:hover { box-shadow: 0 8px 24px -8px rgba(30,41,59,.12); }

.spec-entry { transition: background 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms cubic-bezier(.16,1,.3,1); }
.spec-entry:hover { background: rgba(180,83,9,.025); box-shadow: inset 3px 0 0 var(--accent); }

.package-card { transition: transform 340ms cubic-bezier(.22,.68,0,1.02), box-shadow 340ms cubic-bezier(.22,.68,0,1.02); }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px -12px rgba(180,83,9,.16), 0 0 0 1px rgba(220,38,38,.08); }
.package-card--featured { animation: leather-breathe 4s ease infinite; }

.contact-card { transition: transform 340ms cubic-bezier(.22,.68,0,1.02), box-shadow 340ms cubic-bezier(.22,.68,0,1.02), border-color 340ms; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(180,83,9,.14); border-color: rgba(220,38,38,.18); }

.team-card { transition: transform 340ms cubic-bezier(.22,.68,0,1.02), box-shadow 340ms cubic-bezier(.22,.68,0,1.02); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px -12px rgba(180,83,9,.16); }

.testimonial-card { transition: transform 340ms cubic-bezier(.22,.68,0,1.02), border-color 340ms, box-shadow 340ms; }
.testimonial-card:hover { transform: translateY(-3px); border-color: rgba(220,38,38,.35); box-shadow: 0 8px 24px -8px rgba(220,38,38,.12); }

.timeline-step { transition: transform 300ms cubic-bezier(.22,.68,0,1.02), box-shadow 300ms; }
.timeline-step:hover { transform: translateX(4px); }
.timeline-step:hover::before { box-shadow: 0 0 0 4px rgba(220,38,38,.15); }

.faq-item summary { transition: color 200ms, padding-left 300ms cubic-bezier(.22,.68,0,1.02), background 200ms; border-radius: var(--radius); }
.faq-item summary:hover { padding-left: 8px; color: var(--accent); background: rgba(220,38,38,.015); }

.nav__link { transition: color 200ms, transform 200ms; }
.nav__link:hover { transform: translateY(-1px); }

.footer-social a { transition: background 240ms cubic-bezier(.22,.68,0,1.02), color 240ms, transform 240ms; }
.footer-social a:hover { transform: scale(1.15) rotate(-3deg); }

.compare-card { transition: transform 300ms cubic-bezier(.22,.68,0,1.02), box-shadow 300ms; }
.compare-card:hover { transform: scale(1.015); box-shadow: 0 12px 32px -10px rgba(139,109,74,.18); }

.note-item { transition: transform 250ms cubic-bezier(.22,.68,0,1.02), background 250ms; border-radius: var(--radius); }
.note-item:hover { transform: translateX(6px); background: rgba(180,83,9,.02); }

.spec-entry__icon { transition: transform 340ms cubic-bezier(.22,.68,0,1.02), background 340ms; }
.spec-entry:hover .spec-entry__icon { transform: rotate(12deg) scale(1.08); background: rgba(220,38,38,.1); }

/* ── FOCUS RING ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .stitch-divider, .section--alt, .package-card--featured { animation: none !important; }
  .section-heading .mono-label::before { animation: none !important; }
  .compare-card__inner { transition: none !important; }
  .compare-card__back .compare-card__img::after { animation: none !important; }
  .capacity-badge::before { animation: none !important; }
  .hero::after { animation: none !important; }
  .btn-primary, .btn-ghost, .btn-submit, .package-card, .contact-card, .team-card,
  .testimonial-card, .compare-card, .spec-entry, .timeline-step, .note-item,
  .nav__link, .footer-social a, .faq-item summary, .cookie-actions button,
  .nav-toggle, .spec-entry__icon, .logo, .logo-mark { transition: none !important; transform: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none !important; }

/* ── PRINT ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link, .trust-strip, .stitch-divider { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .section--dark { background: #eee !important; color: #000 !important; }
  .section--dark * { color: #000 !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .specs-bar { flex-direction: column; }
  .spec-item { border-right: none; border-bottom: 1px solid var(--line); }
  .spec-item:last-child { border-bottom: none; }
  .form-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card__inner { min-height: 340px; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-box { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-box:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding-top: 2rem; }
  .hero-sub { font-size: .9375rem; }
  .trust-strip { gap: 8px 16px; }
  .trust-item { font-size: .75rem; }
  .section-heading { font-size: 1.5rem; padding-left: 14px; }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: .9375rem; }
  .btn-submit { padding: 14px 24px; }
  .compare-card__inner { min-height: 300px; }
  .package-card { padding: 22px 18px; }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 12px; }
  .timeline-step::before { left: -30px; width: 12px; height: 12px; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px 18px; max-height: 55vh; overflow-y: auto; }
  .cookie-actions { flex-direction: column; }
  .compare-card::before { content: 'Karşılaştırmak için dokunun'; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: .625rem; color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; opacity: .6; z-index: 2; pointer-events: none; white-space: nowrap; }
}
@media (max-width: 430px) {
  .header-inner { padding-left: 16px; padding-right: 16px; }
  .spec-item { padding: 12px 16px; }
  .spec-value { font-size: 1rem; }
  table th, table td { padding: 10px 12px; font-size: .875rem; }
}
@media (max-width: 360px) {
  :root { --container-pad: 16px; }
  .hero h1 { font-size: 1.75rem; }
  .badge { font-size: .6875rem; padding: 4px 8px; }
}
@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .hero { padding-top: 5rem; padding-bottom: clamp(4rem, 8vw, 6rem); }
}

/* ── SITEMAP PAGE ── */
.sitemap-list { columns: 2; column-gap: 40px; }
.sitemap-list li { margin-bottom: 8px; break-inside: avoid; list-style: none; }
.sitemap-list a { font-size: 1rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; }
.sitemap-list a:hover { color: var(--accent); }
.sitemap-list a::before { content: '→'; font-family: var(--font-mono); font-size: .875rem; color: var(--accent); }
@media (max-width: 640px) { .sitemap-list { columns: 1; } }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

