/* Sivilde App Styles — Consistent with landing page design */
/* Fonts: Space Grotesk (display) + DM Sans (body) */

/* ============================================= */
/* ===== SELF-HOSTED FONTS                    ===== */
/* ============================================= */

/* DM Sans — latin-ext (Turkish ğ, ş, İ, Ğ, Ş) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/static/fonts/dm-sans-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;
}

/* DM Sans — latin (ASCII + ç, ö, ü, ı) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/static/fonts/dm-sans-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;
}

/* Space Grotesk — latin-ext (Turkish ğ, ş, İ, Ğ, Ş) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('/static/fonts/space-grotesk-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;
}

/* Space Grotesk — latin (ASCII + ç, ö, ü, ı) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('/static/fonts/space-grotesk-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;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink: #1a1d17;
    --olive-deep: #1e2819;
    --olive: #344128;
    --olive-vibrant: #3d5230;
    --olive-mid: #4a5e3a;
    --sage: #7a8f6a;
    --sage-light: #a3b491;

    --amber: #d4a031;
    --amber-bright: #e8b84a;
    --amber-pale: #f5e6c4;
    --amber-glow: rgba(218,165,32,.25);

    --cream: #f8f6f1;
    --warm-white: #fdfcf9;
    --warm-gray: #e8e5de;
    --text-body: #2e2e2a;
    --text-muted: #555550;
    --text-faint: #77776f;
    --error: #b8433a;
    --success: #3a7a52;

    --r: 8px;
    --r-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Type scale */
    --fs-h1: 2rem;
    --ls-h1: -.03em;
    --fs-h2: 1.5rem;
    --ls-h2: -.02em;
    --fs-h3: 1.125rem;
    --ls-h3: -.01em;
    --fs-body: 1rem;
    --fs-small: .875rem;

    /* Spacing scale */
    --s-1: .25rem;
    --s-2: .5rem;
    --s-3: .75rem;
    --s-4: 1rem;
    --s-5: 1.5rem;
    --s-6: 2rem;
    --s-7: 2.5rem;
    --s-8: 3rem;

    /* Accessibility + detail */
    --amber-text: #a17820;
    --line: #d8d4cb;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--olive-mid); }
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER ===== */
.app-header {
    background: var(--olive-deep);
    padding: .75rem 0;
}
.app-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.app-logo {
    font-family: var(--font-display);
    color: rgba(255,255,255,.95);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: -.02em;
}
.app-logo:hover { text-decoration: none; }
.app-nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.app-nav-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 600;
}
.app-nav-links a:hover { color: var(--warm-white); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: var(--r);
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    text-decoration: none;
    min-height: 48px;
    transition: all .2s;
    line-height: 1.3;
}
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-primary { background: var(--olive-mid); color: var(--warm-white); border-color: var(--olive-mid); }
.btn-primary:hover { background: var(--olive-deep); border-color: var(--olive-deep); text-decoration: none; }
.btn--full { display: block; width: 100%; }
.btn-sm {
    padding: .4rem .9rem;
    font-size: .82rem;
    min-height: 36px;
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
    border-radius: 6px;
}
.btn-sm:hover { background: var(--amber-bright); border-color: var(--amber-bright); text-decoration: none; }
.btn-link {
    background: none;
    border: none;
    color: rgba(255,255,255,.65);
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}
.btn-link:hover { color: var(--warm-white); text-decoration: underline; }
.btn-danger {
    background: transparent;
    border: 1.5px solid var(--error);
    color: var(--error);
    font-size: .82rem;
    padding: .3rem .6rem;
    min-height: auto;
}
.btn-danger:hover { background: #fdf0ef; }

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}
.section-sub { color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; font-size: .95rem; }

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 2rem;
}

/* ===== CARDS ===== */
.card {
    background: var(--warm-white);
    border: 1px solid var(--warm-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
}
.card h2, .card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--warm-gray);
    letter-spacing: -.01em;
}

/* ===== FORMS ===== */
label {
    display: block;
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem;
}
.label-hint {
    color: var(--text-faint);
    font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="password"],
select {
    width: 100%;
    padding: .8rem 1rem;
    background: var(--warm-white);
    border: 1.5px solid var(--warm-gray);
    border-radius: var(--r);
    color: var(--text-body);
    font-size: 1rem;
    font-family: var(--font-body);
    min-height: 48px;
    margin-bottom: .75rem;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .15s;
}
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555550' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
input:focus, select:focus {
    outline: none;
    border-color: var(--olive-mid);
    box-shadow: 0 0 0 3px rgba(74,94,58,.1);
}
input::placeholder { color: var(--text-faint); }
small {
    display: block;
    font-size: .84rem;
    color: var(--text-muted);
    margin-top: -.5rem;
    margin-bottom: .75rem;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: .85rem 1.5rem;
    border: none;
    border-radius: var(--r);
    background: var(--olive-mid);
    color: var(--warm-white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 48px;
    transition: background .15s;
}
button[type="submit"]:hover { background: var(--olive-deep); }
button[type="submit"]:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ===== AUTH SPLIT-SCREEN LAYOUT ===== */
.auth-split {
    display: flex;
    min-height: calc(100vh - 52px - 56px);
    margin: -2rem;
}

.auth-panel {
    display: none;
    width: 45%;
    background: var(--olive-deep);
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}
.auth-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212,160,49,.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 10% 90%, rgba(122,143,106,.18) 0%, transparent 60%),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,.018) 60px,
        rgba(255,255,255,.018) 61px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,.018) 60px,
        rgba(255,255,255,.018) 61px
      );
    pointer-events: none;
}
.auth-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212,160,49,.15) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.auth-panel-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 3.5rem 3.5rem 3.5rem 4rem;
}

.auth-panel-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: .5;
}

.auth-panel-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 1.25rem;
}

.auth-panel-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-bottom: 3rem;
    max-width: 400px;
    font-weight: 300;
}

.auth-panel-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: rgba(255,255,255,.8);
}

.auth-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.auth-panel-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(255,255,255,.1);
    padding-left: 0;
    margin-left: 18px;
}

.auth-step {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1rem 0;
    position: relative;
    opacity: .55;
    transition: opacity .3s, transform .3s;
}

.auth-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.5);
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
    margin-left: -19px;
    transition: all .3s;
}

.auth-step div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding-top: .35rem;
}

.auth-step strong {
    font-family: var(--font-display);
    font-size: .95rem;
    color: rgba(255,255,255,.9);
    letter-spacing: -.01em;
}

.auth-step span {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    line-height: 1.45;
}

/* Code-style inputs (ID, PIN) */
.input-code {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}
.input-code::placeholder {
    letter-spacing: 2px;
    font-weight: 400;
    opacity: .4;
}

