﻿* {
    box-sizing: border-box;
}

:root {
    --bg: #070a12;
    --panel: #101522;
    --panel-soft: #151b2b;
    --text: #f5f7ff;
    --muted: #9ca8be;
    --line: rgba(255, 255, 255, 0.09);
    --primary: #2aabee;
    --primary-dark: #1589c9;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --dark-text: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark-text);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 10, 18, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 800;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: white;
    background: linear-gradient(145deg, #38bdf8, #1677ff);
    box-shadow: 0 12px 30px rgba(42, 171, 238, 0.25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #cbd5e1;
    font-size: 14px;
}

.main-nav a:hover {
    color: white;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 0 18px;
    font-weight: 750;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), #1677ff);
    box-shadow: 0 14px 34px rgba(42, 171, 238, .22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45baf2, #2d86ff);
}

.btn-ghost {
    color: white;
    border-color: var(--line);
    background: rgba(255, 255, 255, .04);
}

.btn-light {
    color: #0b1220;
    background: white;
}

.btn-large {
    min-height: 52px;
    padding-inline: 24px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 20%, rgba(42, 171, 238, .13), transparent 30%),
        linear-gradient(180deg, #070a12 0%, #0b101b 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 171, 238, .55), transparent);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 70px;
    padding-block: 80px;
}

.hero-content h1 {
    max-width: 720px;
    margin: 20px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: .99;
    letter-spacing: -0.055em;
}

.hero-content > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .17em;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    color: #aeb8ca;
    font-size: 13px;
}

.trust-row span::before {
    content: "✓";
    margin-right: 8px;
    color: var(--primary);
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(16, 21, 34, .88);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .42);
    transform: rotate(1.4deg);
}

.panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 20px;
    border-bottom: 1px solid var(--line);
    color: #d9e1ee;
    font-size: 13px;
}

.panel-top small {
    margin-left: auto;
    color: #67e8a5;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 18px #4ade80;
}

.panel-body {
    padding: 42px;
}

.panel-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(42, 171, 238, .3);
    border-radius: 22px;
    color: var(--primary);
    background: rgba(42, 171, 238, .08);
    font-size: 30px;
}

.panel-body h2 {
    margin: 28px 0 14px;
    font-size: 32px;
    letter-spacing: -.03em;
}

.panel-body p {
    color: var(--muted);
    line-height: 1.7;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
}

.panel-stats div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
}

.panel-stats strong,
.panel-stats span {
    display: block;
}

.panel-stats strong {
    font-size: 17px;
}

.panel-stats span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb-one {
    width: 260px;
    height: 260px;
    right: 5%;
    top: 12%;
    background: rgba(31, 123, 255, .13);
}

.hero-orb-two {
    width: 200px;
    height: 200px;
    left: -90px;
    bottom: 4%;
    background: rgba(42, 171, 238, .1);
}

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin: 14px 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.section-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid #e8ebf1;
    border-radius: 22px;
    background: white;
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 171, 238, .4);
    box-shadow: 0 24px 55px rgba(19, 32, 56, .09);
}

.service-number {
    color: var(--primary);
    font-size: 13px;
    font-weight: 850;
}

.service-card h3 {
    margin: 48px 0 12px;
    font-size: 24px;
}

.service-card p {
    margin: 0;
    color: #667085;
    line-height: 1.65;
}

.service-card a {
    margin-top: auto;
    padding-top: 28px;
    color: #111827;
    font-weight: 750;
}

.section-dark {
    color: white;
    background: #090d16;
}

.section-heading-light p {
    color: #9da8bc;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 450px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-category {
    color: #aeb8ca;
    font-size: 13px;
}

.product-badge {
    padding: 6px 10px;
    border-radius: 999px;
    color: #8edaff;
    background: rgba(42,171,238,.12);
    font-size: 11px;
    font-weight: 800;
}

.product-card h3 {
    margin: 34px 0 14px;
    font-size: 30px;
    letter-spacing: -.035em;
}

.product-card > p {
    color: #aeb8ca;
    line-height: 1.7;
}

.product-card ul {
    display: grid;
    gap: 12px;
    margin: 25px 0 34px;
    padding: 0;
    list-style: none;
    color: #d5dbea;
}

.product-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--primary);
}

.product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.product-footer small,
.product-footer strong {
    display: block;
}

.product-footer small {
    margin-bottom: 6px;
    color: #8995ab;
}

.product-footer strong {
    font-size: 27px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-grid article {
    padding-top: 22px;
    border-top: 2px solid #e8ebf1;
}

.process-grid article > span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.process-grid h3 {
    margin: 35px 0 10px;
    font-size: 20px;
}

.process-grid p {
    color: #667085;
    line-height: 1.65;
}

.cta-section {
    padding: 0 0 100px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px;
    border-radius: 28px;
    color: white;
    background:
        radial-gradient(circle at right, rgba(42,171,238,.27), transparent 35%),
        #0b101b;
}

.cta-box h2 {
    max-width: 680px;
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.site-footer {
    padding: 48px 0;
    color: #9ba7bb;
    background: #070a12;
    border-top: 1px solid var(--line);
}

.footer-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.footer-wrap strong {
    color: white;
}

.footer-wrap p {
    margin: 8px 0 0;
    font-size: 13px;
}

.empty-state {
    max-width: 640px;
    padding: 50px;
    border: 1px solid #e8ebf1;
    border-radius: 24px;
}

@media (max-width: 920px) {
    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-panel {
        transform: none;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .site-header .btn {
        display: none;
    }

    .nav-wrap {
        min-height: 66px;
    }

    .hero-grid {
        gap: 42px;
        padding-block: 68px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .panel-body {
        padding: 28px;
    }

    .panel-stats,
    .service-grid,
    .product-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 78px 0;
    }

    .product-footer,
    .cta-box,
    .footer-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-box {
        padding: 34px 26px;
    }
}

/* === SUAT MEDYA ESKI TARIHLI SAYFA BASLANGIC === */
.legacy-hero {
    position: relative;
    overflow: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(42, 171, 238, .16), transparent 28%),
        radial-gradient(circle at 88% 28%, rgba(104, 87, 255, .15), transparent 27%),
        linear-gradient(180deg, #070a12 0%, #0b101b 100%);
}

.legacy-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 64px;
    padding-block: 82px;
}

.legacy-hero-content h1 {
    max-width: 760px;
    margin: 20px 0;
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: 1.01;
    letter-spacing: -.052em;
}

.legacy-hero-content > p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.legacy-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    color: #b4bfd1;
    font-size: 13px;
}

.legacy-trust-row span::before {
    content: "\2713";
    margin-right: 8px;
    color: var(--primary);
}

.legacy-highlight-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    box-shadow: 0 38px 90px rgba(0, 0, 0, .35);
}

.legacy-highlight-label {
    color: #83dcff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
}

.legacy-highlight-card h2 {
    margin: 18px 0 12px;
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.legacy-highlight-card > p {
    color: var(--muted);
    line-height: 1.7;
}

.legacy-donation-grid {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.legacy-donation-grid div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}

.legacy-donation-grid strong {
    color: #70d6ff;
    font-size: 25px;
}

.legacy-donation-grid span {
    color: #d9e2f0;
    font-size: 13px;
}

.legacy-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.legacy-orb-one {
    width: 270px;
    height: 270px;
    right: -70px;
    top: 80px;
    background: rgba(42, 171, 238, .1);
}

.legacy-orb-two {
    width: 210px;
    height: 210px;
    left: -90px;
    bottom: 30px;
    background: rgba(108, 99, 255, .09);
}

.legacy-jump-section {
    position: sticky;
    top: 76px;
    z-index: 60;
    border-bottom: 1px solid #e7ebf2;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.legacy-jump-links {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-block: 14px;
    scrollbar-width: none;
}

.legacy-jump-links::-webkit-scrollbar {
    display: none;
}

.legacy-jump-links a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid #e6eaf1;
    border-radius: 999px;
    color: #344054;
    background: white;
    font-size: 12px;
    font-weight: 750;
}

.legacy-jump-links a:hover {
    color: #0d86c8;
    border-color: rgba(42,171,238,.35);
}

.legacy-section {
    padding: 96px 0;
    scroll-margin-top: 145px;
}

.legacy-section-soft {
    background: #f5f7fb;
}

.legacy-section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.legacy-section-heading h2,
.legacy-membership-grid h2 {
    margin: 14px 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.legacy-section-heading p,
.legacy-membership-grid > div > p {
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

.legacy-price-panel {
    margin-top: 24px;
    padding: 30px;
    border: 1px solid #e6eaf1;
    border-radius: 24px;
    background: white;
    box-shadow: 0 18px 48px rgba(17, 24, 39, .05);
    scroll-margin-top: 150px;
}

.legacy-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.legacy-panel-heading > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.legacy-panel-heading span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #087db9;
    background: rgba(42,171,238,.1);
    font-size: 12px;
    font-weight: 900;
}

.legacy-panel-heading h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -.025em;
}

