:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #fff5f3;
    --surface-warm: #fff9f7;
    --text: #211817;
    --muted: #796b68;
    --muted-strong: #5e514f;
    --line: #f0dfdc;
    --line-strong: #ebc8c2;
    --accent: #ef4d46;
    --accent-strong: #d93831;
    --accent-soft: #ffe3df;
    --success: #16865f;
    --danger: #b42318;
    --shadow: 0 18px 45px rgba(126, 47, 40, 0.12);
    --radius: 8px;
    --radius-lg: 14px;
    --tap: 48px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body.sheet-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
p {
    margin: 0;
}

.mobile-shell {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    background:
        linear-gradient(180deg, #fff7f4 0, #ffffff 225px),
        var(--bg);
    overflow-x: hidden;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(240, 223, 220, 0.86);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: var(--text);
    font-size: 1.23rem;
    font-weight: 900;
}

.brand-dot {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 32%, #ffffff 0 16%, transparent 17%),
        linear-gradient(145deg, #ff766e, var(--accent-strong));
    box-shadow: 0 10px 22px rgba(239, 77, 70, 0.26);
}

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

.city-badge {
    max-width: 112px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-icon,
.sheet-close {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
}

.account-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted-strong);
}

.account-icon::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 7px;
    width: 16px;
    height: 8px;
    border-radius: 10px 10px 5px 5px;
    background: var(--muted-strong);
}

.hero-section {
    display: grid;
    gap: 16px;
    padding: 20px 14px 18px;
}

.hero-copy {
    display: grid;
    gap: 11px;
}

.eyebrow,
.sheet-kicker {
    color: var(--accent-strong);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 12ch;
    color: #201514;
    font-size: 2.22rem;
    line-height: 1.02;
    font-weight: 900;
}

.hero-copy h1 strong {
    color: var(--accent-strong);
    font-weight: inherit;
}

.hero-copy > p {
    max-width: 30ch;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.trust-line {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
}

.trust-line span {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f7f0;
}

.trust-line span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--success);
    border-bottom: 2px solid var(--success);
    transform: rotate(42deg);
}

.trust-line p {
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.35;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.stats-grid article {
    min-width: 0;
    padding: 12px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(126, 47, 40, 0.06);
}

.stats-grid strong {
    display: block;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.15;
    font-weight: 900;
}

.stats-grid span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
}

.profile-section {
    display: grid;
    gap: 12px;
    padding: 4px 14px 20px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.section-heading h2 {
    font-size: 1.18rem;
    line-height: 1.2;
    font-weight: 900;
}

.section-heading span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.profile-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(126, 47, 40, 0.08);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.profile-card.is-recommended {
    border-color: var(--accent);
    box-shadow: 0 16px 38px rgba(239, 77, 70, 0.18);
    transform: translateY(-1px);
}

.profile-media {
    position: relative;
    aspect-ratio: 16 / 12;
    overflow: hidden;
    background: var(--surface-soft);
}

.profile-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.play-button {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(54, 25, 22, 0.16);
}

.play-button::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 14px;
    border-left: 11px solid var(--accent-strong);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.duration-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(28, 17, 16, 0.76);
    font-size: 0.75rem;
    font-weight: 900;
}

.profile-body {
    display: grid;
    gap: 10px;
    padding: 11px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
}

.profile-badges span {
    min-height: 24px;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    padding: 0 7px;
    border-radius: 999px;
    border: 1px solid rgba(239, 77, 70, 0.18);
    background: #fff7f5;
    color: var(--accent-strong);
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.profile-name {
    min-width: 0;
}

.profile-name strong {
    display: block;
    overflow: hidden;
    color: var(--text);
    font-size: 1.01rem;
    line-height: 1.22;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-name span {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ctr-badge {
    min-height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-size: 0.72rem;
    font-weight: 900;
}

.profile-cta,
.primary-cta {
    width: 100%;
    min-height: var(--tap);
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ff6b63, var(--accent-strong));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 24px rgba(239, 77, 70, 0.23);
}

.profile-cta:active,
.primary-cta:active,
.sheet-close:active {
    transform: scale(0.985);
}

.safety-strip {
    display: grid;
    gap: 8px;
    padding: 0 14px calc(92px + env(safe-area-inset-bottom));
}

.safety-strip article {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-warm);
}

.safety-strip strong {
    font-size: 0.9rem;
    font-weight: 900;
}

.safety-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-soft);
}