/* PIN field with toggle */
.input-pin-wrap {
    position: relative;
}
.input-pin-wrap .input-code {
    padding-right: 3rem;
}
.pin-toggle {
    position: absolute;
    right: .6rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-faint);
    padding: .35rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s;
    min-width: 44px;
    min-height: 44px;
}
.pin-toggle:hover { color: var(--olive-mid); }
.pin-toggle:focus-visible { outline: 2px solid var(--amber); outline-offset: 1px; }
.pin-toggle .pin-toggle-hide { display: none; }
.pin-toggle--visible .pin-toggle-show { display: none; }
.pin-toggle--visible .pin-toggle-hide { display: block; }

/* Forgot credentials help */
.auth-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    margin-top: 1.25rem;
    font-size: .82rem;
    color: var(--text-faint);
    text-align: center;
    flex-wrap: wrap;
}
.auth-help svg {
    color: var(--text-faint);
    flex-shrink: 0;
}
.auth-help a {
    color: var(--olive-mid);
    font-weight: 600;
}

/* Auth form side */
.auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: var(--cream);
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
}

.auth-form-wrapper--register {
    max-width: 560px;
}

.auth-form-header {
    margin-bottom: 2rem;
}

.auth-form-header h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: .5rem;
}

.auth-form-header p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-row {
    display: flex;
    gap: 1rem;
}

/* Form sections */
.form-section {
    margin-bottom: .5rem;
}
.form-section-header {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--olive-deep);
}
.form-section-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--olive-deep);
    color: var(--amber);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0;
}
.form-section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
}
.form-section-hint {
    font-size: .78rem;
    color: var(--text-faint);
    margin-left: auto;
}

/* Field errors */
.field-error {
    font-size: .82rem;
    color: var(--error);
    min-height: 0;
    margin-top: -.4rem;
    margin-bottom: .25rem;
}
.field-error:empty { display: none; }
input.is-invalid, select.is-invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(184,67,58,.08);
}

/* Mobile step indicator (hidden on desktop where auth-panel shows) */
.mobile-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.75rem;
    padding: .75rem 0;
}
.mobile-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}
.mobile-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    background: var(--warm-gray);
    color: var(--text-faint);
    border: 2px solid transparent;
    transition: all .25s;
}
.mobile-step--active .mobile-step-dot {
    background: var(--olive-deep);
    color: var(--amber);
    border-color: var(--olive-deep);
    box-shadow: 0 0 0 3px rgba(52,65,40,.15);
}
.mobile-step-label {
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-faint);
    letter-spacing: .02em;
}
.mobile-step--active .mobile-step-label {
    color: var(--olive-mid);
}
.mobile-step--done .mobile-step-dot {
    background: var(--success);
    color: var(--warm-white);
}
.mobile-step--done .mobile-step-label {
    color: var(--success);
}
.mobile-step-line {
    width: 2.5rem;
    height: 2px;
    background: var(--warm-gray);
    margin: 0 .35rem;
    margin-bottom: 1.2rem; /* offset for label height */
    transition: background .3s;
}
.mobile-step-line--done {
    background: var(--success);
}

/* Desktop side panel active step highlighting */
.auth-step--active {
    opacity: 1;
}
.auth-step--active .auth-step-num {
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(212,160,49,.2), 0 2px 8px rgba(212,160,49,.3);
    transform: scale(1.1);
}
.auth-step--done {
    opacity: .7;
}
.auth-step--done .auth-step-num {
    background: var(--success);
    color: var(--warm-white);
    border-color: var(--success);
}

/* Step navigation buttons */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
}
.btn-step {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1.5rem;
    border-radius: var(--r-lg);
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    min-height: 44px;
}
.btn-step--next {
    background: var(--olive-deep);
    color: var(--warm-white);
    margin-left: auto;
    padding: .75rem 2rem;
    font-size: 1rem;
}
.btn-step--next:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26,29,23,.3);
}
.btn-step--back {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--warm-gray);
}
.btn-step--back:hover {
    border-color: var(--olive-mid);
    color: var(--olive-mid);
}
.step-nav-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
}
.btn-step-skip {
    background: none;
    border: none;
    color: var(--text-faint);
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    padding: .5rem;
    min-height: 44px;
    transition: color .15s;
}
.btn-step-skip:hover { color: var(--olive-mid); }

/* Payment loading overlay */
.payment-loading[hidden] { display: none; }
.payment-loading {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26,29,23,.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.payment-loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: var(--amber);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.payment-loading-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-white);
    text-align: center;
}
.payment-loading-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    text-align: center;
    margin-top: -.75rem;
}

.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .9rem 1.5rem;
    border: none;
    border-radius: var(--r-lg);
    background: var(--olive-mid);
    color: var(--warm-white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 52px;
    transition: all .2s;
    margin-top: .75rem;
}
.btn-auth:hover { background: var(--olive-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-auth:active { transform: translateY(0); }
.btn-auth:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-auth-icon { flex-shrink: 0; }

/* Amber payment variant */
.btn-auth--pay {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-bright) 100%);
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 700;
    min-height: 56px;
    box-shadow: 0 4px 16px rgba(212,160,49,.25);
    letter-spacing: -.01em;
}
.btn-auth--pay:hover {
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber) 100%);
    color: var(--ink);
    box-shadow: 0 8px 28px rgba(212,160,49,.4);
    transform: translateY(-2px);
}
.btn-auth--pay:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Commit-moment separator — wraps pay button + trust line with a top border
   so the final action feels distinct from the consent checkboxes above. */
.form-commit-wrap {
    margin-top: var(--s-5);
    padding-top: var(--s-5);
    border-top: 1px solid var(--line);
}

/* Trust signal */
.auth-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-top: .6rem;
    font-size: .8rem;
    color: var(--text-faint);
}
.auth-trust svg {
    color: var(--sage);
    flex-shrink: 0;
}

.auth-switch {
    text-align: center;
    margin-top: 1.25rem;
    font-size: .9rem;
    color: var(--text-muted);
}
.auth-switch a { font-weight: 600; }

@media (min-width: 900px) {
    .auth-panel { display: flex; }
    .auth-split { margin: -2rem; }
    .mobile-steps { display: none; }
}

@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: .25rem; }
    .auth-form-side { padding: 1.5rem; align-items: flex-start; padding-top: 2rem; }
    .auth-form-header { margin-bottom: 1.25rem; }
    .auth-form-header h1 { font-size: 1.6rem; }
    .auth-form-header p { font-size: .88rem; }
}

/* ===== PANEL / DASHBOARD ===== */
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: .25rem;
}

.panel-subtitle {
    font-size: .95rem;
    color: var(--text-muted);
}

/* Countdown banner */
.countdown-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--warm-white) 60%, var(--amber-pale));
    border: 1px solid var(--warm-gray);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.countdown-info {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
}
.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-faint);
    margin-bottom: .25rem;
}
.countdown-label svg { color: var(--sage); }
.countdown-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--olive-deep);
    letter-spacing: -.03em;
    line-height: 1;
}
.countdown-bar-wrap {
    flex: 1;
    min-width: 0;
}
.countdown-bar {
    height: 8px;
    background: var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: .4rem;
}
.countdown-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--olive-mid), var(--sage));
    border-radius: 4px;
    transition: width .6s var(--ease-out-expo, ease-out);
    min-width: 4px;
}
.countdown-dates {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--text-faint);
    font-family: var(--font-display);
    font-weight: 500;
}