.legacy-panel-heading > a {
    color: #087db9;
    font-size: 13px;
    font-weight: 800;
}

.legacy-table-wrap {
    overflow-x: auto;
    border: 1px solid #e9edf3;
    border-radius: 18px;
}

.legacy-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.legacy-price-table-wide {
    min-width: 680px;
}

.legacy-price-table th,
.legacy-price-table td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid #edf0f5;
}

.legacy-price-table th {
    color: #475467;
    background: #f8fafc;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.legacy-price-table td {
    color: #344054;
    font-size: 14px;
}

.legacy-price-table td:last-child {
    color: #101828;
    font-weight: 850;
}

.legacy-price-table tr:last-child td {
    border-bottom: 0;
}

.legacy-campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.legacy-campaign-card {
    padding: 22px;
    border: 1px solid #e9edf3;
    border-radius: 18px;
    background: #fbfcfe;
}

.legacy-campaign-card h4,
.legacy-discount-list h4,
.legacy-use-card h4 {
    margin: 0 0 16px;
    font-size: 17px;
}

.legacy-campaign-description {
    margin: -6px 0 14px;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}

.legacy-campaign-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legacy-campaign-card li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #667085;
    font-size: 13px;
}

.legacy-campaign-card strong {
    color: #101828;
}

.legacy-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    color: #475467;
    background: #f3f9fd;
    font-size: 13px;
    line-height: 1.65;
}

.legacy-discount-list {
    margin-top: 20px;
    padding: 22px;
    border: 1px solid #e9edf3;
    border-radius: 18px;
    background: #fbfcfe;
}

.legacy-discount-list > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.legacy-discount-list span {
    padding: 9px 12px;
    border: 1px solid #e4e8ef;
    border-radius: 999px;
    color: #344054;
    background: white;
    font-size: 12px;
    font-weight: 750;
}

.legacy-bot-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 20px;
}

.legacy-use-card {
    padding: 28px;
    border-radius: 18px;
    color: white;
    background: #0b101b;
}

.legacy-use-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legacy-use-card li::before {
    content: "\2713";
    margin-right: 9px;
    color: #68d2ff;
}

.legacy-use-card p {
    margin: 24px 0 0;
    color: #aab5c8;
    font-size: 13px;
    line-height: 1.7;
}

.legacy-special-campaign {
    margin-top: 24px;
    padding: 36px;
    border-radius: 24px;
    color: white;
    background:
        radial-gradient(circle at right top, rgba(42,171,238,.24), transparent 35%),
        #0b101b;
}

.legacy-special-badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #83dcff;
    background: rgba(42,171,238,.12);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
}

.legacy-special-campaign h3 {
    margin: 18px 0 10px;
    font-size: 29px;
    letter-spacing: -.035em;
}

.legacy-special-campaign > p {
    color: #aab5c8;
}

.legacy-discount-list-dark {
    padding: 0;
    border: 0;
    background: transparent;
}

.legacy-discount-list-dark span {
    color: #dbe4f2;
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
}

.legacy-membership-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 56px;
}

.legacy-membership-card {
    padding: 34px;
    border: 1px solid #e6eaf1;
    border-radius: 24px;
    background: white;
    box-shadow: 0 18px 50px rgba(17,24,39,.06);
}

.legacy-membership-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
}

.legacy-membership-card p {
    color: #667085;
    line-height: 1.7;
}

.legacy-contact-section {
    padding: 0 0 100px;
    background: #f5f7fb;
}

.legacy-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    border-radius: 28px;
    color: white;
    background:
        radial-gradient(circle at right, rgba(42,171,238,.28), transparent 35%),
        #0b101b;
}

.legacy-contact-box h2 {
    max-width: 700px;
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.legacy-contact-box p {
    max-width: 680px;
    color: #aab5c8;
    line-height: 1.7;
}

.legacy-contact-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

@media (max-width: 920px) {
    .legacy-hero-grid,
    .legacy-membership-grid,
    .legacy-bot-grid {
        grid-template-columns: 1fr;
    }

    .legacy-hero-grid {
        min-height: auto;
    }

    .legacy-contact-box {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .legacy-jump-section {
        top: 66px;
    }

    .legacy-hero-grid {
        gap: 38px;
        padding-block: 64px;
    }

    .legacy-hero-content h1 {
        font-size: 43px;
    }

    .legacy-highlight-card,
    .legacy-price-panel,
    .legacy-special-campaign,
    .legacy-membership-card {
        padding: 22px;
    }

    .legacy-panel-heading,
    .legacy-panel-heading > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .legacy-campaign-grid {
        grid-template-columns: 1fr;
    }

    .legacy-contact-box {
        padding: 32px 24px;
    }

    .legacy-contact-actions {
        flex-direction: column;
    }

    .legacy-contact-actions .btn {
        width: 100%;
    }
}
/* === SUAT MEDYA ESKI TARIHLI SAYFA BITIS === */

/* === SUAT MEDYA ESKI TARIHLI ANASAYFA BAGLANTISI BASLANGIC === */

.nav-special-link {
    position: relative;
    color: #8edaff !important;
    font-weight: 750;
}

.nav-special-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #1677ff);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.nav-special-link:hover::after {
    transform: scaleX(1);
}

.legacy-home-section {
    padding: 96px 0;
    background: #f5f7fb;
}

.legacy-home-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: 54px;
    padding: 58px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    color: white;
    background:
        radial-gradient(circle at 88% 16%, rgba(42, 171, 238, .24), transparent 30%),
        radial-gradient(circle at 0 100%, rgba(22, 119, 255, .16), transparent 34%),
        #090e18;
    box-shadow: 0 32px 80px rgba(14, 24, 43, .16);
}

.legacy-home-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 310px;
    height: 310px;
    right: -130px;
    bottom: -175px;
    border: 1px solid rgba(142, 218, 255, .18);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(142, 218, 255, .035),
        0 0 0 86px rgba(142, 218, 255, .025);
}

.legacy-home-copy h2 {
    max-width: 720px;
    margin: 18px 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.legacy-home-copy > p {
    max-width: 680px;
    margin: 0;
    color: #aeb8ca;
    font-size: 17px;
    line-height: 1.75;
}

.legacy-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.legacy-home-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #b8c3d5;
    font-size: 13px;
}

.legacy-home-notes span::before {
    content: "\2713";
    margin-right: 7px;
    color: #38bdf8;
}

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

.legacy-home-stats article {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(12px);
}

.legacy-home-stats strong,
.legacy-home-stats span {
    display: block;
}

.legacy-home-stats strong {
    color: white;
    font-size: 23px;
    letter-spacing: -.025em;
}

.legacy-home-stats span {
    margin-top: 7px;
    color: #9eabc0;
    font-size: 12px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 920px) {
    .legacy-home-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .legacy-home-section {
        padding: 68px 0;
    }

    .legacy-home-card {
        gap: 36px;
        padding: 34px 24px;
        border-radius: 24px;
    }

    .legacy-home-copy > p {
        font-size: 15px;
    }

    .legacy-home-actions .btn {
        width: 100%;
    }

    .legacy-home-stats {
        grid-template-columns: 1fr;
    }

    .legacy-home-stats article {
        min-height: 112px;
    }
}

/* === SUAT MEDYA ESKI TARIHLI ANASAYFA BAGLANTISI BITIS === */

/* === SUAT MEDYA ESKI TARIHLI KARAKTER DUZELTME BASLANGIC === */
.legacy-trust-row span::before,
.legacy-use-card li::before,
.legacy-home-notes span::before {
    content: "\2713" !important;
}
/* === SUAT MEDYA ESKI TARIHLI KARAKTER DUZELTME BITIS === */

.legacy-stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 4px 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.legacy-stock-badge.is-available {
    border-color: rgba(74, 222, 128, .22);
    color: #bbf7d0;
    background: rgba(22, 163, 74, .11);
}

.legacy-stock-badge.is-limited {
    border-color: rgba(251, 191, 36, .25);
    color: #fde68a;
    background: rgba(217, 119, 6, .11);
}

.legacy-stock-badge.is-out {
    border-color: rgba(251, 113, 133, .24);
    color: #fecdd3;
    background: rgba(190, 24, 93, .1);
}

.legacy-stock-badge.is-check {
    border-color: rgba(125, 211, 252, .22);
    color: #bae6fd;
    background: rgba(14, 165, 233, .09);
}