.safety-icon-real::after,
.safety-icon-secure::after,
.safety-icon-fast::after {
    content: "";
    position: absolute;
}

.safety-icon-real::after {
    left: 10px;
    top: 8px;
    width: 9px;
    height: 14px;
    border-right: 3px solid var(--accent-strong);
    border-bottom: 3px solid var(--accent-strong);
    transform: rotate(42deg);
}

.safety-icon-secure::after {
    left: 10px;
    top: 8px;
    width: 14px;
    height: 15px;
    border: 3px solid var(--accent-strong);
    border-top-width: 6px;
    border-radius: 4px 4px 7px 7px;
}

.safety-icon-fast::after {
    left: 9px;
    top: 8px;
    width: 13px;
    height: 13px;
    border-right: 3px solid var(--accent-strong);
    border-bottom: 3px solid var(--accent-strong);
    transform: rotate(-45deg);
}

.sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(24, 17, 16, 0.46);
}

.request-sheet {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 0;
    z-index: 70;
    width: min(100%, 430px);
    max-height: min(92vh, 820px);
    display: grid;
    grid-template-rows: auto auto 1fr;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -20px 55px rgba(30, 17, 15, 0.24);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(24, 17, 16, 0.5);
}

.profile-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: end center;
    padding: 16px 12px calc(16px + env(safe-area-inset-bottom));
    overflow-y: auto;
}

.modal-card {
    position: relative;
    width: min(100%, 430px);
    max-height: min(92vh, 780px);
    display: grid;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(30, 17, 15, 0.28);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(54, 25, 22, 0.12);
}

.modal-media {
    aspect-ratio: 16 / 11;
    background: var(--surface-soft);
}

.modal-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.modal-body {
    display: grid;
    gap: 13px;
    padding: 15px;
}

.modal-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    min-width: 0;
}

.modal-title-row h2 {
    margin-top: 4px;
    font-size: 1.36rem;
    line-height: 1.15;
    font-weight: 900;
}

.modal-title-row p,
.modal-intro {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.45;
}

.modal-title-row p {
    margin-top: 4px;
}

.modal-badges span {
    min-height: 26px;
    font-size: 0.72rem;
}

.sheet-handle {
    width: 42px;
    height: 5px;
    margin: 9px auto 5px;
    border-radius: 999px;
    background: #ead6d2;
}

.sheet-head {
    display: grid;
    grid-template-columns: 1fr 38px;
    gap: 12px;
    align-items: start;
    padding: 8px 16px 12px;
    border-bottom: 1px solid var(--line);
}

.sheet-head h2 {
    margin-top: 4px;
    font-size: 1.28rem;
    line-height: 1.2;
    font-weight: 900;
}

.sheet-head p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.35;
}

.sheet-close {
    border-color: var(--line-strong);
}

.sheet-close::before,
.sheet-close::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 16px;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--muted-strong);
}

.sheet-close::before {
    transform: rotate(45deg);
}

.sheet-close::after {
    transform: rotate(-45deg);
}

.request-form {
    display: grid;
    gap: 12px;
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
    overflow-y: auto;
}

.request-success {
    display: grid;
    gap: 10px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    text-align: center;
    overflow-y: auto;
}

.success-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin: 0 auto 2px;
    border-radius: 50%;
    background: #e8f7f0;
}

.success-icon::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 15px;
    width: 14px;
    height: 24px;
    border-right: 4px solid var(--success);
    border-bottom: 4px solid var(--success);
    transform: rotate(42deg);
}

.request-success h2 {
    font-size: 1.38rem;
    line-height: 1.18;
    font-weight: 900;
}

.request-success p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.4;
}

.request-success strong {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 900;
}

.secondary-cta {
    width: 100%;
    min-height: var(--tap);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 900;
}

.match-quiz {
    display: grid;
    gap: 12px;
    margin: 0 14px 18px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 14px 34px rgba(126, 47, 40, 0.07);
}

.quiz-head {
    display: grid;
    gap: 4px;
}

.quiz-head h2 {
    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 900;
}

.quiz-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.quiz-progress span {
    height: 5px;
    border-radius: 999px;
    background: #f3e1dd;
}

.quiz-progress span.active {
    background: var(--accent);
}

.quiz-step {
    display: none;
    gap: 9px;
}