@media (max-width: 600px) {
    .countdown-banner {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        text-align: left;
    }
    .countdown-info { text-align: left; display: flex; align-items: center; gap: .75rem; }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 800px) {
    .panel-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.panel-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-card {
    background: var(--warm-white);
    border: 1px solid var(--warm-gray);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.panel-card-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--warm-gray);
}

.panel-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cream);
    border-radius: 8px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--olive-mid);
}

.panel-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: 0;
    padding: 0;
    border: none;
}

/* Service detail grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.service-detail-label {
    font-size: .8rem;
    color: var(--text-faint);
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.service-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    font-family: var(--font-display);
}

.service-detail-value--code {
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 1px;
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .15rem .5rem;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.status-badge--active {
    background: rgba(58,122,82,.1);
    color: var(--success);
}
.status-badge--active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}
.status-badge--ended {
    background: rgba(85,85,80,.08);
    color: var(--text-faint);
}

/* Commands grid */
.commands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}

.command-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .55rem;
    border-radius: var(--r);
    background: var(--cream);
    font-size: .82rem;
    color: var(--text-muted);
    transition: background .15s;
}
.command-item:hover { background: rgba(52,65,40,.06); }

.command-shortcut {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--warm-gray);
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    color: var(--text-faint);
    flex-shrink: 0;
}

.command-item code {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: .78rem;
    color: var(--olive-mid);
    background: transparent;
    padding: 0;
}

.commands-hint {
    margin-top: .75rem;
    padding-top: .6rem;
    border-top: 1px solid var(--warm-gray);
    font-size: .78rem;
    color: var(--text-faint);
    text-align: center;
}

/* Settings form fields */
.settings-field {
    margin-bottom: .25rem;
}
.settings-field small {
    margin-top: -.35rem;
}
.settings-save {
    margin-top: .5rem;
}

/* Contacts */
.contact-phone {
    color: var(--text-muted);
}
.contacts-empty {
    color: var(--text-muted);
    font-size: .9rem;
    padding: .5rem 0;
}

/* ===== PROGRESS BAR ===== */
progress {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 1rem;
    appearance: none;
    -webkit-appearance: none;
}
progress::-webkit-progress-bar { background: var(--warm-gray); border-radius: 3px; }
progress::-webkit-progress-value { background: var(--olive-mid); border-radius: 3px; }
progress::-moz-progress-bar { background: var(--olive-mid); border-radius: 3px; }

/* ===== FLASH MESSAGES ===== */
.flash {
    padding: .75rem 1rem;
    border-radius: var(--r);
    margin-bottom: 1rem;
    font-size: .95rem;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== CONTACT ROWS ===== */
.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid var(--warm-gray);
    gap: .5rem;
}
.contact-alias {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--ink);
}

/* ===== STEPS ===== */
.steps {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.step { text-align: center; max-width: 180px; }
/* ===== DETAILS / FAQ ===== */
details {
    border: 1px solid var(--warm-gray);
    border-radius: var(--r);
    margin-bottom: .5rem;
    background: var(--warm-white);
}
details summary {
    padding: .85rem 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    min-height: 48px;
    display: flex;
    align-items: center;
}
details[open] summary { border-bottom: 1px solid var(--warm-gray); }
details > :not(summary) { padding: .75rem 1rem; font-size: .95rem; color: var(--text-muted); }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; }
.checklist li {
    padding: .4rem 0;
    font-size: .9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}
.check-done { background: var(--success); color: var(--warm-white); }
.check-empty { background: var(--warm-gray); color: var(--text-faint); }

/* ===== TABLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
td, th {
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--warm-gray);
    font-size: .9rem;
    text-align: left;
}
code {
    background: var(--cream);
    padding: .15rem .4rem;
    border-radius: 4px;
    font-size: .9em;
}

/* ===== CONFIRMATION PAGE ===== */
.confirm-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.app-footer {
    background: var(--ink);
    text-align: center;
    padding: 1.25rem 0;
    font-size: .84rem;
    color: rgba(255,255,255,.6);
    margin-top: auto;
}
.app-footer a { color: rgba(255,255,255,.5); }
.app-footer a:hover { color: rgba(255,255,255,.85); }

/* ===== KVKK DATA RIGHTS ===== */
.kvkk-rights-text {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
    line-height: 1.5;
}
.btn-outline {
    display: inline-block;
    padding: .5rem 1rem;
    border: 1.5px solid var(--olive);
    color: var(--olive);
    border-radius: var(--r);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}
.btn-outline:hover {
    background: var(--olive);
    color: var(--cream);
}

/* ===== CONSENT CHECKBOX ===== */
.form-group--consent { margin-top: .5rem; }
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem;
    color: var(--text-body);
    cursor: pointer;
    line-height: 1.5;
}
.consent-label input[type="checkbox"] {
    margin-top: .25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--olive);
    flex-shrink: 0;
}
.consent-label a {
    color: var(--olive);
    text-decoration: underline;
    font-weight: 500;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    max-width: 720px;
    margin: 2rem auto;
    padding: 2rem;
    line-height: 1.7;
    color: var(--text-body);
}
.legal-page h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: .5rem;
    color: var(--olive-deep);
}
.legal-meta {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: var(--olive);
}
.legal-page h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: var(--olive-mid);
}
.legal-page p { margin-bottom: .75rem; }
.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.legal-page li { margin-bottom: .4rem; }
.legal-page a { color: var(--olive); }
.legal-warning {
    background: #fdf6e3;
    border-left: 4px solid var(--amber);
    padding: 1rem 1.25rem;
    border-radius: var(--r);
    margin: 1rem 0;
}
.legal-warning p { margin-bottom: 0; }

/* ===== LEGAL AGREEMENT MODAL ===== */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
}
.legal-modal[hidden] { display: none; }
.legal-modal--active {
    opacity: 1;
    visibility: visible;
}
.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 29, 23, .6);
}
.legal-modal-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    background: var(--warm-white);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
    overflow: hidden;
    transform: translateY(12px);
    transition: transform .2s;
}
.legal-modal--active .legal-modal-container {
    transform: translateY(0);
}
.legal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--warm-gray);
    flex-shrink: 0;
}
.legal-modal-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--olive-deep);
    margin: 0;
}
.legal-modal-close-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    border-radius: var(--r);
    color: var(--text-muted);
    cursor: pointer;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.legal-modal-close-x:hover {
    background: var(--warm-gray);
    color: var(--ink);
}
.legal-modal-close-x:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 2px;
}
.legal-modal-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.legal-modal-content .legal-page {
    margin: 0;
    padding: 1.5rem 1.5rem 1rem;
    max-width: none;
}
.legal-modal-content .legal-page h1 {
    display: none; /* title is in the modal header */
}
.legal-modal-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--warm-gray);
    background: var(--cream);
    flex-shrink: 0;
}
.legal-modal-hint {
    flex: 1;
    font-size: .82rem;
    color: var(--text-muted);
}
.legal-modal-accept {
    background: var(--olive-mid);
    color: var(--warm-white);
    border: none;
    border-radius: var(--r);
    padding: .65rem 1.5rem;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    transition: background .15s, opacity .15s;
}
.legal-modal-accept:hover:not(:disabled) {
    background: var(--olive-deep);
}
.legal-modal-accept:disabled {
    opacity: .45;
    cursor: not-allowed;
}
.legal-modal-accept:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 2px;
}