.legacy-price-with-stock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.legacy-empty-row {
    padding: 28px 16px !important;
    color: var(--muted);
    text-align: center !important;
}

@media (max-width: 720px) {
    .legacy-price-with-stock {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

/* === ESKI TARIHLI TOPLU KULLANICI DENEYIMI BASLANGIC === */
.legacy-filter-section {
    padding: 28px 0 0;
    background: #07101d;
}

.legacy-filter-card {
    display: grid;
    grid-template-columns: minmax(240px, .85fr) minmax(0, 1.6fr);
    gap: 28px;
    align-items: end;
    padding: 28px;
    border: 1px solid rgba(125, 211, 252, .16);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(13, 31, 52, .96), rgba(8, 19, 35, .98));
    box-shadow: 0 22px 55px rgba(0, 0, 0, .2);
}

.legacy-filter-copy h2 {
    margin: 9px 0 8px;
    color: #f8fbff;
    font-size: clamp(22px, 3vw, 31px);
    line-height: 1.12;
}

.legacy-filter-copy p {
    margin: 0;
    color: #9fb0c8;
    line-height: 1.65;
}

.legacy-filter-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.legacy-filter-field {
    display: grid;
    gap: 7px;
}

.legacy-filter-field > span {
    color: #c8d5e6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.legacy-filter-field input,
.legacy-filter-field select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(148, 163, 184, .19);
    border-radius: 12px;
    outline: none;
    color: #f8fafc;
    background: rgba(3, 10, 22, .68);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.legacy-filter-field input::placeholder {
    color: #718198;
}

.legacy-filter-field input:focus,
.legacy-filter-field select:focus {
    border-color: rgba(56, 189, 248, .7);
    background: rgba(3, 10, 22, .9);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .12);
}

.legacy-filter-reset {
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(148, 163, 184, .23);
    border-radius: 12px;
    color: #dbe8f8;
    font-weight: 800;
    white-space: nowrap;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.legacy-filter-reset:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, .45);
    background: rgba(56, 189, 248, .08);
}

.legacy-filter-summary {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: -10px;
    color: #8495ad;
    font-size: 12px;
}

.legacy-filter-summary strong {
    color: #7dd3fc;
    font-size: 14px;
}

.legacy-no-results {
    display: grid;
    gap: 7px;
    margin: 0 0 24px;
    padding: 24px;
    border: 1px dashed rgba(125, 211, 252, .26);
    border-radius: 18px;
    color: #a9b9ce;
    text-align: center;
    background: rgba(14, 165, 233, .045);
}

.legacy-no-results[hidden] {
    display: none;
}

.legacy-no-results strong {
    color: #eef8ff;
    font-size: 17px;
}

.legacy-price-panel[hidden] {
    display: none;
}

.legacy-action-column {
    width: 118px;
    text-align: right !important;
}

.legacy-quote-button {
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(56, 189, 248, .34);
    border-radius: 10px;
    color: #dff6ff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    background: rgba(14, 165, 233, .1);
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.legacy-quote-button:hover {
    transform: translateY(-1px);
    border-color: rgba(125, 211, 252, .75);
    background: rgba(14, 165, 233, .2);
}

.legacy-quote-button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.legacy-quote-button-small {
    min-height: 29px;
    padding: 5px 9px;
    font-size: 11px;
}

.legacy-faq-section {
    background: #081321;
}

.legacy-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 52px;
    align-items: start;
}

.legacy-faq-heading h2 {
    margin: 10px 0 12px;
    color: #f8fbff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.legacy-faq-heading p {
    margin: 0;
    color: #9fb0c8;
    line-height: 1.7;
}

.legacy-faq-list {
    display: grid;
    gap: 12px;
}

.legacy-faq-item {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .15);
    border-radius: 16px;
    background: rgba(5, 15, 29, .72);
}

.legacy-faq-item summary {
    position: relative;
    padding: 19px 52px 19px 20px;
    color: #eaf4ff;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.legacy-faq-item summary::-webkit-details-marker {
    display: none;
}

.legacy-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 19px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    color: #7dd3fc;
    background: rgba(56, 189, 248, .1);
    transform: translateY(-50%);
}

.legacy-faq-item[open] summary::after {
    content: "−";
}

.legacy-faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: #9fb0c8;
    line-height: 1.7;
}

.legacy-floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: grid;
    gap: 1px;
    min-width: 132px;
    padding: 12px 16px;
    border: 1px solid rgba(125, 211, 252, .3);
    border-radius: 16px;
    color: #e9f9ff;
    text-decoration: none;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 16px 40px rgba(14, 165, 233, .28);
    transition: transform .18s ease, box-shadow .18s ease;
}

.legacy-floating-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(14, 165, 233, .38);
}

.legacy-floating-contact span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .85;
    text-transform: uppercase;
}

.legacy-floating-contact strong {
    font-size: 15px;
}

.legacy-mobile-contact {
    display: none;
}

.legacy-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 90;
    max-width: min(440px, calc(100% - 32px));
    padding: 13px 17px;
    border: 1px solid rgba(74, 222, 128, .25);
    border-radius: 13px;
    color: #dcfce7;
    text-align: center;
    background: rgba(5, 46, 22, .96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity .2s ease, transform .2s ease;
}

.legacy-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
    .legacy-filter-card {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .legacy-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legacy-filter-summary {
        grid-column: 1;
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 70px;
    }

    .legacy-filter-card {
        padding: 22px 18px;
        border-radius: 19px;
    }

    .legacy-filter-grid {
        grid-template-columns: 1fr;
    }

    .legacy-action-column {
        width: auto;
    }

    .legacy-price-table th.legacy-action-column,
    .legacy-price-table td.legacy-action-column {
        position: sticky;
        right: 0;
        background: #0a1728;
    }

    .legacy-faq-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legacy-floating-contact {
        display: none;
    }

    .legacy-mobile-contact {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 75;
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 8px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(148, 163, 184, .18);
        background: rgba(4, 11, 22, .96);
        box-shadow: 0 -12px 32px rgba(0, 0, 0, .28);
        backdrop-filter: blur(14px);
    }

    .legacy-mobile-contact a {
        display: grid;
        min-height: 45px;
        place-items: center;
        border: 1px solid rgba(148, 163, 184, .18);
        border-radius: 11px;
        color: #e8f3ff;
        font-size: 13px;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
        background: rgba(255, 255, 255, .04);
    }

    .legacy-mobile-contact a:last-child {
        border-color: transparent;
        background: linear-gradient(135deg, #0ea5e9, #2563eb);
    }

    .legacy-toast {
        bottom: 82px;
    }
}

@media (max-width: 520px) {
    .legacy-action-column {
        min-width: 104px;
    }

    .legacy-quote-button {
        width: 100%;
    }
}
/* === ESKI TARIHLI TOPLU KULLANICI DENEYIMI BITIS === */

/* === ESKI TARIHLI TEKLIF TALEP SISTEMI BASLANGIC === */
.legacy-feedback-section {
    padding: 22px 0 0;
    background: #07101d;
}

.legacy-feedback-message {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid transparent;
    border-radius: 16px;
}

.legacy-feedback-message strong,
.legacy-feedback-message span {
    grid-column: 1;
}

.legacy-feedback-message strong {
    font-size: 16px;
}

.legacy-feedback-message span {
    line-height: 1.55;
}

.legacy-feedback-message a {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 10px;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, .07);
}

.legacy-feedback-message.is-success {
    border-color: rgba(74, 222, 128, .26);
    color: #dcfce7;
    background: rgba(20, 83, 45, .28);
}

.legacy-feedback-message.is-error {
    grid-template-columns: 1fr;
    border-color: rgba(251, 113, 133, .27);
    color: #ffe4e6;
    background: rgba(136, 19, 55, .22);
}

.legacy-quote-button.is-selected {
    border-color: rgba(74, 222, 128, .42);
    color: #dcfce7;
    background: rgba(22, 163, 74, .16);
}

.legacy-selection-panel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 72;
    width: min(430px, calc(100vw - 44px));
    max-height: min(680px, calc(100vh - 44px));
    overflow: auto;
    padding: 18px;
    border: 1px solid rgba(125, 211, 252, .25);
    border-radius: 20px;
    color: #ecf7ff;
    background: rgba(5, 15, 29, .97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
    backdrop-filter: blur(18px);
}

.legacy-selection-panel[hidden] {
    display: none;
}

.legacy-selection-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, .15);
}

.legacy-selection-header > div {
    display: grid;
    gap: 4px;
}

.legacy-selection-header span {
    color: #7dd3fc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
}

.legacy-selection-header strong {
    font-size: 16px;
}

.legacy-selection-header b {
    color: #7dd3fc;
}

.legacy-selection-clear {
    padding: 5px 0;
    border: 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    background: transparent;
    cursor: pointer;
}