.quiz-step.active {
    display: grid;
}

.quiz-step p {
    color: var(--muted-strong);
    font-size: 0.86rem;
    font-weight: 900;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.quiz-options button {
    min-width: 0;
    min-height: 42px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-warm);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.15;
}

.quiz-options button.selected {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.quiz-result {
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius);
    background: #edfdf6;
    color: var(--success);
}

.quiz-result strong {
    font-size: 0.86rem;
    font-weight: 900;
}

.quiz-result p {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
}

.bottom-cta-bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 50;
    width: min(100%, 430px);
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    border-top: 1px solid rgba(240, 223, 220, 0.92);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 28px rgba(54, 25, 22, 0.12);
    backdrop-filter: blur(16px);
}

.bottom-cta-bar strong {
    min-width: 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
}

.bottom-cta-bar button {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 0 15px;
    border: 0;
    border-radius: var(--radius);
    background: var(--accent-strong);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
}

body.sheet-open .bottom-cta-bar,
body.modal-open .bottom-cta-bar {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(84px, 0.56fr) minmax(0, 1fr);
    gap: 10px;
}

.field-group {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.field-group label {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 900;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    min-height: var(--tap);
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    background: var(--surface-warm);
    color: var(--text);
    font-size: 0.94rem;
}

.field-group textarea {
    min-height: 118px;
    padding-top: 12px;
    line-height: 1.5;
    resize: vertical;
}

.field-group select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted-strong) 50%), linear-gradient(135deg, var(--muted-strong) 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(239, 77, 70, 0.1);
}

.field-error {
    min-height: 16px;
    color: var(--danger);
    font-size: 0.74rem;
    font-weight: 750;
    line-height: 1.25;
}

.form-notice {
    padding: 10px 11px;
    border: 1px solid rgba(180, 35, 24, 0.18);
    border-radius: var(--radius);
    background: #fff2f0;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
}

.form-notice[data-variant="success"] {
    border-color: rgba(22, 134, 95, 0.18);
    background: #edfdf6;
    color: var(--success);
}

.form-notice[data-variant="info"] {
    border-color: var(--line-strong);
    background: var(--surface-soft);
    color: var(--muted-strong);
}

.primary-cta:disabled {
    opacity: 0.58;
    cursor: not-allowed;
}

@media (min-width: 390px) {
    .profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .profile-media {
        aspect-ratio: 1 / 1.03;
    }

    .profile-body {
        padding: 10px;
        gap: 8px;
    }

    .profile-top {
        display: grid;
        gap: 6px;
    }

    .ctr-badge {
        width: fit-content;
    }

    .profile-name strong {
        font-size: 0.96rem;
    }

    .profile-name span {
        font-size: 0.75rem;
    }

    .profile-cta {
        min-height: 44px;
        padding: 0 7px;
        font-size: 0.78rem;
    }

    .profile-badges span {
        min-height: 22px;
        padding: 0 6px;
        font-size: 0.61rem;
    }
}

@media (min-width: 431px) {
    body {
        background: #f6f0ef;
    }

    .mobile-shell {
        box-shadow: 0 0 0 1px rgba(240, 223, 220, 0.9), 0 24px 80px rgba(62, 36, 34, 0.12);
    }
}


.profile-media {
    background: #111;
}

.profile-video,
.profile-modal-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border: 0;
    background: #111;
}

.profile-card .profile-video {
    pointer-events: none;
}

.profile-modal-video {
    max-height: 70vh;
    border-radius: 22px;
}

.ctr-badge { display: none !important; }

/* MaviBeyaz Ajans - dark corporate relationship theme */
:root {
    --bg: #11100e;
    --bg-soft: #181512;
    --surface: #201b17;
    --surface-soft: #2a211c;
    --line: rgba(194, 132, 91, 0.42);
    --text: #f6efe7;
    --muted: #c9b8a8;
    --accent: #a9473f;
    --accent-strong: #c35a50;
    --accent-soft: rgba(169, 71, 63, 0.18);
    --gold: #c99a63;
    --radius-lg: 18px;
    --radius-md: 13px;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

html,
body {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 154, 99, 0.16), transparent 34%),
        radial-gradient(circle at 10% 12%, rgba(169, 71, 63, 0.14), transparent 28%),
        linear-gradient(180deg, #11100e 0%, #17130f 46%, #0e0d0c 100%) !important;
    color: var(--text) !important;
}

