/* Inter — self-hosted (Google Fonts v20 variable subsets). Turkish glyphs (ğ Ğ ş Ş İ) live in latin-ext. */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --accent: #E5E515;
    --accent-soft: #f1f15c;
    --bg: #10110e;
    --surface: #171814;
    --surface-2: #1e201a;
    --line: rgba(255,255,255,.1);
    --line-strong: rgba(229,229,21,.28);
    --text: #f5f4ed;
    --muted: #a8aa9f;
    --danger: #ff7878;
    --success: #a8df83;
    --radius: 24px;
    --shadow: 0 30px 80px rgba(0,0,0,.32);
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }

.public-page {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
        var(--bg);
    background-size: 72px 72px;
}
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.page-glow { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(20px); opacity: .12; }
.page-glow-one { width: 600px; height: 600px; right: -280px; top: -270px; background: var(--accent); }
.page-glow-two { width: 400px; height: 400px; left: -250px; bottom: -100px; background: #979723; opacity: .07; }

.site-header {
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2;
}
.brand { display: inline-flex; align-items: center; color: var(--text); text-decoration: none; }
.brand-logo { display: block; height: 44px; width: auto; }
.header-meta { display: flex; align-items: center; gap: 10px; }
.header-call { display: inline-flex; align-items: center; gap: 11px; height: 42px; padding: 0 17px 0 14px; border: 1px solid var(--line); border-radius: 100px; color: var(--text); text-decoration: none; transition: .2s ease; }
.header-call:hover, .header-call:focus-visible { border-color: var(--line-strong); background: rgba(229,229,21,.06); }
.header-call svg { width: 16px; height: 16px; flex: 0 0 16px; fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.header-call span { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.header-call small { color: var(--muted); font-size: 8px; letter-spacing: .16em; }
.header-call strong { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.header-social { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: .2s ease; }
.header-social:hover, .header-social:focus-visible { color: var(--accent); border-color: var(--line-strong); background: rgba(229,229,21,.06); }
.header-social svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.hero { min-height: calc(100vh - 164px); padding: 74px 0 88px; display: grid; grid-template-columns: .87fr 1.13fr; align-items: start; gap: clamp(54px, 7vw, 108px); position: relative; }
.hero-copy { padding-top: 27px; position: sticky; top: 32px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 700; }
.eyebrow span { display: block; width: 32px; height: 1px; background: var(--accent); }
.hero h1 { margin: 28px 0 24px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(53px, 5.6vw, 78px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.hero h1 em { color: var(--accent); font-weight: 400; }
.hero-text { max-width: 510px; color: #b8baaf; font-size: 17px; line-height: 1.75; margin: 0; }
.hero-steps { --step-gap: 22px; list-style: none; margin: 42px 0 48px; padding: 0; max-width: 510px; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--step-gap); counter-reset: none; }
.hero-steps li { position: relative; display: flex; flex-direction: column; gap: 14px; }
/* hairline that carries the eye from one step to the next; -gap reaches the next column */
.hero-steps li:not(:last-child)::after { content: ''; position: absolute; top: 19px; left: 48px; right: calc(var(--step-gap) * -1); height: 1px; background: linear-gradient(90deg, rgba(229,229,21,.34), rgba(229,229,21,.05)); }
.step-no { display: inline-flex; align-items: center; justify-content: center; width: 39px; height: 39px; flex: 0 0 39px; border: 1px solid rgba(229,229,21,.3); border-radius: 50%; background: rgba(229,229,21,.06); color: var(--accent); font-family: Georgia, serif; font-style: italic; font-size: 17px; line-height: 1; }
.step-text { color: #b1b3aa; font-size: 13px; font-weight: 500; line-height: 1.5; }

.voucher-mini { aspect-ratio: 1.78; max-width: 470px; display: grid; grid-template-columns: 34% 66%; background: #efeee7; color: #302c28; border: 7px solid #202119; box-shadow: var(--shadow); position: relative; overflow: hidden; transform: rotate(-1.4deg); transition: transform .35s ease; }
.voucher-mini:hover { transform: rotate(0) translateY(-4px); }
.voucher-mini-brand { background: #222119; color: #e8e3d7; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; font-family: Georgia, serif; font-size: 11px; letter-spacing: .14em; }
.voucher-mini-brand small { font-family: Arial, sans-serif; font-size: 5px; color: #aaa395; letter-spacing: .2em; }
.mini-mark { display: block; width: 38px; height: auto; margin-bottom: 12px; }
.voucher-mini-content { padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.mini-kicker { color: #8b867c; font-size: 7px; letter-spacing: .25em; }
.voucher-mini-content strong { margin: 9px 0 8px; font-family: Georgia, serif; font-size: clamp(24px, 2.3vw, 34px); font-weight: 400; }
.voucher-mini-content p { margin: 0; color: #777269; font-size: 9px; line-height: 1.5; }
.voucher-mini > svg { position: absolute; right: -5px; bottom: -5px; width: 95px; opacity: .17; }
.voucher-mini > svg path { fill: none; stroke: #62601c; stroke-width: 1; }

.form-card { background: rgba(24,25,21,.92); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(28px, 4vw, 48px); position: relative; backdrop-filter: blur(16px); }
.form-card::before { content: ''; position: absolute; top: -1px; left: 52px; right: 52px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .65; }
.form-heading { border-bottom: 1px solid var(--line); padding-bottom: 29px; margin-bottom: 29px; }
.step-pill { display: inline-block; color: var(--accent); font-size: 9px; letter-spacing: .18em; padding: 7px 10px; background: rgba(229,229,21,.08); border: 1px solid rgba(229,229,21,.16); border-radius: 100px; }
.form-heading h2 { font-family: Georgia, serif; font-size: clamp(30px, 3vw, 40px); font-weight: 400; margin: 17px 0 9px; letter-spacing: -.02em; }
.form-heading p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.65; max-width: 510px; }
.trap-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

fieldset { border: 0; margin: 0; padding: 0; }
.field > label { display: block; color: #d8d9d0; margin-bottom: 9px; font-size: 11px; letter-spacing: .055em; font-weight: 650; }
.field label span { color: #71746a; font-weight: 400; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 15px; row-gap: 19px; }
.field-wide { margin-bottom: 19px; }
.input-shell { height: 50px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; background: #12130f; transition: .2s ease; }
.input-shell:focus-within { border-color: rgba(229,229,21,.65); box-shadow: 0 0 0 3px rgba(229,229,21,.07); background: #141510; }
.input-shell svg { width: 17px; height: 17px; flex: 0 0 17px; fill: none; stroke: #777a70; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.input-shell input, .input-shell select { width: 100%; height: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 13px; min-width: 0; }
.input-shell select { appearance: none; cursor: pointer; background-color: #12130f; background-image: linear-gradient(45deg, transparent 50%, #777a70 50%), linear-gradient(135deg, #777a70 50%, transparent 50%); background-position: calc(100% - 7px) calc(50% - 2px), calc(100% - 2px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 22px; }
.input-shell select option, .input-shell select optgroup { background-color: #12130f; color: var(--text); }
.input-shell select option[value=""], .input-shell select option:disabled { color: var(--muted); }
.input-shell input::placeholder, textarea::placeholder { color: #55584f; }
input[type="date"] { color-scheme: dark; }
.input-shell.has-select { position: relative; }
/* standalone host, generated when the select has no .input-shell around it */
.cselect { position: relative; display: block; }
.select-native { display: none; }
.select-trigger { width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0; border: 0; background: transparent; color: var(--text); font-size: 13px; text-align: left; cursor: pointer; }
.select-trigger:focus { outline: 0; }
.select-trigger:disabled { opacity: .45; cursor: default; }
.select-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-value.is-placeholder { color: #55584f; }
.select-caret { width: 17px; height: 17px; flex: 0 0 17px; fill: none; stroke: #777a70; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.select-trigger[aria-expanded="true"] .select-caret { transform: rotate(180deg); }
.select-menu { position: absolute; z-index: 30; top: calc(100% + 7px); left: -1px; right: -1px; margin: 0; padding: 6px; list-style: none; background: var(--surface-2); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 24px 52px rgba(0,0,0,.55); max-height: 262px; overflow-y: auto; overscroll-behavior: contain; animation: select-drop .16s ease both; }
.select-menu.is-up { top: auto; bottom: calc(100% + 7px); animation-name: select-drop-up; }
@keyframes select-drop { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
@keyframes select-drop-up { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.select-option { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 40px; padding: 0 12px; border-radius: 9px; color: #d3d5cb; font-size: 13px; cursor: pointer; transition: background .14s ease, color .14s ease; }
.select-option[data-active="true"] { background: rgba(255,255,255,.055); color: var(--text); }
.select-option[aria-selected="true"] { color: var(--accent); }
.select-menu .select-option svg { width: 15px; height: 15px; flex: 0 0 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.select-menu .select-option[aria-selected="true"] svg { opacity: 1; }
.field.invalid .select-caret { stroke: var(--danger); }
.field.invalid .input-shell, .field.invalid textarea { border-color: rgba(255,120,120,.62); }
.error-text { display: none; min-height: 14px; margin-top: 5px; color: var(--danger); font-size: 10px; }
.field.invalid .error-text, .consent-error.active { display: block; }
textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: #12130f; color: var(--text); padding: 14px; outline: 0; resize: vertical; min-height: 88px; font-size: 13px; line-height: 1.5; }
textarea:focus { border-color: rgba(229,229,21,.65); box-shadow: 0 0 0 3px rgba(229,229,21,.07); }
.char-count { float: right; margin-top: -21px; margin-right: 11px; position: relative; color: #5d6057; font-size: 9px; }

.optional-toggle { margin: 24px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.optional-toggle > button { width: 100%; height: 50px; padding: 0; border: 0; background: transparent; color: #b6b8ae; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.optional-toggle > button:hover { color: var(--accent); }
.optional-toggle > button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s; }
.optional-toggle > button[aria-expanded="true"] svg { transform: rotate(180deg); }
#optionalFields { padding: 2px 0 20px; }
.optional-grid { margin-bottom: 18px; }
.optional-grid .input-shell { padding-left: 14px; }

.consent-check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; margin: 22px 0 0; align-items: start; color: #8d9085; font-size: 10.5px; line-height: 1.55; cursor: pointer; }
.consent-check input { position: absolute; opacity: 0; }
.check-ui { width: 18px; height: 18px; border: 1px solid #55584e; border-radius: 5px; display: flex; align-items: center; justify-content: center; margin-top: 1px; transition: .2s; }
.check-ui svg { width: 13px; fill: none; stroke: #11120f; stroke-width: 2.2; opacity: 0; }
.consent-check input:checked + .check-ui { background: var(--accent); border-color: var(--accent); }
.consent-check input:checked + .check-ui svg { opacity: 1; }
.consent-check input:focus-visible + .check-ui { outline: 2px solid #fff; outline-offset: 2px; }
.consent-error { margin-left: 28px; }
.submit-button { width: 100%; height: 57px; border: 0; border-radius: 12px; background: var(--accent); color: #14150e; font-weight: 750; margin-top: 23px; padding: 0 20px; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 12px 35px rgba(229,229,21,.12); transition: transform .2s, background .2s, box-shadow .2s; }
.submit-button:hover { background: var(--accent-soft); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(229,229,21,.18); }
.submit-button:active { transform: translateY(0); }
.submit-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.submit-button[disabled] { opacity: .7; cursor: wait; transform: none; }
.submit-button.loading svg { animation: slide .8s ease-in-out infinite alternate; }
@keyframes slide { to { transform: translateX(5px); } }
.form-footnote { display: flex; justify-content: center; align-items: center; gap: 6px; color: #62655c; font-size: 9px; text-align: center; margin: 14px 0 0; }
.form-footnote svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; }

.site-footer { border-top: 1px solid var(--line); min-height: 60px; display: flex; justify-content: space-between; align-items: center; color: #61645a; font-size: 10px; letter-spacing: .08em; }

.success-overlay { position: fixed; inset: 0; z-index: 30; background: rgba(4,5,3,.78); backdrop-filter: blur(10px); padding: 24px; display: grid; place-items: center; }
.success-overlay[hidden] { display: none; }
.success-card { width: min(460px, 100%); border: 1px solid rgba(229,229,21,.26); background: #191a15; border-radius: 24px; padding: 44px; text-align: center; box-shadow: 0 40px 110px rgba(0,0,0,.6); animation: modal-in .35s ease both; }
@keyframes modal-in { from { transform: translateY(15px) scale(.98); opacity: 0; } }
.success-icon { width: 61px; height: 61px; margin: 0 auto 20px; background: var(--accent); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 0 0 9px rgba(229,229,21,.07); }
.success-icon svg { width: 32px; fill: none; stroke: #15160e; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.success-kicker { color: var(--accent); font-size: 9px; letter-spacing: .2em; font-weight: 700; }
.success-card h2 { font: 400 34px/1.1 Georgia, serif; margin: 12px 0 14px; }
.success-card > p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; }
.reference-box { margin: 26px 0; border: 1px dashed #4a4d43; border-radius: 12px; padding: 14px; display: flex; justify-content: space-between; align-items: center; }
.reference-box span { color: #74776c; font-size: 10px; }
.reference-box strong { color: var(--accent); font-family: ui-monospace, monospace; letter-spacing: .07em; }
.success-card button { width: 100%; height: 48px; background: var(--accent); color: #15160e; font-weight: 700; border: 0; border-radius: 10px; }

.reveal { animation: reveal .7s ease both; }
.reveal-delay { animation-delay: .12s; }
@keyframes reveal { from { opacity: 0; transform: translateY(16px); } }

@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; padding-top: 42px; }
    .hero-copy { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; align-items: center; }
    .hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-text, .hero-copy .hero-steps { grid-column: 1; }
    .voucher-mini { grid-column: 2; grid-row: 1 / span 4; }
    .hero h1 { font-size: clamp(48px, 8vw, 70px); }
    .hero-steps { --step-gap: 16px; margin-bottom: 0; }
}

@media (max-width: 680px) {
    .shell { width: min(100% - 30px, 1240px); }
    .site-header { height: 82px; }
    .header-call { padding: 0; width: 42px; justify-content: center; }
    .header-call span { display: none; }
    .hero { display: block; padding: 42px 0 60px; }
    .hero-copy { display: block; padding: 0; }
    .hero h1 { font-size: clamp(47px, 15vw, 65px); }
    .hero-text { font-size: 15px; }
    .hero-steps { grid-template-columns: 1fr; --step-gap: 0px; margin: 32px 0; }
    .hero-steps li { flex-direction: row; align-items: flex-start; gap: 15px; padding-bottom: 21px; }
    .hero-steps li:not(:last-child)::after { top: 45px; bottom: 5px; left: 19px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, rgba(229,229,21,.34), rgba(229,229,21,.05)); }
    .step-text { padding-top: 10px; }
    .voucher-mini { margin: 0 5px 46px; }
    .voucher-mini-content { padding: 20px; }
    .brand-logo { height: 33px; }
    .form-card { padding: 27px 20px; border-radius: 19px; }
    .form-card::before { left: 25px; right: 25px; }
    .form-grid { grid-template-columns: 1fr; }
    .optional-grid { gap: 18px; }
    .success-card { padding: 35px 24px; }
    .site-footer { flex-direction: column; justify-content: center; gap: 7px; text-align: center; }
}

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

/* Readability pass: keep secondary copy comfortably legible on dark displays. */
.header-call small { color: #b7b9b0; font-size: 9px; }
.eyebrow { font-size: 12px; }
.hero-text { color: #c9cbc2; font-size: 18px; }
.voucher-mini-brand { font-size: 13px; }
.voucher-mini-brand small { color: #c1bbaf; font-size: 7px; }
.mini-kicker { color: #777269; font-size: 9px; font-weight: 700; }
.voucher-mini-content p { color: #67635c; font-size: 11px; }
.step-pill { font-size: 10px; }
.form-heading p { color: #bfc1b8; font-size: 14px; }
.field > label { color: #e5e6de; font-size: 13px; }
.input-shell input, .input-shell select, .select-trigger { font-size: 14px; }
.select-value.is-placeholder { color: #85887e; }
.select-option { color: #dcded4; font-size: 14px; }
.input-shell input::placeholder, textarea::placeholder { color: #85887e; opacity: 1; }
.input-shell svg { stroke: #a0a399; }
.field label span { color: #9b9e94; }
.error-text { font-size: 12px; }
textarea { font-size: 14px; }
.char-count { color: #8e9187; font-size: 11px; }
.optional-toggle > button { color: #c8cac1; font-size: 13px; }
.consent-check { color: #b8bab1; font-size: 12px; line-height: 1.55; }
.form-footnote { color: #92958b; font-size: 11px; }
.site-footer { color: #94978d; font-size: 11px; }

@media (max-width: 680px) {
    .hero-text { font-size: 16px; }
    .consent-check { font-size: 11.5px; }
}