.legacy-selection-clear:hover {
    color: #fda4af;
}

.legacy-selection-items {
    display: grid;
    gap: 10px;
    max-height: 280px;
    overflow: auto;
    margin: 14px -4px 0 0;
    padding-right: 4px;
}

.legacy-selection-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, .13);
    border-radius: 13px;
    background: rgba(255, 255, 255, .025);
}

.legacy-selection-item-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.legacy-selection-item-copy strong,
.legacy-selection-item-copy span,
.legacy-selection-item-copy b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.legacy-selection-item-copy strong {
    color: #f8fafc;
    font-size: 13px;
}

.legacy-selection-item-copy span {
    color: #91a2b9;
    font-size: 11px;
}

.legacy-selection-item-copy b {
    color: #bae6fd;
    font-size: 12px;
}

.legacy-selection-quantity {
    display: grid;
    grid-template-columns: 28px 30px 28px;
    gap: 5px;
    align-items: center;
    justify-items: center;
}

.legacy-quantity-button {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(125, 211, 252, .22);
    border-radius: 8px;
    color: #e0f2fe;
    font-size: 16px;
    line-height: 1;
    background: rgba(14, 165, 233, .08);
    cursor: pointer;
}

.legacy-selection-remove {
    grid-column: 1 / -1;
    padding: 2px 0;
    border: 0;
    color: #fda4af;
    font-size: 10px;
    font-weight: 800;
    background: transparent;
    cursor: pointer;
}

.legacy-selection-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.legacy-selection-summary > div {
    display: grid;
    gap: 5px;
    padding: 11px 12px;
    border: 1px solid rgba(148, 163, 184, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
}

.legacy-selection-summary span {
    color: #8fa0b7;
    font-size: 10px;
    line-height: 1.35;
}

.legacy-selection-summary strong {
    color: #f8fafc;
    font-size: 13px;
}

.legacy-selection-note {
    margin: 12px 0;
    color: #8495ad;
    font-size: 11px;
    line-height: 1.5;
}

.legacy-selection-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 9px;
}

.legacy-selection-actions button {
    min-height: 43px;
    padding: 0 12px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

.legacy-selection-secondary {
    border: 1px solid rgba(148, 163, 184, .18);
    color: #d9e7f7;
    background: rgba(255, 255, 255, .04);
}

.legacy-selection-primary {
    border: 0;
    color: #03131d;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
}

body.has-legacy-selection .legacy-floating-contact {
    display: none;
}

.legacy-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
}

.legacy-quote-modal[hidden] {
    display: none;
}

.legacy-quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 6, 15, .82);
    backdrop-filter: blur(8px);
}

.legacy-quote-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 30px;
    border: 1px solid rgba(125, 211, 252, .2);
    border-radius: 23px;
    color: #edf7ff;
    background: linear-gradient(145deg, #0b1c31, #07111f);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .6);
}

.legacy-quote-dialog h2 {
    margin: 9px 42px 10px 0;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.1;
}

.legacy-quote-dialog > p {
    margin: 0 0 22px;
    color: #9eafc5;
    line-height: 1.65;
}

.legacy-quote-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 50%;
    color: #dce9f8;
    font-size: 24px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
}

.legacy-quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.legacy-quote-field {
    display: grid;
    gap: 7px;
}

.legacy-quote-field-full,
.legacy-quote-consent,
.legacy-quote-contact-warning,
.legacy-quote-submit {
    grid-column: 1 / -1;
}

.legacy-quote-field > span {
    color: #c7d5e6;
    font-size: 12px;
    font-weight: 800;
}

.legacy-quote-field input,
.legacy-quote-field textarea {
    width: 100%;
    min-height: 45px;
    padding: 11px 13px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 11px;
    outline: none;
    color: #f8fafc;
    background: rgba(2, 9, 20, .66);
}

.legacy-quote-field textarea {
    resize: vertical;
}

.legacy-quote-field input:focus,
.legacy-quote-field textarea:focus {
    border-color: rgba(56, 189, 248, .7);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .12);
}

.legacy-quote-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #9fb0c8;
    font-size: 12px;
    line-height: 1.55;
}

.legacy-quote-consent input {
    margin-top: 3px;
}

.legacy-quote-contact-warning {
    padding: 11px 13px;
    border: 1px solid rgba(251, 113, 133, .25);
    border-radius: 11px;
    color: #fecdd3;
    font-size: 12px;
    background: rgba(136, 19, 55, .16);
}

.legacy-quote-contact-warning[hidden] {
    display: none;
}

.legacy-quote-submit {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    color: #03131d;
    font-weight: 900;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    cursor: pointer;
}

.legacy-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

body.legacy-modal-open {
    overflow: hidden;
}

.legacy-toast.is-error {
    border-color: rgba(251, 113, 133, .28);
    color: #ffe4e6;
    background: rgba(76, 5, 25, .96);
}