.mobile-shell,
.app-shell,
main {
    background: transparent !important;
}

.app-header {
    background: rgba(17, 16, 14, 0.88) !important;
    border-bottom: 1px solid rgba(201, 154, 99, 0.22) !important;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34) !important;
}

.brand,
.brand span {
    color: var(--text) !important;
    letter-spacing: 0.02em;
}

.brand span::first-letter {
    color: var(--accent-strong);
}

.brand-mark {
    border-color: rgba(201, 154, 99, 0.6) !important;
    color: var(--gold) !important;
    background: rgba(0, 0, 0, 0.18) !important;
}

.header-action,
.menu-button,
.call-button {
    border: 1px solid rgba(201, 154, 99, 0.42) !important;
    background: rgba(32, 27, 23, 0.78) !important;
    color: var(--gold) !important;
}

.hero,
.hero-card,
.stats,
.intro,
.quick-test,
.application-section,
.request-section,
.form-section,
.bottom-form,
.lead-form-section,
#applicationForm,
#leadForm,
#requestForm:not(.modal form) {
    display: none !important;
}

.profile-section {
    padding: 18px 14px 10px !important;
}

.profile-section::before {
    content: "";
    display: block;
    width: 84px;
    height: 1px;
    margin: 0 auto 16px;
    background: linear-gradient(90deg, transparent, rgba(201, 154, 99, 0.85), transparent);
}

.profile-grid {
    gap: 14px !important;
}

.profile-card {
    background: linear-gradient(180deg, rgba(38, 32, 27, 0.98), rgba(27, 23, 20, 0.98)) !important;
    border: 1px solid rgba(201, 154, 99, 0.38) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34) !important;
    overflow: hidden;
}

.profile-card:hover {
    border-color: rgba(201, 154, 99, 0.7) !important;
    transform: translateY(-1px);
}

.profile-media {
    background: #0d0c0b !important;
    border-bottom: 1px solid rgba(201, 154, 99, 0.24) !important;
}

.profile-video,
.profile-modal-video {
    object-fit: contain !important;
    background: #0d0c0b !important;
}

.profile-body {
    background: rgba(27, 23, 20, 0.95) !important;
}

.profile-name strong,
.profile-name,
.profile-card strong {
    color: var(--text) !important;
}

.profile-name span,
.profile-card span,
.profile-meta,
.subtle {
    color: var(--muted) !important;
}

.profile-badges,
.ctr-badge,
.profile-score,
.profile-distance,
.profile-time,
.profile-rank {
    display: none !important;
}

.profile-cta,
.primary-cta,
button[type="submit"],
.modal-actions .primary-cta {
    background: linear-gradient(180deg, var(--accent-strong), #8d3934) !important;
    color: #fff !important;
    border: 1px solid rgba(233, 151, 131, 0.28) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 12px 26px rgba(110, 37, 34, 0.32) !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
}

.profile-cta::after {
    content: "›";
    float: right;
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.request-modal,
.modal,
.modal-card,
.form-modal {
    background: linear-gradient(180deg, #241e1a, #171411) !important;
    color: var(--text) !important;
    border: 1px solid rgba(201, 154, 99, 0.42) !important;
    box-shadow: var(--shadow) !important;
}

input,
select,
textarea {
    background: rgba(16, 14, 12, 0.72) !important;
    color: var(--text) !important;
    border: 1px solid rgba(201, 154, 99, 0.32) !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(201, 184, 168, 0.78) !important;
}

.preference-card,
.option-card,
.choice-card {
    background: rgba(32, 27, 23, 0.82) !important;
    color: var(--text) !important;
    border: 1px solid rgba(201, 154, 99, 0.35) !important;
}

.preference-card.is-active,
.option-card.is-active,
.choice-card.is-active {
    border-color: rgba(195, 90, 80, 0.85) !important;
    background: rgba(169, 71, 63, 0.22) !important;
}

.trust-panel,
.process-panel {
    margin: 18px 14px;
    padding: 20px 16px;
    border: 1px solid rgba(201, 154, 99, 0.36);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(32, 27, 23, 0.92), rgba(20, 18, 16, 0.94));
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.process-title,
.trust-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.process-title::before,
.process-title::after,
.trust-title::before,
.trust-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(201, 154, 99, 0.7), transparent);
}

.process-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-item,
.trust-item {
    min-height: 118px;
    padding: 16px 12px;
    border: 1px solid rgba(201, 154, 99, 0.25);
    border-radius: 16px;
    background: rgba(10, 9, 8, 0.22);
    text-align: center;
}

.process-item b,
.trust-item b {
    display: block;
    color: var(--text);
    font-size: 1rem;
    margin: 8px 0 6px;
}

.process-item span,
.trust-item span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.process-icon,
.trust-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(201, 154, 99, 0.46);
    border-radius: 999px;
    font-size: 1.15rem;
}