/* Mobile: full-screen modal */
@media (max-width: 600px) {
    .legal-modal { padding: 0; }
    .legal-modal-container {
        max-width: none;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }
    .legal-modal-content .legal-page { padding: 1.25rem; }
    .legal-modal-footer { flex-direction: column; }
    .legal-modal-accept { width: 100%; }
    .legal-modal-hint { text-align: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0s !important; }
    html { scroll-behavior: auto; }
}

/* ============================================= */
/* ===== LANDING-SPECIFIC STYLES              ===== */
/* ===== (merged from static/style.css)       ===== */
/* ============================================= */
/* NOTE: Landing-only body overrides scoped under body.landing
   so app templates keep their sticky-footer flex layout. */
body.landing {
  background: var(--warm-white);
  line-height: 1.65;
  font-size: 18px;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  display: block;
  min-height: auto;
}

body.landing a { text-decoration: none; }
body.landing a:hover { color: var(--olive); }

/* ===== UTILITY ===== */
.eyebrow {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.25rem 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  letter-spacing: -.02em;
}
.nav-logo span { color: var(--amber); }
.nav-cta {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--amber);
  border: 1.5px solid rgba(218,165,32,.45);
  padding: .45rem 1.1rem;
  border-radius: 6px;
  transition: all .3s var(--ease-bounce);
  letter-spacing: .02em;
}
.nav-cta:hover { background: rgba(218,165,32,.15); color: var(--amber-bright); border-color: var(--amber); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(218,165,32,.2); }

/* Nav scroll state */
.nav--scrolled {
  background: rgba(34,43,30,.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav { transition: background .3s, box-shadow .3s; }

/* ===== BUTTONS (landing-only — scoped to prevent leaking into app pages) ===== */
body.landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.3;
  min-height: 48px;
  letter-spacing: -.01em;
  transition: all .25s var(--ease-out-expo);
}
body.landing .btn:active { transform: scale(.97); }
body.landing .btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

body.landing .btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-bright) 100%);
  color: var(--ink);
  box-shadow: 0 2px 8px var(--amber-glow);
}
body.landing .btn-primary:hover { background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber) 100%); color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(218,165,32,.4); }

body.landing .btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--warm-white);
  border: 1.5px solid rgba(255,255,255,.25);
}
body.landing .btn-secondary:hover { border-color: rgba(255,255,255,.6); color: var(--warm-white); background: rgba(255,255,255,.12); transform: translateY(-2px); }

body.landing .btn--large { padding: 1.05rem 2.5rem; font-size: 1.05rem; }
body.landing .btn--full { display: flex; width: 100%; }

/* ===== HERO — Field Dispatch ===== */
.hero {
  background: var(--olive-deep);
  color: var(--warm-white);
  padding: 7rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: left;
  border-radius: 0;
  margin-bottom: 0;
}
/* Subtle two-anchor background — no centered highlight, no decorative line */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 88%, rgba(52,65,40,.85) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(74,94,58,.45) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

/* Corner L-brackets — dispatch frame marks, bolder for military stamp feel */
.hero-corner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0 solid rgba(212,160,49,.5);
  z-index: 2;
  pointer-events: none;
}
.hero-corner--tl { top: 20px; left: 20px; border-top-width: 3px; border-left-width: 3px; }
.hero-corner--tr { top: 20px; right: 20px; border-top-width: 3px; border-right-width: 3px; }
.hero-corner--bl { bottom: 20px; left: 20px; border-bottom-width: 3px; border-left-width: 3px; }
.hero-corner--br { bottom: 20px; right: 20px; border-bottom-width: 3px; border-right-width: 3px; }

.hero .container { position: relative; z-index: 1; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 620px; }

/* Dispatch header strip — replaces the pill eyebrow */
.hero-dispatch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,230,196,.62);
}
.hero-dispatch-tag {
  display: inline-flex;
  align-items: center;
  padding: .3rem .55rem;
  background: transparent;
  color: var(--amber);
  border: 1px solid rgba(212,160,49,.55);
  border-radius: 2px;
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}
.hero-dispatch-rule {
  flex: 0 0 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0%, rgba(212,160,49,0) 100%);
}
.hero-dispatch-body--accent {
  color: var(--amber);
  font-weight: 800;
}

/* Headline — dramatically larger, no glow, single-word amber anchor. */
.hero h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.045em;
  margin-bottom: 1.5rem;
  margin-top: 0;
  color: var(--amber-pale);
  text-wrap: balance;
  text-align: left;
}
.hero h1.hero-title .hero-title-accent {
  color: var(--amber);
  /* No glow. The color is the statement. */
}

/* Subtitle */
.hero p.hero-sub {
  font-size: 1.15rem;
  color: rgba(245,230,196,.78);
  margin: 0 0 2rem;
  max-width: 520px;
  line-height: 1.65;
  text-align: left;
}
.hero p.hero-sub strong {
  color: var(--amber-pale);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Price meta — dispatch-style inline formula, not a metric template */
.hero-pricemeta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .55rem .85rem;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(212,160,49,.22);
  border-bottom: 1px solid rgba(212,160,49,.22);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  color: rgba(245,230,196,.85);
}
.hero-pricemeta-figure {
  display: inline-flex;
  align-items: baseline;
  color: var(--amber-pale);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}
.hero-pricemeta-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(245,230,196,.55);
  margin-right: .08em;
  transform: translateY(-.35em);
  line-height: 1;
}
.hero-pricemeta-amount {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
}
.hero-pricemeta-unit {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(245,230,196,.55);
  margin-left: .2em;
}
.hero-pricemeta-op {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(212,160,49,.6);
  padding: 0 .15rem;
}
.hero-pricemeta-term {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(245,230,196,.72);
}
.hero-pricemeta-total {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--amber);
}

/* Trust strip — single pipe-separated authoritative line */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245,230,196,.55);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
}
.hero-trust-sep {
  color: rgba(212,160,49,.4);
  font-weight: 300;
  user-select: none;
}

@media (max-width: 600px) {
  .hero-corner { width: 28px; height: 28px; }
  .hero-corner--tl { top: 14px; left: 14px; }
  .hero-corner--tr { top: 14px; right: 14px; }
  .hero-corner--bl { bottom: 14px; left: 14px; }
  .hero-corner--br { bottom: 14px; right: 14px; }
  .hero-sub-detail { display: none; }
  .hero-pricemeta { gap: .4rem .6rem; }
  .hero-pricemeta-amount { font-size: 2.25rem; }
  .hero-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .hero-trust-sep { display: none; }
}