@media (max-width: 760px) {
    body.has-legacy-selection {
        padding-bottom: 82px;
    }

    body.has-legacy-selection .legacy-mobile-contact {
        display: none;
    }

    .legacy-selection-panel {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        max-height: min(70vh, 610px);
        padding: 15px;
        border-radius: 17px;
    }

    .legacy-selection-items {
        max-height: 220px;
    }

    .legacy-selection-actions {
        grid-template-columns: 1fr;
    }

    .legacy-feedback-message {
        grid-template-columns: 1fr;
    }

    .legacy-feedback-message a {
        grid-column: 1;
        grid-row: auto;
        margin-top: 7px;
    }

    .legacy-quote-dialog {
        padding: 25px 18px 20px;
        border-radius: 18px;
    }

    .legacy-quote-form {
        grid-template-columns: 1fr;
    }

    .legacy-quote-field-full,
    .legacy-quote-consent,
    .legacy-quote-contact-warning,
    .legacy-quote-submit {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .legacy-selection-item {
        grid-template-columns: 1fr;
    }

    .legacy-selection-quantity {
        grid-template-columns: 32px 36px 32px 1fr;
        justify-items: center;
    }

    .legacy-selection-remove {
        grid-column: 4;
    }

    .legacy-selection-summary {
        grid-template-columns: 1fr;
    }
}
/* === ESKI TARIHLI TEKLIF TALEP SISTEMI BITIS === */

/* === SUAT MEDYA ESKI TARIHLI GORUNURLUK DUZELTMESI V10 BASLANGIC === */

/* Açık renkli fiyat tablolarında stok ve teklif alanlarının okunabilirliği */
.legacy-table-wrap {
    background: #ffffff;
}

.legacy-price-table tbody tr {
    background: #ffffff;
    transition: background-color .16s ease;
}

.legacy-price-table tbody tr:nth-child(even) {
    background: #fbfdff;
}

.legacy-price-table tbody tr:hover {
    background: #f0f9ff;
}

.legacy-price-table td {
    color: #24324a;
}

.legacy-price-table td strong,
.legacy-price-with-stock > strong {
    color: #0f172a;
}

.legacy-stock-badge {
    opacity: 1;
    box-shadow: none;
}

.legacy-stock-badge.is-available {
    color: #166534 !important;
    border-color: #86efac !important;
    background: #dcfce7 !important;
}

.legacy-stock-badge.is-limited {
    color: #92400e !important;
    border-color: #fcd34d !important;
    background: #fef3c7 !important;
}

.legacy-stock-badge.is-out {
    color: #9f1239 !important;
    border-color: #fda4af !important;
    background: #ffe4e6 !important;
}

.legacy-stock-badge.is-check {
    color: #075985 !important;
    border-color: #7dd3fc !important;
    background: #e0f2fe !important;
}

.legacy-action-column {
    min-width: 126px;
}

.legacy-quote-button {
    opacity: 1;
    color: #075985 !important;
    border-color: #38bdf8 !important;
    background: #e0f2fe !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, .08);
}

.legacy-quote-button:hover {
    color: #ffffff !important;
    border-color: #0284c7 !important;
    background: #0284c7 !important;
    box-shadow: 0 8px 18px rgba(2, 132, 199, .2);
}

.legacy-quote-button:focus-visible {
    outline: 3px solid rgba(14, 165, 233, .28);
    outline-offset: 2px;
}

.legacy-quote-button:disabled {
    opacity: 1 !important;
    color: #64748b !important;
    border-color: #cbd5e1 !important;
    background: #f1f5f9 !important;
    box-shadow: none;
    cursor: not-allowed;
}

.legacy-quote-button.is-selected {
    color: #ffffff !important;
    border-color: #047857 !important;
    background: #059669 !important;
    box-shadow: 0 8px 18px rgba(5, 150, 105, .2);
}

/* Bot bilgi kutusu uzun tablo kadar gereksiz yere uzamasın */
.legacy-bot-grid {
    align-items: start;
}

.legacy-use-card {
    align-self: start;
    height: auto;
    min-height: 0;
}

.legacy-use-card h4 {
    color: #ffffff;
}

.legacy-use-card li {
    color: #e5edf8;
    line-height: 1.5;
}

.legacy-use-card p {
    color: #c1ccdc;
}

/* Hesap tablosundaki iki fiyat alanının daralmaması */
.legacy-price-table-wide td:nth-child(2),
.legacy-price-table-wide td:nth-child(3) {
    min-width: 260px;
}

.legacy-price-with-stock {
    flex-wrap: wrap;
}

/* Sayfa içi menü ve bölüm bağlantıları üst menünün altında görünür kalsın */
.legacy-jump-section {
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

#fiyatlar,
#gruplar,
#kanallar,
#hesaplar,
#botlar,
#uyeli-kanallar,
#iletisim,
#sik-sorulanlar {
    scroll-margin-top: 154px;
}

/* Filtre alanlarındaki seçeneklerin işletim sistemi menüsünde görünmesi */
.legacy-filter-field select option {
    color: #0f172a;
    background: #ffffff;
}

/* Yatay kaydırılabilen tabloların kaydırma çubuğunu daha anlaşılır yap */
.legacy-table-wrap {
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #eef2f7;
}

.legacy-table-wrap::-webkit-scrollbar {
    height: 10px;
}

.legacy-table-wrap::-webkit-scrollbar-track {
    background: #eef2f7;
}

.legacy-table-wrap::-webkit-scrollbar-thumb {
    border: 2px solid #eef2f7;
    border-radius: 999px;
    background: #94a3b8;
}

@media (max-width: 920px) {
    .legacy-use-card {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .legacy-price-panel {
        padding-inline: 16px;
    }

    .legacy-price-table {
        min-width: 650px;
    }

    .legacy-price-table-wide {
        min-width: 860px;
    }

    .legacy-price-table th,
    .legacy-price-table td {
        padding: 14px 13px;
    }

    .legacy-price-table th:first-child,
    .legacy-price-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        background: inherit;
        box-shadow: 8px 0 16px rgba(15, 23, 42, .04);
    }

    .legacy-price-table th.legacy-action-column,
    .legacy-price-table td.legacy-action-column {
        z-index: 3;
        color: #0f172a;
        background: #ffffff !important;
        box-shadow: -8px 0 16px rgba(15, 23, 42, .06);
    }

    .legacy-price-table tbody tr:nth-child(even) td.legacy-action-column {
        background: #fbfdff !important;
    }

    .legacy-price-table tbody tr:hover td.legacy-action-column {
        background: #f0f9ff !important;
    }

    .legacy-stock-badge {
        min-height: 28px;
        padding-inline: 10px;
    }
}

@media (max-width: 520px) {
    .legacy-price-panel {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .legacy-panel-heading {
        margin-bottom: 16px;
    }

    .legacy-panel-heading h3 {
        font-size: 21px;
    }

    .legacy-action-column {
        min-width: 116px;
    }

    .legacy-quote-button {
        min-height: 36px;
        padding-inline: 10px;
    }
}

/* === SUAT MEDYA ESKI TARIHLI GORUNURLUK DUZELTMESI V10 BITIS === */

/* === SUAT MEDYA ESKI TARIHLI TOPLU GELISTIRME V11 BASLANGIC === */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.legacy-last-update {
    color: #bae6fd;
}

.legacy-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.legacy-filter-share,
.legacy-filter-reset {
    min-height: 46px;
    padding: 0 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.legacy-filter-share {
    border: 1px solid rgba(56, 189, 248, .42);
    color: #e0f2fe;
    background: rgba(14, 165, 233, .13);
}

.legacy-filter-share:hover,
.legacy-filter-reset:hover {
    transform: translateY(-1px);
}

.legacy-stock-summary {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.legacy-stock-summary > div {
    display: grid;
    gap: 4px;
    padding: 12px 13px;
    border: 1px solid rgba(148, 163, 184, .13);
    border-radius: 13px;
    background: rgba(255, 255, 255, .025);
}

.legacy-stock-summary strong {
    color: #e0f2fe;
    font-size: 20px;
    line-height: 1;
}

.legacy-stock-summary span {
    color: #8fa0b7;
    font-size: 10px;
    line-height: 1.35;
}

.legacy-process-section {
    padding: 72px 0 34px;
    background: linear-gradient(180deg, #07101d 0, #f8fafc 76%);
}

.legacy-process-heading {
    max-width: 800px;
    margin-bottom: 26px;
}

.legacy-process-heading h2 {
    margin: 10px 0 11px;
    color: #f8fbff;
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.legacy-process-heading p {
    margin: 0;
    color: #a5b5c9;
    line-height: 1.7;
}

.legacy-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.legacy-process-grid article {
    min-height: 196px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 17px 42px rgba(15, 23, 42, .08);
}

.legacy-process-grid article > span {
    display: inline-grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 11px;
    color: #0369a1;
    font-size: 11px;
    font-weight: 900;
    background: #e0f2fe;
}

.legacy-process-grid h3 {
    margin: 20px 0 8px;
    color: #0f172a;
    font-size: 18px;
}

.legacy-process-grid p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.legacy-buyer-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding: 17px 20px;
    border: 1px solid #bae6fd;
    border-radius: 17px;
    background: #f0f9ff;
}

.legacy-buyer-note strong {
    color: #075985;
    white-space: nowrap;
}

.legacy-buyer-note p {
    margin: 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.6;
}

.legacy-selection-actions {
    grid-template-columns: 1fr 1fr 1.2fr;
}

.legacy-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 100px;
    z-index: 58;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(125, 211, 252, .35);
    border-radius: 14px;
    color: #e0f2fe;
    font-size: 20px;
    background: rgba(7, 16, 29, .92);
    box-shadow: 0 12px 30px rgba(2, 8, 23, .25);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.legacy-back-to-top[hidden] {
    display: none;
}

.legacy-back-to-top:focus-visible,
.legacy-filter-share:focus-visible,
.legacy-filter-reset:focus-visible {
    outline: 3px solid rgba(56, 189, 248, .28);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .legacy-stock-summary {
        grid-column: 1;
    }

    .legacy-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .legacy-filter-actions {
        grid-template-columns: 1fr 1fr;
    }

    .legacy-stock-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legacy-process-section {
        padding-top: 52px;
    }

    .legacy-process-grid {
        grid-template-columns: 1fr;
    }

    .legacy-process-grid article {
        min-height: 0;
    }

    .legacy-buyer-note {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .legacy-selection-actions {
        grid-template-columns: 1fr;
    }

    .legacy-back-to-top {
        right: 14px;
        bottom: 82px;
    }
}

@media (max-width: 480px) {
    .legacy-filter-actions,
    .legacy-stock-summary {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .legacy-quote-button,
    .legacy-filter-share,
    .legacy-filter-reset,
    .legacy-floating-contact,
    .legacy-toast,
    .legacy-price-table tbody tr {
        transition: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}

/* === SUAT MEDYA ESKI TARIHLI TOPLU GELISTIRME V11 BITIS === */

/* === SUAT MEDYA ESKI TARIHLI MOBIL KART GORUNUMU V12 BASLANGIC === */

@media (max-width: 680px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .legacy-jump-section {
        top: 72px;
        overflow: hidden;
    }

    .legacy-jump-links {
        width: 100%;
        padding: 10px 16px;
        gap: 8px;
        scroll-padding-inline: 16px;
        scroll-snap-type: x proximity;
        overscroll-behavior-inline: contain;
    }

    .legacy-jump-links a {
        scroll-snap-align: start;
        padding: 9px 12px;
    }

    .legacy-section {
        padding: 58px 0;
    }

    .legacy-section-heading {
        margin-bottom: 26px;
    }

    .legacy-section-heading h2,
    .legacy-membership-grid h2 {
        font-size: clamp(29px, 9vw, 39px);
        line-height: 1.12;
    }

    .legacy-price-panel {
        margin-top: 18px;
        padding: 16px;
        border-radius: 20px;
        overflow: hidden;
    }

    .legacy-panel-heading {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    .legacy-panel-heading > div {
        width: 100%;
        align-items: flex-start;
        gap: 12px;
    }

    .legacy-panel-heading span {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .legacy-panel-heading h3 {
        min-width: 0;
        padding-top: 5px;
        font-size: 20px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .legacy-panel-heading > a {
        align-self: flex-start;
        padding-left: 50px;
    }

    .legacy-table-wrap {
        overflow: visible !important;
        border: 0;
        border-radius: 0;
        background: transparent;
        scrollbar-width: none;
    }

    .legacy-table-wrap::-webkit-scrollbar {
        display: none;
    }

    .legacy-price-table,
    .legacy-price-table-wide {
        display: block;
        width: 100%;
        min-width: 0 !important;
    }

    .legacy-price-table thead {
        display: none;
    }

    .legacy-price-table tbody {
        display: grid;
        width: 100%;
        gap: 12px;
    }

    .legacy-price-table tbody tr[data-legacy-row] {
        display: grid;
        width: 100%;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        overflow: hidden;
        border: 1px solid #dce5f0;
        border-radius: 16px;
        background: #ffffff !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .055);
    }

    .legacy-price-table tbody tr[data-legacy-row][hidden] {
        display: none !important;
    }

    .legacy-price-table tbody tr[data-legacy-row]:hover {
        background: #ffffff !important;
    }

    .legacy-price-table tbody td {
        position: static !important;
        min-width: 0 !important;
        padding: 12px !important;
        border: 0 !important;
        color: #1e293b;
        background: transparent !important;
        box-shadow: none !important;
        overflow-wrap: anywhere;
    }

    .legacy-price-table tbody td::before {
        display: block;
        margin-bottom: 5px;
        color: #64748b;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .055em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(1)::before {
        content: "Dönem";
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(2)::before {
        content: "Fiyat";
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(3)::before {
        content: "Stok";
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(4)::before {
        content: "İşlem";
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(1),
    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(2) {
        border-bottom: 1px solid #e6edf5 !important;
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(1),
    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(3) {
        border-right: 1px solid #e6edf5 !important;
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(2) {
        color: #0f172a;
        font-size: 16px;
        font-weight: 900;
    }

    .legacy-action-column {
        width: auto !important;
        min-width: 0 !important;
    }

    .legacy-stock-badge {
        display: inline-flex;
        max-width: 100%;
        min-height: 30px;
        align-items: center;
        justify-content: center;
        padding: 6px 9px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .legacy-quote-button,
    .legacy-quote-button-small {
        width: 100%;
        min-height: 42px;
        padding: 8px 10px;
        white-space: normal;
        line-height: 1.15;
    }

    .legacy-price-table-wide tbody tr[data-legacy-row] {
        grid-template-columns: minmax(0, 1fr);
    }

    .legacy-price-table-wide tbody td:first-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 11px 13px !important;
        border-bottom: 1px solid #dce5f0 !important;
        color: #0f172a;
        font-size: 16px;
        font-weight: 900;
        background: #f8fafc !important;
    }

    .legacy-price-table-wide tbody td:first-child::before {
        content: "Yıl";
        margin: 0;
    }

    .legacy-price-table-wide tbody td:nth-child(2)::before {
        content: "Yabancı Numara";
    }

    .legacy-price-table-wide tbody td:nth-child(3)::before {
        content: "Yerli Numara";
    }

    .legacy-price-table-wide tbody td:nth-child(2) {
        border-bottom: 1px solid #e6edf5 !important;
    }

    .legacy-price-table-wide tbody td:nth-child(n+2) {
        padding: 14px !important;
    }

    .legacy-price-with-stock {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .legacy-price-with-stock > strong {
        min-width: 0;
        font-size: 17px;
        line-height: 1.25;
    }

    .legacy-price-with-stock > .legacy-stock-badge {
        justify-self: end;
    }

    .legacy-price-with-stock > .legacy-quote-button {
        grid-column: 1 / -1;
    }

    .legacy-price-table tbody tr:not([data-legacy-row]) {
        display: block;
        width: 100%;
    }

    .legacy-price-table tbody tr:not([data-legacy-row]) td {
        display: block;
        width: 100%;
        padding: 18px !important;
        border: 1px solid #dce5f0 !important;
        border-radius: 14px;
        text-align: center;
        background: #f8fafc !important;
    }

    .legacy-price-table tbody tr:not([data-legacy-row]) td::before {
        display: none;
    }

    .legacy-bot-grid,
    .legacy-campaign-grid,
    .legacy-membership-grid,
    .legacy-process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .legacy-use-card {
        width: 100%;
        margin-top: 12px;
    }

    .legacy-campaign-card,
    .legacy-discount-list,
    .legacy-note,
    .legacy-buyer-note {
        border-radius: 15px;
    }

    .legacy-filter-card {
        padding: 20px 16px;
    }

    .legacy-filter-copy h2 {
        font-size: 26px;
        line-height: 1.18;
    }

    .legacy-stock-summary {
        grid-column: 1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legacy-mobile-contact {
        gap: 7px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    }

    .legacy-mobile-contact a {
        min-width: 0;
        padding-inline: 8px;
        line-height: 1.2;
    }

    .legacy-selection-panel {
        max-height: calc(100dvh - 24px);
    }

    .legacy-selection-items {
        max-height: min(36dvh, 260px);
    }
}

@media (max-width: 390px) {
    .legacy-price-panel {
        padding: 13px;
    }

    .legacy-panel-heading > a {
        padding-left: 0;
    }

    .legacy-price-table tbody td {
        padding: 10px !important;
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody tr[data-legacy-row] {
        grid-template-columns: minmax(0, 1fr);
    }

    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(1),
    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(2),
    .legacy-price-table:not(.legacy-price-table-wide) tbody td:nth-child(3) {
        border-right: 0 !important;
        border-bottom: 1px solid #e6edf5 !important;
    }

    .legacy-stock-summary {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* === SUAT MEDYA ESKI TARIHLI MOBIL KART GORUNUMU V12 BITIS === */


/* === SUAT MEDYA FINAL HATA SAYFASI BASLANGIC === */

.error-section {
    min-height: calc(100vh - 220px);
    display: grid;
    align-items: center;
    padding: 80px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(42, 171, 238, .12), transparent 34%),
        #f8fafc;
}

.error-page {
    max-width: 720px;
    margin-inline: auto;
    padding: clamp(32px, 6vw, 64px);
    border: 1px solid #dce5f0;
    border-radius: 28px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
}

.error-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border: 1px solid #bae6fd;
    border-radius: 28px;
    color: #0369a1;
    background: #f0f9ff;
    font-size: 26px;
    font-weight: 900;
}

.error-page h1 {
    margin: 18px 0 14px;
    color: #0f172a;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.error-page p {
    max-width: 560px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.error-actions .btn-secondary {
    border-color: #d7e0ea;
    color: #334155;
    background: #ffffff;
}

@media (max-width: 560px) {
    .error-section {
        padding: 48px 0;
    }

    .error-page {
        border-radius: 22px;
    }

    .error-actions {
        display: grid;
    }
}

/* === SUAT MEDYA FINAL HATA SAYFASI BITIS === */

/* === SUAT MEDYA KULLANICI HESABI VE DINAMIK ANASAYFA BASLANGIC === */

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

.header-account-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, .04);
    font-size: 14px;
    font-weight: 750;
}

.header-account-link:hover {
    color: #ffffff;
    border-color: rgba(42, 171, 238, .55);
    background: rgba(42, 171, 238, .1);
}

.account-section {
    min-height: calc(100vh - 220px);
    padding: 72px 0 90px;
    background:
        radial-gradient(circle at 50% 0%, rgba(42, 171, 238, .1), transparent 32%),
        #f5f7fb;
}

.account-shell {
    max-width: 920px;
}

.account-shell-narrow {
    max-width: 720px;
}

.account-card {
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid #dce5f0;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.account-heading {
    margin-bottom: 30px;
}

.account-heading h1,
.account-dashboard-header h1 {
    margin: 14px 0 10px;
    color: #0f172a;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.account-heading p,
.account-dashboard-header p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.account-form {
    display: grid;
    gap: 20px;
}

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

.account-field-wide {
    grid-column: 1 / -1;
}

.form-field {
    display: grid;
    gap: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 750;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 14px;
    color: #0f172a;
    background: #ffffff;
    font: inherit;
    font-weight: 500;
    outline: none;
}

.form-field textarea {
    min-height: 120px;
    padding-block: 12px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #2aabee;
    box-shadow: 0 0 0 4px rgba(42, 171, 238, .12);
}

.form-field small {
    color: #64748b;
    font-weight: 500;
}

.form-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.form-check-row input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: #2aabee;
}

.field-validation,
.field-validation-error {
    color: #b91c1c;
    font-size: 13px;
    font-weight: 650;
}

.form-validation-summary {
    color: #991b1b;
    font-size: 14px;
}

.form-validation-summary:empty {
    display: none;
}

.form-validation-summary ul {
    margin: 0;
    padding: 14px 18px 14px 34px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
}

.account-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.account-alternate {
    margin: 24px 0 0;
    color: #64748b;
    text-align: center;
}

.account-alternate a {
    color: #0284c7;
    font-weight: 800;
}

.account-page-actions {
    display: flex;
    margin-bottom: 16px;
}

.btn-ghost-dark {
    border-color: #cbd5e1;
    color: #334155;
    background: #ffffff;
}

.btn-ghost-dark:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.site-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.site-alert-success {
    border: 1px solid #bbf7d0;
    color: #166534;
    background: #f0fdf4;
}

.account-message-card {
    text-align: center;
}

.account-message-card h1 {
    margin: 16px 0 12px;
    color: #0f172a;
}

.account-message-card p {
    color: #64748b;
}

.account-message-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.account-dashboard {
    max-width: 1160px;
}

.account-dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.account-dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.account-dashboard-actions form {
    margin: 0;
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.account-summary-grid article {
    padding: 22px;
    border: 1px solid #dce5f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(15, 23, 42, .05);
}

.account-summary-grid span {
    display: block;
    color: #64748b;
    font-size: 14px;
}

.account-summary-grid strong {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 34px;
}

.account-profile-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid #dce5f0;
    border-radius: 18px;
    background: #dce5f0;
}

.account-profile-summary > div {
    padding: 18px 20px;
    background: #ffffff;
}

.account-profile-summary small {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
}

.account-profile-summary strong {
    color: #0f172a;
    overflow-wrap: anywhere;
}

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

.account-record-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid #dce5f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(15, 23, 42, .05);
}

.account-record-card-wide {
    grid-column: 1 / -1;
}

.account-record-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.account-record-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
}

.account-record-heading span {
    color: #64748b;
    font-size: 13px;
}

.account-table-wrap {
    overflow-x: auto;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.account-table th,
.account-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    white-space: nowrap;
}

.account-table th {
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.account-empty-text {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}

.home-dynamic-section {
    border-top: 1px solid #edf2f7;
}

.home-banner-grid,
.home-reference-grid,
.home-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-banner-card,
.home-reference-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .06);
}

.home-banner-card img,
.home-reference-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    background: #e2e8f0;
}

.home-banner-content,
.home-reference-card > div {
    padding: 22px;
}

.home-banner-card h3,
.home-reference-card h3 {
    margin: 10px 0 9px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.2;
}

.home-banner-card p,
.home-reference-card p {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.65;
}

.home-reference-card a {
    color: #0284c7;
    font-weight: 800;
}

.home-content-badge {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    color: #0369a1;
    background: #e0f2fe;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .04em;
}

.home-testimonial-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
}

.home-rating {
    display: flex;
    gap: 3px;
    color: #475569;
}

.home-rating .is-active {
    color: #fbbf24;
}

.home-testimonial-card blockquote {
    margin: 18px 0;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
}

.home-testimonial-card strong,
.home-testimonial-card small {
    display: block;
}

.home-testimonial-card strong {
    color: #ffffff;
}

.home-testimonial-card small {
    margin-top: 5px;
    color: #94a3b8;
}

.home-faq-container {
    max-width: 920px;
}

.home-faq-list {
    display: grid;
    gap: 12px;
}

.home-faq-item {
    border: 1px solid #dce5f0;
    border-radius: 16px;
    background: #ffffff;
}

.home-faq-item summary {
    padding: 18px 20px;
    color: #0f172a;
    font-weight: 800;
    cursor: pointer;
}

.home-faq-item > div {
    padding: 0 20px 20px;
    color: #64748b;
    line-height: 1.7;
    white-space: pre-line;
}

.home-social-section {
    padding: 36px 0;
    color: #ffffff;
    background: #0b101b;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-social-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-social-wrap h2 {
    margin: 10px 0 0;
}

.home-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.home-social-links a {
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, .04);
    font-weight: 750;
}

@media (max-width: 1000px) {
    .home-banner-grid,
    .home-reference-grid,
    .home-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-record-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .account-record-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 920px) {
    .header-actions {
        margin-left: auto;
    }

    .header-account-link {
        display: inline-flex;
    }

    .account-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .account-section {
        padding: 42px 0 64px;
    }

    .account-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .account-form-grid,
    .account-summary-grid,
    .account-profile-summary,
    .home-banner-grid,
    .home-reference-grid,
    .home-testimonial-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .account-field-wide {
        grid-column: auto;
    }

    .account-profile-summary {
        gap: 1px;
    }

    .account-dashboard-actions,
    .account-dashboard-actions .btn,
    .account-dashboard-actions form,
    .account-dashboard-actions button {
        width: 100%;
    }

    .home-social-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .header-contact-button {
        display: none !important;
    }

    .site-header .header-account-link {
        display: inline-flex;
        min-height: 40px;
        padding-inline: 13px;
    }
}

/* === SUAT MEDYA KULLANICI HESABI VE DINAMIK ANASAYFA BITIS === */



/* === GEREKLI KULLANICI ALANLARI === */
.catalog-hero,
.detail-hero {
    padding: 72px 0;
    color: #fff;
    background: linear-gradient(135deg, #07101f, #102945);
}
.catalog-hero h1,
.detail-hero h1 { margin: 12px 0; font-size: clamp(36px, 6vw, 64px); line-height: 1.05; }
.catalog-hero p,
.detail-hero p { max-width: 760px; color: #cbd5e1; line-height: 1.7; }
.catalog-section { min-height: 520px; }
.catalog-filter { display: grid; grid-template-columns: minmax(0, 1fr) minmax(200px, 300px) auto; gap: 12px; margin-bottom: 30px; }
.catalog-filter input,
.catalog-filter select { min-height: 48px; padding: 0 15px; border: 1px solid #dbe4ef; border-radius: 12px; background: #fff; color: #0f172a; }
.public-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.public-card-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.public-card { overflow: hidden; border: 1px solid #e2e8f0; border-radius: 22px; background: #fff; box-shadow: 0 16px 42px rgba(15, 23, 42, .07); }
.public-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #e2e8f0; }
.public-card-body { display: flex; flex-direction: column; min-height: 100%; padding: 24px; }
.public-card h2,
.public-card h3 { margin: 14px 0 9px; color: #0f172a; }
.public-card p { color: #64748b; line-height: 1.65; }
.public-card-body > a:not(.btn) { margin-top: auto; color: #0284c7; font-weight: 800; }
.public-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; }
.public-card-footer strong { color: #0f172a; font-size: 19px; }
.detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, .6fr); align-items: end; gap: 40px; }
.detail-back { display: inline-block; margin-bottom: 22px; color: #7dd3fc; font-weight: 750; }
.detail-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.detail-note { color: #cbd5e1; }
.detail-price-card { padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.07); }
.detail-price-card small,
.detail-price-card span,
.detail-price-card strong { display: block; }
.detail-price-card strong { margin: 8px 0; font-size: 32px; }
.detail-price-card span { color: #cbd5e1; }
.detail-content-grid,
.account-detail-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr); gap: 24px; }
.detail-content-card { padding: 28px; border: 1px solid #e2e8f0; border-radius: 20px; background: #fff; }
.detail-content-card h2 { margin-top: 0; color: #0f172a; }
.detail-rich-text { color: #475569; line-height: 1.8; white-space: pre-line; }
.detail-feature-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.detail-feature-list li { padding: 13px 14px; border-radius: 12px; background: #f1f5f9; }
.detail-feature-list span { display: block; margin-top: 5px; color: #64748b; }
.detail-definition-list { display: grid; gap: 1px; margin: 0; overflow: hidden; border-radius: 13px; background: #e2e8f0; }
.detail-definition-list div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 15px; background: #fff; }
.detail-definition-list dt { color: #64748b; }
.detail-definition-list dd { margin: 0; color: #0f172a; font-weight: 750; text-align: right; }
.detail-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.detail-gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 16px; background: #e2e8f0; }
.listing-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.listing-feature-grid > div { padding: 18px; border: 1px solid #e2e8f0; border-radius: 14px; background: #fff; }
.listing-feature-grid strong,
.listing-feature-grid span { display: block; }
.listing-feature-grid span { margin-top: 6px; color: #64748b; }
.section-soft { background: #f8fafc; }
.catalog-subheading { margin-top: 56px; }
.account-list-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; }
.account-list-header h1 { margin: 10px 0 0; color: #0f172a; }
.account-record-heading a { color: #0284c7; font-weight: 800; }
.account-detail-items { margin-top: 24px; }
.account-message-list { display: grid; gap: 12px; }
.account-message-list article { padding: 16px; border: 1px solid #e2e8f0; border-radius: 14px; background: #f8fafc; }
.account-message-list time { float: right; color: #64748b; font-size: 12px; }
.account-message-list p { margin: 10px 0 0; color: #334155; white-space: pre-line; }
.account-form-link-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: -4px; }
.account-form-link-row a { color: #0284c7; font-weight: 750; }
.header-register-link { border-color: rgba(255,255,255,.18); }
.site-alert-error { color: #991b1b; background: #fee2e2; border-color: #fecaca; }
@media (max-width: 980px) {
    .public-card-grid,
    .public-card-grid-compact { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .detail-hero-grid,
    .detail-content-grid,
    .account-detail-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 720px) {
    .catalog-filter { grid-template-columns: minmax(0,1fr); }
    .public-card-grid,
    .public-card-grid-compact,
    .listing-feature-grid,
    .detail-gallery { grid-template-columns: minmax(0,1fr); }
    .public-card-footer,
    .account-list-header { align-items: stretch; flex-direction: column; }
    .public-card-footer .btn,
    .account-list-header .btn { width: 100%; }
    .detail-definition-list div { flex-direction: column; gap: 5px; }
    .detail-definition-list dd { text-align: left; }
    .header-register-link { display: none !important; }
}
/* === GEREKLI KULLANICI ALANLARI BITIS === */

/* ===== Zorunlu kullanıcı akışları ===== */
.public-page-hero {
    padding: 88px 0 56px;
    background: linear-gradient(135deg, #090d18, #111827);
    color: #fff;
}

.public-page-hero-inner {
    max-width: 860px;
}

.public-page-hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.05;
}

.public-page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .74);
    font-size: 1.05rem;
}

.public-page-shell {
    max-width: 980px;
}

.public-page-cover {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 28px;
}

.public-page-content,
.workflow-card,
.job-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.public-page-content {
    padding: clamp(24px, 5vw, 48px);
    margin-bottom: 24px;
    color: #334155;
    line-height: 1.8;
}

.public-page-content h2,
.public-page-content h3 {
    color: #0f172a;
    margin-top: 1.6em;
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, .7fr);
    gap: 24px;
    align-items: start;
}

.workflow-card {
    padding: clamp(22px, 4vw, 36px);
}

.workflow-aside {
    position: sticky;
    top: 100px;
}

.workflow-aside h2 {
    margin-top: 0;
}

.workflow-note {
    margin-top: 24px;
    color: #64748b;
    font-size: .92rem;
}

.workflow-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.workflow-field-wide {
    grid-column: 1 / -1;
}

.workflow-form textarea {
    resize: vertical;
    min-height: 130px;
}

.workflow-form select,
.workflow-form input,
.workflow-form textarea,
.public-search-form input {
    width: 100%;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.public-search-form {
    display: flex;
    gap: 12px;
    max-width: 680px;
    margin-top: 24px;
}

.public-search-form input {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.public-search-form input::placeholder {
    color: rgba(255, 255, 255, .58);
}

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

.job-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #475569;
    font-size: .84rem;
}

.job-card-top strong {
    padding: 5px 9px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
}

.job-card h2 {
    margin: 18px 0 10px;
    font-size: 1.25rem;
}

.job-card p {
    color: #64748b;
    flex: 1;
}

.job-card dl {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.job-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: .9rem;
}

.job-card dt {
    color: #64748b;
}

.job-card dd {
    margin: 0;
    color: #0f172a;
    text-align: right;
}

.account-shell-wide {
    max-width: 980px;
}

.account-success-card {
    text-align: center;
}

.support-reply-card {
    margin-top: 24px;
}

.site-alert-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.account-message-list .customer-message {
    border-left: 3px solid #2563eb;
}

.account-message-list .admin-message {
    border-left: 3px solid #16a34a;
}

@media (max-width: 980px) {
    .job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-aside {
        position: static;
    }
}

@media (max-width: 680px) {
    .public-page-hero {
        padding: 64px 0 42px;
    }

    .workflow-form-grid,
    .job-grid {
        grid-template-columns: 1fr;
    }

    .workflow-field-wide {
        grid-column: auto;
    }

    .public-search-form {
        flex-direction: column;
    }

    .workflow-card,
    .job-card {
        border-radius: 16px;
    }
}

/* === ZORUNLU KULLANICI AKISLARI TOPLU ONARIM === */
main {
    min-height: calc(100vh - 220px);
    overflow-x: clip;
}

.site-header .nav-wrap {
    width: min(1380px, calc(100% - 32px));
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
}

.site-header .brand,
.header-actions {
    flex-shrink: 0;
}

.main-nav {
    min-width: 0;
    justify-content: center;
    gap: clamp(12px, 1.25vw, 24px);
}

.main-nav a {
    white-space: nowrap;
}

.mobile-nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.public-page-hero,
.catalog-hero,
.detail-hero,
.account-section {
    overflow: hidden;
}

.public-page-hero-inner,
.public-page-shell,
.workflow-grid,
.account-shell,
.account-dashboard,
.detail-hero-grid,
.detail-content-grid {
    width: 100%;
    margin-inline: auto;
}

.public-page-shell,
.account-shell-wide {
    max-width: 1080px;
}

.public-page-content,
.workflow-card,
.account-card,
.account-record-card,
.detail-content-card {
    overflow-wrap: anywhere;
}

.workflow-form-grid,
.account-form-grid {
    align-items: start;
}

.form-field input,
.form-field select,
.form-field textarea {
    max-width: 100%;
}

.footer-wrap {
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.footer-copyright {
    flex-shrink: 0;
}

@media (max-width: 1240px) {
    .site-header .nav-wrap {
        gap: 14px;
    }

    .main-nav {
        gap: 14px;
        font-size: 13px;
    }

    .header-contact-button {
        display: none;
    }
}

@media (max-width: 980px) {
    .site-header .nav-wrap {
        grid-template-columns: auto 1fr auto;
        min-height: 70px;
    }

    .mobile-nav-toggle {
        display: grid;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 110;
        display: none;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-top: 0;
        border-radius: 0 0 16px 16px;
        background: rgba(7, 10, 18, .98);
        box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
    }

    .nav-open .main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .main-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 10px;
        white-space: normal;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, .06);
    }

    .workflow-grid,
    .detail-content-grid,
    .account-detail-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .site-header .nav-wrap {
        width: min(100% - 20px, 1380px);
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .brand-text {
        display: none;
    }

    .header-actions {
        gap: 6px;
    }

    .header-register-link,
    .header-contact-button {
        display: none !important;
    }

    .site-header .header-account-link {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .nav-open .main-nav {
        grid-template-columns: minmax(0, 1fr);
    }

    .public-page-hero,
    .catalog-hero,
    .detail-hero {
        padding-block: 56px 40px;
    }

    .section,
    .account-section {
        padding-block: 46px 60px;
    }

    .workflow-card,
    .account-card,
    .public-page-content,
    .account-record-card,
    .detail-content-card {
        border-radius: 18px;
    }

    .workflow-form-grid,
    .account-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .workflow-field-wide,
    .account-field-wide {
        grid-column: auto;
    }

    .footer-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .site-header .nav-wrap {
        width: calc(100% - 16px);
    }

    .header-account-link {
        max-width: 105px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-nav-toggle {
        width: 40px;
        height: 40px;
    }
}
/* === ZORUNLU KULLANICI AKISLARI TOPLU ONARIM BITIS === */


/* Zorunlu kullanıcı akışları */
.account-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.workflow-action-grid form {
    margin: 0;
}

.account-reply-form {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #dce5f0;
}

@media (max-width: 900px) {
    .account-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-action-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    .account-summary-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* SuatMedya logo integration */
.brand-logo-image {
    width: 40px;
    height: 40px;
    display: block;
    flex: none;
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(42, 171, 238, 0.25);
}

.footer-brand .brand-logo-image {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}
/* /SuatMedya logo integration */

/* SUAT-WHATSAPP-HEADER-FIX */
.header-contact-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    flex:none;
}

.header-contact-actions .header-contact-button{
    margin:0;
    white-space:nowrap;
}

.header-whatsapp-button{
    color:#fff !important;
    border-color:#22c55e !important;
    background:linear-gradient(135deg,#25d366,#16a34a) !important;
    box-shadow:0 10px 24px rgba(22,163,74,.20);
}

.header-whatsapp-button:hover,
.header-whatsapp-button:focus{
    color:#fff !important;
    border-color:#16a34a !important;
    background:linear-gradient(135deg,#22c55e,#15803d) !important;
    transform:translateY(-1px);
}

@media (max-width:1180px){
    .header-contact-actions{
        gap:6px;
    }

    .header-contact-actions .header-contact-button{
        padding-left:13px;
        padding-right:13px;
        font-size:13px;
    }
}

@media (max-width:900px){
    .header-contact-actions{
        width:100%;
        justify-content:stretch;
    }

    .header-contact-actions .header-contact-button{
        flex:1 1 0;
        text-align:center;
    }
}