.final-trust-strip {
    margin: 14px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border: 1px solid rgba(201, 154, 99, 0.34);
    border-radius: 18px;
    background: rgba(16, 14, 12, 0.7);
    color: var(--muted);
}

.final-trust-strip strong {
    color: var(--gold);
    display: block;
    margin-bottom: 3px;
}

@media (max-width: 760px) {
    .profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .process-grid,
    .trust-grid,
    .final-trust-strip {
        grid-template-columns: 1fr !important;
    }

    .process-panel,
    .trust-panel {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Fast dark theme correction */
html,
body {
    background: #17120f !important;
}

*,
*::before,
*::after {
    animation-duration: 0s !important;
    transition-duration: 0.08s !important;
}

.profile-card,
.process-panel,
.trust-panel,
.final-trust-strip {
    box-shadow: 0 8px 22px rgba(0,0,0,.22) !important;
}

.profile-card {
    background: #211b17 !important;
    border-color: rgba(190, 130, 92, .45) !important;
}

.profile-body {
    background: #211b17 !important;
}

.profile-media {
    background: #111 !important;
}

.profile-video {
    object-fit: contain !important;
    filter: none !important;
}

.modal-backdrop,
.request-modal-backdrop,
.profile-modal-backdrop {
    background: rgba(0,0,0,.62) !important;
}

.modal,
.modal-card,
.modal-content,
.modal-sheet,
.request-modal,
.request-sheet,
.request-panel,
.profile-modal,
.profile-modal-card,
.form-modal,
.form-card,
.application-modal,
[class*="modal"],
[class*="sheet"] {
    background: #201914 !important;
    color: #f7eee6 !important;
    border-color: rgba(190, 130, 92, .42) !important;
}

[class*="modal"] h1,
[class*="modal"] h2,
[class*="modal"] h3,
[class*="modal"] strong,
[class*="sheet"] h1,
[class*="sheet"] h2,
[class*="sheet"] h3,
[class*="sheet"] strong {
    color: #f7eee6 !important;
}

[class*="modal"] p,
[class*="modal"] span,
[class*="modal"] label,
[class*="sheet"] p,
[class*="sheet"] span,
[class*="sheet"] label,
.form-label,
label {
    color: #d8c2ae !important;
}

input,
select,
textarea {
    background: #2c2621 !important;
    color: #fff7ef !important;
    border: 1px solid rgba(190, 130, 92, .42) !important;
    box-shadow: none !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(247,238,230,.58) !important;
}

select option {
    background: #2c2621 !important;
    color: #fff7ef !important;
}

.close-button,
.modal-close,
button[aria-label*="kapat"],
button[aria-label*="Kapat"] {
    background: #2c2621 !important;
    color: #f7eee6 !important;
    border: 1px solid rgba(190, 130, 92, .38) !important;
}

.profile-cta,
.primary-cta,
button[type="submit"] {
    background: linear-gradient(180deg, #b5534a, #8d3b35) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: none !important;
}

.process-panel,
.trust-panel,
.final-trust-strip {
    background: #201914 !important;
}

@media (max-width: 760px) {
    body {
        background: #17120f !important;
    }

    .profile-section {
        padding-top: 12px !important;
    }

    .profile-grid {
        gap: 10px !important;
    }

    .profile-card {
        border-radius: 14px !important;
    }

    [class*="modal"],
    [class*="sheet"] {
        max-height: 92vh !important;
        overflow-y: auto !important;
    }
}

/* Performance mode: card videos disabled, modal video stays active */
.profile-video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    overflow: hidden;
}

.profile-video-poster img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: none !important;
}

.profile-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #7c332e !important;
    font-size: 17px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

video.profile-video {
    display: none !important;
}

/* mobile single column video fix */
.profile-video-poster,
.profile-play-badge {
    display: none !important;
}

.profile-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #111 !important;
}