/* SMS phone mockup in hero — no glow, no float decoration on base */
.hero-phone {
  display: none; /* shown on desktop */
  position: relative;
}
.hero-phone .phone-frame {
  position: relative;
  z-index: 1;
}
.phone-frame {
  width: 320px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 40%, #111 100%);
  border-radius: 22px;
  padding: 14px 12px 10px;
  box-shadow:
    0 35px 90px rgba(0,0,0,.55),
    0 15px 35px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.1),
    0 0 60px rgba(218,165,32,.08),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: rotate(1.5deg);
  position: relative;
}
.phone-frame--mini {
  width: 100%;
  max-width: 360px;
  transform: none;
}
/* Earpiece — dark oval above screen */
.phone-earpiece {
  width: 48px;
  height: 6px;
  background: #000;
  border-radius: 4px;
  margin: 2px auto 10px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.8);
}
.phone-screen {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Navigation strip — soft keys + d-pad between screen and keypad */
.phone-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px 4px;
}
.phone-nav-softkey {
  width: 28px;
  height: 10px;
  background: rgba(255,255,255,.07);
  border-radius: 5px;
  box-shadow:
    inset 0 1px 1px rgba(0,0,0,.4),
    0 1px 0 rgba(255,255,255,.04);
}
.phone-nav-dpad {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.1) 0%, rgba(255,255,255,.03) 100%);
  box-shadow:
    inset 0 2px 3px rgba(0,0,0,.5),
    0 1px 0 rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
}
/* T9 keypad — tactile button grid */
.phone-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 4px 24px 10px;
}
.phone-keypad span {
  aspect-ratio: 2 / 1;
  background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.04) 100%);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 2px rgba(0,0,0,.4),
    0 1px 0 rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
}
.phone-header {
  background: var(--olive);
  color: rgba(255,255,255,.9);
  padding: .55rem 1rem .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.phone-header-info {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.phone-avatar {
  width: 28px;
  height: 28px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.phone-contact-name {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.phone-contact-status {
  font-size: .6rem;
  color: rgba(255,255,255,.55);
  line-height: 1.2;
}
.phone-messages {
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-height: 260px;
  flex: 1;
  background: linear-gradient(180deg, var(--cream) 0%, #f2f0eb 100%);
}
.phone-input-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem .6rem;
  background: #f2f0eb;
  border-top: 1px solid var(--warm-gray);
}
.phone-input-field {
  flex: 1;
  background: var(--warm-white);
  border: 1px solid var(--warm-gray);
  border-radius: 18px;
  padding: .4rem .8rem;
  font-size: .72rem;
  color: var(--text-faint);
  font-family: var(--font-body);
}
.phone-send-btn {
  width: 28px;
  height: 28px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* phone-home-indicator removed — basic phone has keypad instead */

.sms-time-badge {
  text-align: center;
  font-size: .62rem;
  color: var(--text-faint);
  padding: .25rem 0 .15rem;
  font-family: var(--font-body);
}

.sms-bubble {
  padding: .55rem .8rem;
  border-radius: 16px;
  font-size: .8rem;
  line-height: 1.45;
  max-width: 82%;
  font-family: var(--font-body);
  position: relative;
}
.sms-out {
  background: linear-gradient(135deg, var(--olive-vibrant) 0%, var(--olive) 100%);
  color: rgba(255,255,255,.97);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(52,65,40,.25);
}
.sms-in {
  background: var(--warm-white);
  color: var(--text-body);
  border: 1px solid rgba(0,0,0,.06);
  border-left: 3px solid var(--amber);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
/* Typing dots — hidden by default, shown via JS animation */
.sms-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}
.sms-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-faint);
  border-radius: 50%;
  animation: typingDot 1.2s infinite ease-in-out;
}
.sms-typing span:nth-child(2) { animation-delay: .15s; }
.sms-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ===== SECTIONS ===== */
.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section--alt { background: var(--cream); }
.section--dark {
  background: var(--olive-deep);
  color: var(--warm-white);
}

.section-header {
  margin-bottom: 2.5rem;
}
.section-header .eyebrow {
  color: var(--sage);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.section-header .eyebrow::after {
  content: '';
  width: 2.5rem;
  height: 1.5px;
  background: currentColor;
  opacity: .45;
}
.section-header--center .eyebrow::after {
  display: none;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: .75rem;
  text-align: inherit;
}
.section--dark .section-title { color: var(--warm-white); }

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.65;
  text-align: inherit;
}
.section--dark .section-sub { color: rgba(255,255,255,.7); }

.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center .section-sub {
  max-width: none;
  margin: 0 auto;
}

/* ===== HOW IT WORKS (Steps) ===== */
.steps-wrapper {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.steps-line {
  display: none;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--warm-gray);
  border-top: 3px solid var(--olive);
  border-radius: 4px;
  transition: all .35s var(--ease-bounce);
  position: relative;
}
.step:hover {
  border-color: var(--amber);
  border-top-color: var(--amber);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 0 0 1px var(--amber-pale);
}
.step-icon-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.step-num {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--olive-deep);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(34,43,30,.35), 0 0 0 4px rgba(218,165,32,.18);
  transition: all .35s var(--ease-bounce);
}
.step:hover .step-num {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-bright) 100%);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(218,165,32,.45);
  transform: scale(1.1);
}
.step-icon {
  position: absolute;
  bottom: -4px;
  right: -8px;
  width: 22px;
  height: 22px;
  color: var(--olive-mid);
  background: var(--warm-white);
  border-radius: 50%;
  padding: 3px;
  border: 2px solid var(--warm-gray);
  transition: all .35s var(--ease-bounce);
}
.step:hover .step-icon {
  border-color: var(--amber);
  color: var(--amber);
  transform: scale(1.15) rotate(10deg);
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .45rem;
  letter-spacing: -.02em;
}
.step-body p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto;
}
.step-tag {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  padding: .25rem .65rem;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(52,65,40,.06);
  border-radius: 20px;
  border: 1px solid rgba(52,65,40,.1);
  transition: all .25s var(--ease-out-expo);
}
.step:hover .step-tag {
  color: var(--amber);
  background: rgba(218,165,32,.08);
  border-color: rgba(218,165,32,.2);
}

/* ===== FEATURES — Hero tier (top 3 differentiators) ===== */
.features-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.feature-hero-cell {
  background: var(--olive-deep);
  color: var(--warm-white);
  padding: 1.75rem 1.5rem;
  border-radius: 6px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border-left: 4px solid var(--amber);
  transition: all .3s var(--ease-out-expo);
}
.feature-hero-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,40,25,.35);
}
.feature-hero-cell .feature-cmd {
  background: var(--amber);
  color: var(--olive-deep);
  border-color: var(--amber);
  font-family: 'Courier New', 'Courier', monospace;
  letter-spacing: .12em;
}
.feature-hero-cell .feature-info h4 {
  color: var(--warm-white);
  font-size: 1.15rem;
}
.feature-hero-cell .feature-info p {
  color: rgba(253,252,249,.75);
}

/* ===== FEATURES — Utility tier ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--olive);
  border: 2px solid var(--olive);
  border-radius: 4px;
  overflow: hidden;
}
.feature-cell {
  background: var(--warm-white);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border-left: 3px solid transparent;
  transition: all .3s var(--ease-out-expo);
}
.feature-cell:hover {
  background: var(--cream);
  border-left-color: var(--amber);
}
.feature-cmd {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
  font-size: 1rem;
  color: var(--olive-deep);
  letter-spacing: .1em;
  text-transform: uppercase;
  min-width: 90px;
  padding: .55rem .85rem;
  background: rgba(52,65,40,.06);
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid var(--olive);
  transition: all .3s var(--ease-bounce);
}
.feature-cell:hover .feature-cmd {
  background: var(--olive-deep);
  color: var(--amber);
  box-shadow: 0 6px 16px rgba(52,65,40,.3);
  border-color: var(--olive-deep);
}
.feature-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .2rem;
  letter-spacing: -.015em;
}
.feature-info p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ===== PRICING ===== */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 540px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--warm-white);
  border: 3px solid transparent;
  border-radius: 6px;
  padding: 3rem 2.5rem;
  max-width: 460px;
  position: relative;
  transition: all .35s var(--ease-out-expo);
  background-image: linear-gradient(var(--warm-white), var(--warm-white)), linear-gradient(135deg, var(--amber) 0%, var(--olive-mid) 50%, var(--amber-bright) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 12px 40px rgba(218,165,32,.15);
}
.pricing-card:hover { box-shadow: 0 12px 48px rgba(218,165,32,.2), 0 0 0 1px rgba(218,165,32,.15); transform: translateY(-4px); }

.pricing-label {
  color: var(--amber);
  margin-bottom: 1rem;
  display: block;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-gray);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--olive-deep) 0%, var(--ink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
}
.price-period {
  font-size: .9rem;
  color: var(--text-faint);
  margin-left: .25rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: .92rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-body);
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35rem;
  width: 14px;
  height: 14px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-note {
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--text-faint);
  text-align: center;
}

/* KDV breakdown — legal transparency under the total price */
.pricing-kdv {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: var(--s-1);
  margin-bottom: var(--s-4);
  text-align: center;
}

/* Payment processor badges — text-based (no licensed brand SVGs in repo) */
.payment-badges {
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-4);
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--s-2) var(--s-3);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: .25rem;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: .02em;
}


.submit-note { font-size: .85rem; color: var(--text-faint); }
.link { color: var(--olive-mid); text-decoration: underline; text-underline-offset: 2px; }

/* ===== CTA SECTION ===== */
#kayit {
  position: relative;
  overflow: hidden;
}
#kayit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
#kayit .section-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}
#kayit .eyebrow {
  color: var(--amber);
}
#kayit .btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  font-size: 1.15rem;
  padding: 1.15rem 3rem;
}
#kayit .btn-primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(218,165,32,.45);
}
#kayit .submit-note {
  color: rgba(255,255,255,.4);
}
#kayit .submit-note a {
  color: rgba(255,255,255,.55);
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--warm-gray);
}
.faq-item:first-child { border-top: 1px solid var(--warm-gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
  letter-spacing: -.015em;
  transition: color .15s;
}
.faq-question:hover { color: var(--olive-mid); }
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-mid);
  border: 1.5px solid var(--warm-gray);
  border-radius: 50%;
  transition: transform .25s var(--ease-out-expo), color .15s, border-color .15s, background .15s;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--warm-white); background: var(--olive); border-color: var(--olive); }