@media (max-width: 760px) {
    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .profile-media {
        aspect-ratio: 16 / 10 !important;
        min-height: 330px !important;
    }

    .profile-card {
        max-width: 430px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}

/* final autoplay video fix */
.profile-video-poster,
.profile-play-badge {
    display: none !important;
}

.profile-media {
    background: #111 !important;
}

.profile-media img {
    display: none !important;
}

video.profile-video,
.profile-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #111 !important;
    pointer-events: none !important;
}

@media (max-width: 760px) {
    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .profile-media {
        aspect-ratio: 16 / 10 !important;
        min-height: 330px !important;
    }
}

/* mobile vertical video ratio + remove old floating form bar */
.floating-cta,
.sticky-cta,
.bottom-cta,
.quick-apply,
.quick-test,
.test-bar,
.lead-sticky,
.mobile-bottom-bar,
button:has(+ .bottom-sheet),
[class*="floating"],
[class*="sticky"] {
    display: none !important;
}

@media (max-width: 760px) {
    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .profile-card {
        max-width: 430px !important;
        margin: 0 auto !important;
        border-radius: 18px !important;
    }

    .profile-media {
        aspect-ratio: 9 / 13 !important;
        min-height: auto !important;
        background: #111 !important;
    }

    video.profile-video,
    .profile-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        background: #111 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .profile-media img {
        display: none !important;
    }
}

/* remove old duplicated play icon and bottom request bar */
.play-button,
.bottom-cta-bar,
#bottomCtaBar,
#bottomCtaButton {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-media {
    background: #111 !important;
}

video.profile-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* mobile card video size correction */
@media (max-width: 760px) {
    .profile-card {
        max-width: 430px !important;
        width: calc(100% - 18px) !important;
        margin: 0 auto 16px !important;
    }

    .profile-media {
        aspect-ratio: auto !important;
        height: 285px !important;
        min-height: 0 !important;
        max-height: 285px !important;
        background: #111 !important;
    }

    video.profile-video,
    .profile-video {
        width: 100% !important;
        height: 285px !important;
        object-fit: cover !important;
        object-position: center 32% !important;
    }

    .profile-body {
        padding: 14px 14px 16px !important;
    }

    .profile-cta {
        min-height: 54px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 390px) {
    .profile-media,
    video.profile-video,
    .profile-video {
        height: 250px !important;
        max-height: 250px !important;
    }
}

/* compact mobile profile cards */
@media (max-width: 760px) {
    .profile-section {
        padding: 10px 10px 8px !important;
    }

    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .profile-card {
        width: calc(100% - 18px) !important;
        max-width: 420px !important;
        margin: 0 auto 14px !important;
        border-radius: 16px !important;
    }

    .profile-media {
        height: 220px !important;
        max-height: 220px !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
    }

    video.profile-video,
    .profile-video {
        height: 220px !important;
        max-height: 220px !important;
        object-fit: cover !important;
        object-position: center 30% !important;
    }

    .profile-body {
        padding: 12px 14px 14px !important;
        gap: 6px !important;
    }

    .profile-name strong {
        font-size: 1.15rem !important;
    }

    .profile-name span {
        font-size: .92rem !important;
    }

    .profile-cta {
        min-height: 48px !important;
        margin-top: 8px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 390px) {
    .profile-media,
    video.profile-video,
    .profile-video {
        height: 200px !important;
        max-height: 200px !important;
    }
}

/* mobile: one profile card per screen */
@media (max-width: 760px) {
    html {
        scroll-behavior: smooth;
    }

    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .profile-card {
        width: calc(100% - 18px) !important;
        max-width: 430px !important;
        min-height: calc(100svh - 245px) !important;
        margin: 0 auto 30px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        scroll-snap-align: start;
    }

    .profile-media {
        height: clamp(310px, 46svh, 430px) !important;
        max-height: clamp(310px, 46svh, 430px) !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        flex: 1 1 auto !important;
    }

    video.profile-video,
    .profile-video {
        height: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center 30% !important;
    }

    .profile-body {
        flex: 0 0 auto !important;
        padding: 13px 14px 15px !important;
    }

    .profile-cta {
        min-height: 50px !important;
        margin-top: 9px !important;
    }
}


/* approved logo header */
.brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 56px;
    max-width: min(72vw, 360px);
    object-fit: contain;
}

.brand-mark,
.brand > span:not(.brand-logo) {
    display: none !important;
}

@media (max-width: 760px) {
    .brand-logo {
        height: 42px;
        max-width: min(68vw, 290px);
    }
}


/* intro brand banner */
.intro-brand-banner {
    padding: 12px 12px 4px !important;
}

.intro-brand-inner {
    max-width: 430px;
    margin: 0 auto;
    padding: 16px 15px 14px;
    border: 1px solid rgba(201, 154, 99, 0.38);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 0%, rgba(201,154,99,.18), transparent 36%),
        linear-gradient(180deg, rgba(39, 31, 26, 0.96), rgba(22, 18, 15, 0.96));
    box-shadow: 0 12px 34px rgba(0,0,0,.24);
}