.faq-question:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 2px; }
.faq-answer {
  padding: 0 0 1.15rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out-expo);
}
.faq-answer--open {
  overflow: visible;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.footer-logo span { color: var(--amber); }
.footer p { font-size: .88rem; line-height: 1.6; }
.footer a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(26,29,23,.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(218,165,32,.25);
  padding: .65rem 1rem;
  transform: translateY(100%);
  transition: transform .35s var(--ease-out-expo);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.sticky-cta-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -.01em;
}
.sticky-cta-period {
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}
.sticky-cta-btn {
  padding: .65rem 1.5rem;
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .sticky-cta { display: none; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  /* Hero fade-ups: still animation-based for immediate load feel */
  .hero .fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp .6s var(--ease-out-expo) forwards;
  }
  .hero .fade-up-d1 { animation-delay: .1s; }
  .hero .fade-up-d2 { animation-delay: .2s; }
  .hero .fade-up-d3 { animation-delay: .3s; }
  .hero .fade-up-d4 { animation-delay: .4s; }

  /* Scroll-triggered: starts hidden, JS adds .is-visible */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger children within a revealed container */
  .reveal-stagger > .reveal { transition-delay: calc(var(--i, 0) * .08s); }

  /* Hero corner brackets — grow in from each corner */
  .hero-corner {
    opacity: 0;
    transform: scale(0);
    animation: cornerDraw .7s var(--ease-out-expo) forwards;
  }
  .hero-corner--tl { transform-origin: top left; animation-delay: .15s; }
  .hero-corner--tr { transform-origin: top right; animation-delay: .35s; }
  .hero-corner--bl { transform-origin: bottom left; animation-delay: .35s; }
  .hero-corner--br { transform-origin: bottom right; animation-delay: .55s; }

  /* Hero dispatch rule line draws in left-to-right */
  .hero-dispatch-rule {
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow .5s var(--ease-out-expo) .5s forwards;
  }

  /* Hero SMS bubble cascade — JS adds .is-revealed per bubble */
  .hero-phone .phone-messages > * {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s var(--ease-out-expo), transform .4s var(--ease-out-expo);
  }
  .hero-phone .phone-messages > .is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Steps connecting line draws across on scroll */
  .steps-line {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s var(--ease-out-expo);
  }
  .steps-wrapper.is-visible .steps-line {
    transform: scaleX(1);
  }

  /* Hero feature cells stagger */
  .features-hero .feature-hero-cell { opacity: 0; }
  .features-hero.is-visible .feature-hero-cell {
    animation: cellFadeIn .5s var(--ease-out-expo) both;
  }
  .features-hero.is-visible .feature-hero-cell:nth-child(1) { animation-delay: 0s; }
  .features-hero.is-visible .feature-hero-cell:nth-child(2) { animation-delay: .1s; }
  .features-hero.is-visible .feature-hero-cell:nth-child(3) { animation-delay: .2s; }

  /* Utility feature cells stagger */
  .features-grid .feature-cell { opacity: 0; }
  .features-grid.is-visible .feature-cell {
    animation: cellFadeIn .45s var(--ease-out-expo) both;
  }
  .features-grid.is-visible .feature-cell:nth-child(1) { animation-delay: 0s; }
  .features-grid.is-visible .feature-cell:nth-child(2) { animation-delay: .06s; }
  .features-grid.is-visible .feature-cell:nth-child(3) { animation-delay: .12s; }
  .features-grid.is-visible .feature-cell:nth-child(4) { animation-delay: .18s; }
  .features-grid.is-visible .feature-cell:nth-child(5) { animation-delay: .24s; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes phoneFloat {
  0% { transform: rotate(1.5deg) translateY(0); }
  25% { transform: rotate(2deg) translateY(-6px); }
  50% { transform: rotate(1.5deg) translateY(-12px); }
  75% { transform: rotate(1deg) translateY(-5px); }
  100% { transform: rotate(1.5deg) translateY(0); }
}
@keyframes cornerDraw {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes cellFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
  .hero-corner { opacity: 1; transform: none; }
  .hero-dispatch-rule { transform: none; }
  .hero-phone .phone-messages > * { opacity: 1; transform: none; }
  .features-hero .feature-hero-cell { opacity: 1; transform: none; }
  .features-grid .feature-cell { opacity: 1; transform: none; }
}

/* ===== TAHMIN BANNER (inside features section) ===== */
.tahmin-banner {
  margin-top: 1.5rem;
  background: var(--olive-deep);
  border-radius: 0 0 6px 6px;
  padding: 1.75rem 1.5rem;
  color: var(--warm-white);
}
.tahmin-banner-content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.tahmin-banner .feature-cmd {
  background: var(--amber);
  color: var(--olive-deep);
  border-color: var(--amber);
  flex-shrink: 0;
}
.tahmin-banner .feature-info h4 {
  color: var(--amber-bright);
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.tahmin-banner .feature-info p {
  color: rgba(253,252,249,.8);
  font-size: .9rem;
  line-height: 1.55;
}
.tahmin-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.tahmin-tag {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border: 1px solid rgba(212,160,49,.4);
  border-radius: 3px;
  color: var(--amber-bright);
}

/* ===== TAHMIN SHOWCASE SECTION ===== */
/* Dedicated section between features and personalities. Uses same layout pattern
   as .kisilikler-layout (content + phone side-by-side on desktop). */
.tahmin-layout {
  /* Mobile: single column, no change */
}
.tahmin-content {
  max-width: 640px;
  margin: 0 auto;
}
#tahmin .section-sub {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.tahmin-hooks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.tahmin-hook {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--warm-white);
  border-radius: 6px;
  border-left: 3px solid var(--amber);
}
.tahmin-hook-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(212,160,49,.12);
  border-radius: 50%;
  color: var(--amber);
}
.tahmin-hook strong {
  display: block;
  font-family: var(--font-display);
  font-size: .92rem;
  color: var(--olive-deep);
  margin-bottom: .15rem;
}
.tahmin-hook span {
  font-size: .85rem;
  color: var(--text-body);
  line-height: 1.5;
}
.tahmin-footer-hint {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.tahmin-footer-hint code {
  background: var(--olive-deep);
  color: var(--amber-bright);
  padding: .15rem .45rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
}
.tahmin-phone-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.tahmin-phone {
  max-width: 260px;
}
/* Result notification bubble styling */
.sms-in--result {
  background: rgba(52,82,40,.15) !important;
  border-left: 3px solid var(--olive-mid);
}
/* Dashboard: highlighted TAHMIN command item */
.command-item--highlight {
  background: rgba(212,160,49,.08);
  border-radius: 4px;
}
.command-shortcut--game {
  background: var(--amber) !important;
  color: var(--olive-deep) !important;
  border-color: var(--amber) !important;
}

/* ===== PERSONALITIES ===== */
/* New section between features and pricing that showcases the 9 AI personality
   voices via clickable chips + phone mockup demo. Reuses .phone-frame, .phone-screen,
   .phone-messages, .sms-bubble from the existing phone component. */

.kisilikler-layout {
  /* Mobile: single column, no change */
}

#kisilikler .section-sub {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
#kisilikler .section-title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, var(--amber-glow) 62%);
  padding: 0 .1em;
}

.personalities-tap-hint {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(218,165,32,.1);
  padding: .45rem .9rem;
  border-radius: 22px;
  border: 1px dashed rgba(218,165,32,.45);
  margin-top: 1.1rem;
}
.personalities-tap-finger {
  font-size: 1.05rem;
  display: inline-block;
}
@media (prefers-reduced-motion: no-preference) {
  .personalities-tap-finger {
    animation: personalities-tap 1.8s ease-in-out infinite;
  }
}
@keyframes personalities-tap {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
}

.personalities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin: 1.6rem auto 0;
  padding: 0 .5rem;
  max-width: 760px;
}
.personalities-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .7rem .6rem .65rem;
  background: var(--cream);
  border: 1.5px solid var(--warm-gray);
  border-radius: 14px;
  cursor: pointer;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s, border-color .25s, background .25s;
  min-width: 82px;
  position: relative;
  font: inherit;
  color: inherit;
}
.personalities-chip:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  box-shadow: 0 6px 18px rgba(218,165,32,.18);
}
.personalities-chip:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 14px;
}
.personalities-chip-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive-mid);
  color: var(--amber-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .86rem;
  letter-spacing: -.02em;
  border: 2px solid var(--olive);
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.personalities-chip-label {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
}

/* Active state: solid amber, lifted, downward arrow pointing at the phone */
.personalities-chip.is-active {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(218,165,32,.38);
}
.personalities-chip.is-active .personalities-chip-avatar {
  background: var(--olive-deep);
  color: var(--amber-bright);
  border-color: var(--ink);
  transform: scale(1.05);
}
.personalities-chip.is-active .personalities-chip-label { color: var(--ink); }
.personalities-chip.is-active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid var(--amber);
  filter: drop-shadow(0 3px 3px rgba(218,165,32,.3));
}

/* Breathing animation on idle chips — staggered to catch peripheral vision */
@media (prefers-reduced-motion: no-preference) {
  .personalities-chip:not(.is-active) {
    animation: personalities-breathe 3.2s ease-in-out infinite;
  }
  .personalities-chips > .personalities-chip:nth-child(1) { animation-delay: 0s; }
  .personalities-chips > .personalities-chip:nth-child(2) { animation-delay: .4s; }
  .personalities-chips > .personalities-chip:nth-child(3) { animation-delay: .8s; }
  .personalities-chips > .personalities-chip:nth-child(4) { animation-delay: 1.2s; }
  .personalities-chips > .personalities-chip:nth-child(5) { animation-delay: 1.6s; }
  .personalities-chips > .personalities-chip:nth-child(6) { animation-delay: 2.0s; }
  .personalities-chips.is-paused .personalities-chip:not(.is-active) { animation: none; }
}
@keyframes personalities-breathe {
  0%, 100% { border-color: var(--warm-gray); }
  50% { border-color: rgba(218,165,32,.55); }
}

.personalities-more-hint {
  text-align: center;
  font-size: .82rem;
  color: var(--text-faint);
  margin: .7rem 0 1.6rem;
  font-style: italic;
}

.personalities-phone-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.personalities-phone {
  max-width: 380px;
}
.personalities-phone .phone-header {
  padding-top: .4rem;
}
.personalities-phone .phone-messages {
  min-height: 260px;
  gap: .5rem;
  padding: .9rem;
}
.personalities-phone .sms-bubble {
  font-size: .85rem;
  max-width: 85%;
}
.personalities-phone .phone-contact-status {
  font-style: italic;
}
.personalities-reply {
  transition: opacity .3s, transform .3s;
}
@media (prefers-reduced-motion: no-preference) {
  .personalities-reply.is-animating {
    animation: personalities-fadeslide .38s ease-out;
  }
}
@keyframes personalities-fadeslide {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.personalities-ornek-badge {
  display: block;
  width: fit-content;
  margin: .6rem auto 0;
  font-family: var(--font-display);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  padding: .2rem .55rem;
  border-radius: 3px;
  align-self: center;
}

.personalities-footer-hint {
  text-align: center;
  margin-top: 1.6rem;
  font-size: .84rem;
  color: var(--text-muted);
}
.personalities-footer-hint code {
  background: var(--olive-deep);
  color: var(--amber);
  padding: .18rem .5rem;
  border-radius: 4px;
  font-family: var(--font-display), monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.personalities-footer-hint strong {
  color: var(--ink);
}

/* Mobile: chip strip should wrap gracefully, phone shrinks */
@media (max-width: 639px) {
  .personalities-chips { gap: .5rem; }
  .personalities-chip { min-width: 72px; padding: .55rem .45rem .5rem; }
  .personalities-chip-avatar { width: 38px; height: 38px; font-size: .78rem; }
  .personalities-chip-label { font-size: .7rem; }
  .personalities-phone { max-width: 280px; }
}

/* ===== TABLET (640px+) ===== */
@media (min-width: 640px) {
  .features-hero { grid-template-columns: 1fr 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .steps-line {
    display: block;
    position: absolute;
    top: 4rem;
    left: calc(16.67% + 1rem);
    right: calc(16.67% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), var(--amber), transparent);
    z-index: 0;
  }
  .step { position: relative; z-index: 1; }
  .faq-layout {
    grid-template-columns: 260px 1fr;
    gap: 4rem;
  }
}

/* ===== DESKTOP (960px+) ===== */
@media (min-width: 960px) {
  .section { padding: clamp(5rem, 10vw, 8rem) 0; }
  /* Tighter padding on "how it works" — it's a bridge, not a destination */
  #nasil-calisir { padding-top: clamp(3.5rem, 6vw, 5rem); padding-bottom: clamp(3.5rem, 6vw, 5rem); }
  /* CTA section: compact punch */
  .section--dark { padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }
  /* FAQ: slightly tighter */
  #faq { padding-top: clamp(4rem, 7vw, 6rem); }

  .hero { padding: 0; }
  .hero-layout {
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    min-height: 100svh;
    align-items: center;
    padding: 6rem 0 4rem;
  }
  .hero-phone { display: block; justify-self: center; }
  .hero-phone .phone-frame { animation: phoneFloat 5s ease-in-out infinite; }

  .section-title { font-size: 3rem; }
  .steps-wrapper { max-width: 1060px; }

  /* Hero features: 3-column on desktop */
  .features-hero { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  /* 5-column utility grid — 5 items in a single dense row */
  .features-grid { grid-template-columns: repeat(5, 1fr); }
  /* Compact cells: cmd tag stacks above info */
  .feature-cell { padding: 1.5rem 1.25rem; flex-direction: column; gap: .75rem; }
  .feature-cmd { min-width: 0; align-self: flex-start; font-size: .95rem; padding: .4rem .7rem; }

  /* Tahmin: side-by-side layout on desktop */
  .tahmin-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: center;
  }
  #tahmin .section-header {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  #tahmin .section-sub {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .tahmin-content { max-width: none; }
  .tahmin-footer-hint { text-align: left; }
  .tahmin-phone-wrap {
    justify-content: center;
    position: sticky;
    top: 6rem;
    margin-top: 0;
  }
  .tahmin-phone { max-width: 320px; }

  /* Kisilikler: side-by-side layout on desktop */
  .kisilikler-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: center;
  }
  #kisilikler .section-header {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  #kisilikler .section-sub {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .kisilikler-content .personalities-chips {
    justify-content: flex-start;
    max-width: none;
    padding-left: 0;
  }
  .kisilikler-content .personalities-more-hint {
    text-align: left;
  }
  .kisilikler-content .personalities-footer-hint {
    text-align: left;
  }
  .kisilikler-layout .personalities-phone-wrap {
    justify-content: center;
    position: sticky;
    top: 6rem;
  }
  .kisilikler-layout .personalities-phone {
    max-width: 420px;
  }

  .pricing-card { max-width: none; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== WIDE (1200px+) ===== */
@media (min-width: 1200px) {
  .container { max-width: 1320px; }
  .hero-layout { grid-template-columns: 1fr 400px; gap: 6rem; }
  /* .hero-title handled by clamp() — no override here */
  .phone-frame:not(.phone-frame--mini) { width: 340px; }
  .section-title { font-size: 3.2rem; }
  .section-sub { font-size: 1.15rem; }
  .kisilikler-layout { grid-template-columns: 1fr 380px; gap: 5rem; }
  .tahmin-layout { grid-template-columns: 1fr 380px; gap: 5rem; }
}

/* ===== ULTRAWIDE (1440px+) ===== */
@media (min-width: 1440px) {
  .container { max-width: 1400px; }
  .hero-layout { grid-template-columns: 1fr 420px; gap: 7rem; }
}

/* ============================================= */
/* ===== COOKIE BANNER                        ===== */
/* ============================================= */

#sivilde-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--warm-white);
    border-top: 1px solid var(--olive-deep);
    padding: var(--s-4);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    transform: translateY(0);
    transition: transform .2s ease-out, opacity .2s ease-out;
    opacity: 1;
}

#sivilde-cookie-banner.is-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--s-4);
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1 1 300px;
    font-size: var(--fs-small);
    color: var(--ink);
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--olive-mid);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: var(--s-2);
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: var(--s-2) var(--s-4);
    border-radius: .375rem;
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .15s, border-color .15s;
}

.cookie-banner-btn--accept {
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
}

.cookie-banner-btn--accept:hover {
    background: var(--amber-bright);
    border-color: var(--amber-bright);
}

.cookie-banner-btn--reject {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--line);
}

.cookie-banner-btn--reject:hover {
    border-color: var(--olive-mid);
    color: var(--olive-mid);
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: var(--s-3);
    }
    .cookie-banner-actions {
        justify-content: stretch;
    }
    .cookie-banner-btn {
        flex: 1;
    }
}