.intro-brand-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.intro-brand-mark img {
    width: min(86%, 330px);
    height: auto;
    display: block;
}

.intro-brand-copy {
    text-align: center;
}

.intro-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    padding: 5px 10px;
    border: 1px solid rgba(201,154,99,.34);
    border-radius: 999px;
    color: #c99a63 !important;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(0,0,0,.16);
}

.intro-brand-copy h1 {
    margin: 0;
    color: #f7eee6 !important;
    font-size: 1.34rem;
    line-height: 1.08;
    letter-spacing: .01em;
}

.intro-brand-copy p {
    margin: 8px auto 0;
    max-width: 340px;
    color: #d8c2ae !important;
    font-size: .9rem;
    line-height: 1.45;
}

.intro-brand-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 14px;
}

.intro-brand-tags span {
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 5px 6px;
    border-radius: 11px;
    background: rgba(12, 10, 9, 0.36);
    border: 1px solid rgba(201,154,99,.25);
    color: #cdb8a7 !important;
    font-size: .72rem;
    text-align: center;
}

@media (max-width: 390px) {
    .intro-brand-inner {
        padding: 14px 12px 12px;
    }

    .intro-brand-copy h1 {
        font-size: 1.2rem;
    }

    .intro-brand-copy p {
        font-size: .84rem;
    }

    .intro-brand-tags span {
        font-size: .66rem;
    }
}


/* empty intro banner area */
#introBrandBanner .intro-brand-inner {
    min-height: 120px !important;
}

#introBrandBanner .intro-brand-inner > * {
    display: none !important;
}


#introBrandBanner .intro-brand-mark,
#introBrandBanner .intro-brand-tags,
#introBrandBanner .intro-brand-copy,
#introBrandBanner img {
    display: none !important;
}

#introBrandBanner .intro-brand-inner {
    min-height: 130px !important;
    display: grid !important;
    place-items: center !important;
    padding: 22px 18px !important;
}

#introBrandBanner .intro-single-text {
    width: 100% !important;
    max-width: 360px !important;
    text-align: center !important;
    color: #f7eee6 !important;
    font-size: 1.12rem !important;
    line-height: 1.55 !important;
    font-weight: 600 !important;
    white-space: pre-line !important;
}

/* fix intro banner text visibility */
#introBrandBanner .intro-brand-inner > .intro-single-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#introBrandBanner .intro-single-text {
    color: #f7eee6 !important;
    font-size: 1.12rem !important;
    line-height: 1.55 !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: pre-line !important;
}


/* intro banner bold italic editable text */
#introBrandBanner .intro-brand-inner {
    min-height: 130px !important;
    display: grid !important;
    place-items: center !important;
    padding: 24px 18px !important;
}

#introBrandBanner .intro-brand-inner > * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#introBrandBanner .intro-single-text {
    width: 100% !important;
    max-width: 380px !important;
    text-align: center !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-style: italic !important;
    font-weight: 900 !important;
    font-size: 1.42rem !important;
    line-height: 1.42 !important;
    letter-spacing: .01em !important;
    white-space: pre-line !important;
    background: linear-gradient(135deg, #f4e9de 0%, #d99b78 42%, #c97966 68%, #f0d1b8 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: 0 10px 28px rgba(0,0,0,.28) !important;
}

@media (max-width: 390px) {
    #introBrandBanner .intro-single-text {
        font-size: 1.24rem !important;
        line-height: 1.38 !important;
    }
}
