:root {
    --red: #e7193f;
    --purple: #5a129b;
    --ink: #14151a;
    --muted: #5d6472;
    --line: #e5e8ee;
    --soft: #f5f6f8;
    --panel: #ffffff;
    --night: #050507;
    --radius: 8px;
    --shadow: 0 16px 35px rgba(21, 25, 34, 0.13);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--soft);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.brand-mark {
    color: var(--red);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-sub {
    color: #4d4f57;
    font-size: 10px;
    font-weight: 700;
    margin-left: 64px;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 11px 13px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #20232a;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--purple);
    background: #f1e8fb;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
}

.home-banner {
    width: min(1500px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 36px;
    background: #fff;
}

.home-banner img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center;
}

.eyebrow {
    display: inline-flex;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    margin-bottom: 20px;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    margin-bottom: 12px;
}

h3 {
    font-size: 23px;
    line-height: 1.16;
    margin-bottom: 12px;
}

.connect-heading p,
.section-heading p,
.content-band p,
.article-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 7px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 25px rgba(231, 25, 63, 0.24);
}

.btn-secondary {
    color: var(--purple);
    background: #f1e8fb;
    border-color: #e4d3f4;
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.packages-section {
    padding-top: 28px;
}

.connect-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
}

.connect-heading .eyebrow {
    justify-content: center;
    width: 100%;
    margin-bottom: 6px;
    color: var(--purple);
    font-size: 25px;
    text-transform: none;
}

.connect-heading h1 {
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.package-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 585px;
    overflow: hidden;
}

.package-card-wide {
    grid-column: 1 / -1;
    width: min(100%, 720px);
    justify-self: center;
    min-height: auto;
}

.package-card-wide .price-row {
    max-width: 560px;
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
}

.package-card-wide .package-image {
    width: min(calc(100% - 48px), 520px);
    aspect-ratio: 16 / 9;
    margin-left: auto;
    margin-right: auto;
}

.package-card > :not(.package-image) {
    margin-left: 24px;
    margin-right: 24px;
}

.package-image {
    width: calc(100% - 48px);
    aspect-ratio: 16 / 9;
    background: #fff;
    overflow: hidden;
    margin: 0 24px 22px;
}

.package-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f1e8fb;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.package-top {
    text-align: center;
    padding-top: 24px;
}

.package-top h3 {
    margin-bottom: 4px;
}

.package-subtitle {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 18px;
}

.price-row div {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 14px;
    background: #fafbfc;
}

.price-row span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.price-row strong {
    font-size: 28px;
    line-height: 1;
}

.package-card p,
.package-card li,
.category-card p,
.footer-copy,
.footer-brand p {
    color: var(--muted);
    line-height: 1.5;
}

.package-card ul {
    padding-left: 20px;
    margin: 4px 0 24px;
}

.package-card li + li {
    margin-top: 8px;
}

.btn-card {
    margin-top: auto;
    margin-bottom: 24px;
    background: var(--red);
    color: #fff;
    width: calc(100% - 48px);
}

.article-section {
    padding-top: 18px;
}

.matches-section {
    padding-top: 18px;
}

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

.match-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 5px solid #c71920;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    text-align: center;
}

.match-league {
    display: block;
    color: #c71920;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.match-date {
    display: block;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 22px;
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.team-side {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.team-logo {
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--purple);
    background: #fafbfc;
    font-weight: 800;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.team-logo.has-image {
    background: #fff;
    padding: 10px;
}

.team-logo img {
    display: block !important;
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    max-height: 62px !important;
    object-fit: contain !important;
}

.match-card .team-side > img,
.match-card .match-teams img {
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    max-height: 62px !important;
    object-fit: contain !important;
}

.vs-badge {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #c71920;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.match-card .btn-card {
    width: 100%;
    margin: 0;
}

.package-route-section {
    min-height: 62vh;
}

.route-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.route-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 430px;
}

.route-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.route-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 18px;
}

.route-card img {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin: auto auto 22px;
}

.route-card .btn-card {
    width: min(100%, 360px);
    margin: 0 auto;
}

.article-content {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 5vw, 52px);
    box-shadow: var(--shadow);
}

.article-content h2 {
    max-width: 950px;
}

.article-content p {
    max-width: 1040px;
    margin-bottom: 18px;
}

.page-banner {
    padding-bottom: 18px;
}

.tv-package-grid {
    align-items: start;
}

.tv-package-card {
    min-height: auto;
    padding-top: 24px;
}

.tv-package-top {
    text-align: center;
    min-height: 82px;
}

.tv-package-top h3 {
    margin-bottom: 4px;
}

.tv-package-top strong {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.tv-price-row {
    margin-top: 0;
    margin-bottom: 18px;
}

.tv-price-row div {
    background: #fff;
    padding: 16px 18px;
}

.tv-price-row span {
    font-size: 14px;
}

.tv-price-row strong {
    font-size: 34px;
}

.tv-visual {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.tv-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.tv-feature-list li {
    position: relative;
    padding-left: 26px;
    color: #444b57;
    font-size: 17px;
}

.tv-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--purple);
}

.detail-toggle {
    align-self: flex-start;
    border: 0;
    background: transparent;
    color: var(--purple);
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
    margin: 0 24px 18px;
    padding: 0;
}

.detail-toggle::before {
    content: "▾";
    display: inline-block;
    margin-right: 3px;
}

.detail-toggle[aria-expanded="true"]::before {
    content: "▴";
}

.package-detail {
    display: none;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-bottom: 22px;
}

.package-detail.open {
    display: block;
}

.package-detail strong {
    display: block;
    margin: 0 0 8px;
    color: #626976;
    font-size: 16px;
}

.package-detail p {
    color: #6a7280;
    line-height: 1.55;
    margin: 0 0 10px;
}

.faq-section {
    padding-top: 0;
}

.faq-content {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 5vw, 52px);
    box-shadow: var(--shadow);
}

.faq-item {
    border-top: 1px solid var(--line);
    padding: 22px 0 0;
    margin-top: 22px;
}

.faq-item h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
    margin-bottom: 0;
}

.faq-page-section {
    padding-bottom: 24px;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.faq-toggle-item {
    padding-top: 0;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 0;
    text-align: left;
    color: var(--ink);
    font: inherit;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-question::after {
    content: "+";
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f1e8fb;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.faq-question[aria-expanded="true"]::after {
    content: "-";
}

.faq-toggle-item p {
    display: none;
    padding-bottom: 22px;
}

.faq-toggle-item p.open {
    display: block;
}

.contact-section {
    padding-top: 24px;
}

.contact-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 5vw, 52px);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-info p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.contact-card {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 18px;
    display: grid;
    gap: 6px;
}

.contact-card span {
    color: var(--muted);
    font-weight: 800;
}

.contact-card a,
.contact-card strong {
    color: var(--purple);
    font-size: 22px;
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form .btn {
    width: 100%;
}

.connect-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1060px;
    margin: 0 auto;
}

.connect-single-grid {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
}

.connect-package-card {
    min-height: auto;
}

.connect-visual {
    aspect-ratio: 16 / 9;
}

.connect-heading p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.internet-banner img {
    aspect-ratio: 16 / 5;
}

.internet-package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.internet-package-card {
    min-height: auto;
}

.internet-price {
    text-align: center;
    margin: 0 24px 18px;
    color: #000;
    font-size: 18px;
    line-height: 1.35;
}

.internet-price strong {
    display: inline-block;
    margin-left: 6px;
    font-size: 38px;
    line-height: 1;
}

.speed-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 15px;
}

.speed-table td {
    border: 1px solid #eef1f5;
    padding: 12px 14px;
    color: #66707f;
}

.speed-table td:last-child {
    width: 36%;
    white-space: nowrap;
    color: #4c5664;
    font-weight: 700;
}

.application-shell {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 74px;
}

.application-brand {
    background: #fff;
    border-radius: 8px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}

.application-panel {
    background: #fff;
    border-radius: 8px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}

.application-title {
    text-align: center;
    margin-bottom: 22px;
}

.application-title h1 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 0;
}

.step-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.step-pill {
    border: 0;
    border-radius: 8px;
    padding: 14px 8px;
    background: #f4f4f6;
    color: #6b7280;
    font: inherit;
    font-weight: 800;
    cursor: default;
}

.step-pill span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0877f2;
    color: #fff;
    margin-bottom: 8px;
}

.step-pill.active {
    background: #d6e9ff;
    color: #24324a;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 800;
    color: #1d2940;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #cbd4df;
    border-radius: 8px;
    padding: 0 16px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.form-field textarea {
    min-height: 110px;
    padding-top: 14px;
}

.package-choice-grid {
    display: grid;
    gap: 18px;
}

.package-choice-group {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.package-choice-group h3,
.package-choice-group p {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.package-choice-group h3 {
    padding-top: 16px;
    font-size: 21px;
}

.package-choice-group p {
    padding-top: 4px;
    padding-bottom: 12px;
    color: var(--muted);
}

.package-choice {
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.package-choice.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f7f8fa;
}

.package-choice input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.package-choice strong {
    display: block;
    margin-bottom: 4px;
}

.package-choice b {
    margin-left: auto;
    white-space: nowrap;
    font-size: 18px;
}

.supporter-team-panel {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.supporter-team-panel h3 {
    margin: 0 0 6px;
    font-size: 21px;
}

.supporter-team-panel p {
    margin: 0 0 14px;
    color: var(--muted);
    font-weight: 700;
}

.supporter-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
}

.supporter-team-option {
    min-height: 126px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
    text-align: center;
    background: #fff;
}

.supporter-team-option:has(input:checked) {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(126, 34, 206, .13);
}

.supporter-team-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.supporter-team-option img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

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

@media (max-width: 420px) {
    .supporter-team-grid {
        grid-template-columns: 1fr;
    }
}

.satellite-package-choice small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
}

.payment-panel {
    background: #f4f4f5;
    border-radius: 8px;
    padding: 22px 18px;
    margin-bottom: 12px;
}

.payment-panel h2 {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #cfcfd2;
    color: #24324a;
    font-size: 21px;
    text-align: center;
}

.payment-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.payment-toggle label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    font-size: 22px;
    font-weight: 900;
    color: #000;
    cursor: pointer;
}

.payment-toggle input {
    width: 31px;
    height: 31px;
    accent-color: var(--purple);
}

.package-select {
    width: 100%;
    min-height: 56px;
    border: 1px solid #cbd4df;
    border-radius: 8px;
    padding: 0 16px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 22px;
}

.selected-package-summary {
    margin-top: 18px;
    text-align: center;
    color: #17213a;
}

.selected-package-summary h3 {
    margin-bottom: 4px;
    color: #f20000;
    font-size: 22px;
}

.selected-package-summary > strong {
    display: block;
    margin-bottom: 8px;
    color: #f20000;
    font-size: 21px;
}

.selected-package-summary p {
    max-width: 620px;
    margin: 0 auto 18px;
    color: #17213a;
    font-weight: 700;
    line-height: 1.35;
}

.selected-package-summary b,
.selected-package-summary small,
.selected-package-summary span,
.selected-package-summary em {
    display: block;
    margin-top: 7px;
}

.selected-package-summary b {
    text-decoration: underline;
}

.selected-package-summary small {
    color: #f20000;
    font-size: 15px;
    font-weight: 800;
}

.selected-package-summary span {
    color: #17213a;
}

.selected-package-summary em {
    color: #17213a;
    font-style: normal;
    font-size: 18px;
    font-weight: 900;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.consent-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #4b5563;
    line-height: 1.45;
    margin-top: 12px;
}

.consent-line input {
    margin-top: 4px;
}

.content-band {
    width: 100%;
    background: #fff;
    padding: 62px 0;
}

.content-band-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: center;
}

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

.category-card {
    min-height: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.category-card .category-icon {
    width: 104px;
    height: 76px;
    border-radius: 8px;
    border: 1px solid #eadff7;
    background: #faf7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(90, 18, 155, 0.04);
}

.category-card .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.category-card[href*="internet-tv"] .category-icon img {
    object-fit: cover;
    padding: 0;
}

.category-card strong {
    margin-top: auto;
    color: var(--purple);
}

.cta-section {
    padding-top: 10px;
}

.cta-inner {
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.cta-inner h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.infra-home-cta {
    padding-top: 0;
}

.infra-home-card,
.infra-hero-card {
    background: linear-gradient(135deg, #fff 0%, #fff 58%, #f8f1ff 100%);
    border: 1px solid var(--line);
    border-top: 5px solid var(--purple);
    border-radius: 18px;
    padding: 34px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
}

.infra-home-card h2,
.infra-hero-card h1 {
    margin-bottom: 14px;
}

.infra-home-card p,
.infra-hero-card p,
.infra-how p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.infra-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0 12px;
}

.infra-how {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}

.infra-how h2 {
    font-size: 22px;
}

.infra-how b {
    display: inline-grid;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--purple);
}

.infra-query-card {
    border: 2px solid #d1b4f4;
    border-right-color: #ff8a3d;
    border-bottom-color: #ff8a3d;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 34px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.infra-form-panel,
.infra-result-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    background: #fbfcfe;
}

.infra-progress-head {
    width: fit-content;
    min-width: 260px;
    margin: 0 auto 18px;
    padding: 14px 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(21, 25, 34, 0.07);
}

.infra-progress {
    height: 10px;
    background: #eef1f5;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 18px;
}

.infra-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--purple), #d53abf, #ff8a3d);
    transition: width 0.18s ease;
}

.infra-step-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.infra-step-pills span {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    background: #fff;
}

.infra-step-pills span.active {
    color: var(--purple);
    border-color: #e0c4ff;
    background: #f5ecff;
}

.infra-step-pills span.done {
    color: #087f5b;
    border-color: #bff0dc;
    background: #e9fbf3;
}

.infra-selected {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    background: #fff;
    margin-bottom: 22px;
}

.infra-selected span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.infra-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.infra-select-grid label {
    font-weight: 800;
}

.infra-select-grid select {
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
    border: 1px solid #ccd4df;
    border-radius: 14px;
    padding: 0 16px;
    background: #fff;
    font: inherit;
}

.infra-query-button {
    width: 100%;
    margin-top: 22px;
}

.infra-result-card {
    align-self: start;
}

.infra-result-card h3 {
    margin-bottom: 10px;
}

.infra-result-ready.hidden,
.hidden {
    display: none;
}

.infra-result-ready dl {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    margin: 18px 0;
}

.infra-result-ready div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.infra-result-ready div:last-child {
    border-bottom: 0;
}

.infra-result-ready dt {
    color: var(--muted);
}

.infra-result-ready dd {
    margin: 0;
    font-weight: 900;
}

.infra-result-ready small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    text-align: center;
}

.instant-steps-section {
    padding-top: 26px;
}

.instant-heading {
    text-align: center;
    margin-bottom: 36px;
}

.instant-heading h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.98;
    color: #1f2633;
}

.instant-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.instant-step-card {
    min-height: 235px;
    border-radius: 16px;
    background: #f8f5fb;
    border: 1px solid #f0e9f7;
    padding: 42px 34px;
}

.instant-step-card h3 {
    color: #4d2d79;
    font-size: 26px;
    margin-bottom: 24px;
}

.instant-step-card p {
    color: #3f4654;
    font-size: 18px;
    line-height: 1.55;
}

.instant-arrow {
    color: #856aa7;
    font-size: 54px;
    line-height: 1;
}

.legal-page-section {
    max-width: 1240px;
    padding-top: 48px;
}

.legal-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: clamp(18px, 4vw, 42px) 0 64px;
}

.legal-content .eyebrow {
    justify-content: center;
    width: max-content;
    margin: 0 auto 18px;
}

.legal-content h1 {
    font-size: clamp(36px, 5vw, 58px);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.legal-content > p:first-of-type {
    max-width: 920px;
    margin: 0 auto 46px;
    text-align: center;
    color: #415166;
    font-size: 20px;
    line-height: 1.55;
}

.legal-content h2 {
    border-top: 1px solid var(--line);
    font-size: 28px;
    margin-top: 44px;
    padding-top: 40px;
}

.legal-content h3 {
    font-size: 21px;
    margin-top: 26px;
}

.legal-content p,
.legal-content li {
    color: #303746;
    font-size: 17px;
    line-height: 1.72;
}

.legal-content ul,
.legal-content ol {
    padding-left: 22px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 28px;
    overflow: hidden;
    border-radius: 8px;
}

.legal-table th,
.legal-table td {
    border: 1px solid var(--line);
    padding: 13px 14px;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: #f5f6f8;
    color: var(--ink);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    min-width: 205px;
    padding: 12px 18px 12px 58px;
    border-radius: 999px;
    background: #20bf55;
    color: #fff;
    box-shadow: 0 18px 38px rgba(32, 191, 85, 0.35);
    font-weight: 800;
    line-height: 1.15;
}

.whatsapp-float::before {
    content: "☎";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    color: #20bf55;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    font-size: 21px;
}

.whatsapp-float small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.94;
}

.site-footer {
    background: #050507;
    color: #fff;
    padding: 48px 0;
}

.placeholder-section {
    min-height: 58vh;
    display: flex;
    align-items: center;
}

.placeholder-panel {
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 5vw, 54px);
    box-shadow: var(--shadow);
}

.placeholder-panel h1 {
    max-width: 820px;
    font-size: clamp(34px, 5vw, 56px);
}

.placeholder-panel p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-links,
.footer-legal {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-legal a {
    color: #fff;
    font-weight: 700;
}

.footer-phone {
    display: inline-flex;
    margin-top: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.footer-copy {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    font-size: 13px;
    text-align: center;
}

.footer-warning {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.footer-dev {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    color: #8d94a3;
    font-size: 12px;
    text-align: center;
}

.footer-dev a {
    color: #fff;
    font-weight: 800;
}

.compact-flow {
    width: min(760px, calc(100% - 32px));
    padding-top: 36px;
}

.compact-flow h1,
.payment-flow h1 {
    margin-bottom: 16px;
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
}

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

.bc-select-card {
    display: grid;
    place-items: center;
    min-height: 288px;
    padding: 22px;
    color: var(--ink);
    background: #f3f3f4;
    border: 3px solid transparent;
    border-radius: 16px;
    text-align: center;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.bc-select-card:hover {
    transform: translateY(-2px);
    border-color: var(--purple);
    background: #f1e7ff;
}

.bc-select-card-wide {
    grid-column: 1 / -1;
    min-height: 300px;
}

.bc-select-logo {
    width: 156px;
    max-height: 156px;
    object-fit: contain;
}

.bc-select-card-wide .bc-select-logo {
    width: 210px;
    max-height: 170px;
}

.bc-select-fallback {
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #76142e, #55b8dd);
    font-size: 54px;
    font-weight: 900;
}

.bc-select-card strong,
.bc-select-card span,
.bc-select-card em {
    display: block;
    font-style: normal;
    line-height: 1.16;
}

.bc-select-card strong {
    margin-top: 8px;
    font-size: 24px;
}

.bc-select-card span {
    font-size: 22px;
    font-weight: 800;
}

.bc-select-card em {
    margin-top: 8px;
    color: var(--purple);
    font-size: 24px;
    font-weight: 900;
}

.flow-preview-body {
    background: #fff;
}

.payment-flow,
.lead-application-shell {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 42px;
}

.flow-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.flow-logos .brand-mark {
    color: var(--red);
    font-size: 34px;
}

.flow-logo-link,
.application-brand-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
}

.flow-logo-link:hover,
.application-brand-link:hover {
    opacity: 0.82;
}

.bein-word {
    color: var(--purple);
    font-size: 32px;
    font-weight: 800;
}

.selected-package-name {
    margin: -4px 0 20px;
    color: var(--muted);
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}

.payment-options {
    display: grid;
    gap: 22px;
}

.payment-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 118px;
    padding: 24px 28px;
    border: 3px solid #d1d1d1;
    border-radius: 18px;
    background: #f8f8f9;
}

.featured-payment {
    border-color: var(--purple);
    background: #f2e6ff;
}

.payment-option h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.payment-option strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 900;
}

.payment-option p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.35;
}

.small-action {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    height: 42px;
    padding: 0 18px;
    color: #fff;
    background: #210b3d;
    border-radius: 7px;
    font-weight: 900;
}

.payment-badge {
    position: absolute;
    top: -17px;
    right: 18px;
    padding: 7px 12px;
    color: #fff;
    background: #050507;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 900;
}

.change-package-link {
    display: table;
    margin: 22px auto 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
}

.lead-form {
    display: grid;
    gap: 14px;
}

.application-summary-box {
    padding: 26px 28px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    background: #fafafa;
    text-align: center;
}

.application-summary-box h1 {
    margin: 0 0 14px;
    color: red;
    font-size: 24px;
}

.application-summary-box p {
    margin: 0 auto 22px;
    max-width: 680px;
    color: var(--muted);
    font-weight: 700;
}

.application-summary-box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-weight: 900;
}

.application-summary-box dl {
    display: flex;
    justify-content: center;
    gap: 44px;
    margin: 0;
}

.application-summary-box dt {
    color: var(--muted);
    font-weight: 700;
}

.application-summary-box dd {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 20px;
    font-weight: 900;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: #000;
    font-size: 20px;
    font-weight: 800;
}

.lead-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font: inherit;
}

.kvkk-note {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.25;
}

.lead-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.back-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.back-btn {
    background: #4d0d7a;
}

.submit-btn {
    background: #1f1f1f;
    cursor: pointer;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 10px;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .content-band-inner,
    .package-grid,
    .match-grid,
    .route-card-grid,
    .category-grid,
    .instant-steps-grid,
    .footer-inner,
    .contact-panel,
    .infra-home-card,
    .infra-hero-card,
    .infra-query-card {
        grid-template-columns: 1fr;
    }

    .home-banner img {
        aspect-ratio: 16 / 8;
    }

    .internet-package-grid,
    .connect-package-grid {
        grid-template-columns: 1fr;
    }

    .instant-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
        min-height: 72px;
    }

    .brand-mark {
        font-size: 28px;
    }

    .brand-sub {
        margin-left: 48px;
    }

    .section,
    .content-band-inner,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .home-banner {
        width: 100%;
        padding-bottom: 24px;
    }

    .home-banner img {
        aspect-ratio: 16 / 10;
    }

    .cta-inner {
        align-items: stretch;
    }

    .connect-heading .btn,
    .cta-inner .btn {
        width: 100%;
    }

    .section {
        padding: 46px 0;
    }

    .package-card {
        min-height: auto;
    }

    .price-row {
        grid-template-columns: 1fr;
    }

    .form-grid,
    .step-track,
    .infra-select-grid,
    .payment-toggle {
        grid-template-columns: 1fr;
    }

    .package-select,
    .payment-toggle label {
        font-size: 19px;
    }

    .application-brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .form-actions {
        flex-direction: column;
    }

    .bc-select-grid,
    .lead-actions {
        grid-template-columns: 1fr;
    }

    .bc-select-card-wide {
        grid-column: auto;
    }

    .payment-option,
    .flow-logos {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-option {
        padding: 24px 20px;
    }

    .small-action {
        width: 100%;
    }

    .application-summary-box dl {
        flex-direction: column;
        gap: 10px;
    }

    .cta-inner {
        padding: 24px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        min-width: 178px;
        padding: 11px 15px 11px 52px;
    }
}

@media (max-width: 768px) {
    .city-offer-card {
        grid-template-columns: 1fr;
        width: calc(100vw - 28px);
        padding: 20px;
        border-radius: 12px;
    }

    .city-offer-card h2 {
        font-size: 25px;
    }

    .city-offer-card p {
        font-size: 16px;
    }

    .city-offer-actions {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .city-offer-card {
        margin-bottom: 24px;
    }

    .city-offer-actions .btn,
    .city-offer-actions select {
        width: 100%;
    }
}

.application-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(15, 18, 28, .72);
    backdrop-filter: blur(4px);
}

.application-popup.show {
    display: flex;
}

.application-popup-card {
    position: relative;
    width: min(100%, 540px);
    padding: 38px 34px 30px;
    border: 1px solid rgba(22, 136, 63, .18);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(15, 18, 28, .38);
    text-align: center;
}

.application-popup.is-error .application-popup-card {
    border-color: rgba(225, 29, 72, .28);
}

.application-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f2f2f5;
    color: #111827;
    cursor: pointer;
    font-weight: 900;
}

.application-popup-icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e9f9ef;
    color: #16883f;
    align-items: center;
    justify-content: center;
}

.application-popup-icon::before {
    content: "OK";
    font-weight: 900;
}

.application-popup.is-error .application-popup-icon {
    background: #fff1f2;
    color: #e11d48;
}

.application-popup.is-error .application-popup-icon::before {
    content: "!";
    font-size: 30px;
}

.application-popup-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.application-popup-card p {
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.55;
    white-space: pre-line;
}

.application-popup .btn-primary {
    min-width: 170px;
}

.application-popup.is-error .btn-primary {
    background: #e11d48;
    border-color: #e11d48;
}

/* Umit v1 visual refresh */
:root {
    --purple: #7b22d6;
    --purple-dark: #260744;
    --purple-deep: #4b0f73;
    --orange: #ff7a2f;
    --ink: #07162c;
    --soft: #f3f4f7;
    --shadow: 0 14px 34px rgba(17, 24, 39, .12);
}

body {
    background: var(--soft);
    color: var(--ink);
}

.site-header {
    background: #210935;
    border-bottom: 0;
    box-shadow: 0 6px 22px rgba(11, 4, 22, .22);
}

.header-inner {
    width: min(1480px, calc(100% - 48px));
    min-height: 78px;
}

.brand img,
.footer-brand img,
.promo-logo img {
    display: block;
    width: 198px;
    max-width: 100%;
    height: auto;
}

.site-header .brand {
    width: 230px;
    height: 72px;
    display: block;
    background: url("../img/digiturk-beyaz-logo.png") left center / contain no-repeat;
}

.site-header .brand img,
.site-header .brand-mark,
.site-header .brand-sub {
    display: none;
}

.site-nav {
    gap: 14px;
}

.site-nav a {
    color: #fff;
    background: transparent;
    border-radius: 999px;
    padding: 11px 16px;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .13);
}

.menu-toggle {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
}

.menu-toggle span {
    background: #fff;
}

.promo-strip {
    display: grid;
    grid-template-columns: 320px 1fr 390px;
    align-items: center;
    gap: 24px;
    min-height: 124px;
    padding: 14px 22px;
    color: #fff;
    background: linear-gradient(100deg, #3d075e 0%, #631486 48%, #8d1fb0 100%);
}

.promo-strip-simple {
    grid-template-columns: minmax(0, 1fr) 430px;
    padding: 18px max(24px, calc((100vw - 1500px) / 2));
}

.promo-strip-simple .promo-copy {
    text-align: center;
}

.promo-logo {
    min-height: 74px;
    display: grid;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, .24);
}

.promo-copy {
    text-align: center;
}

.promo-copy strong {
    display: block;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.1;
}

.promo-copy strong span,
.promo-copy span {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
}

.promo-copy small {
    display: block;
    margin-top: 12px;
    font-weight: 800;
}

.promo-price {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    column-gap: 7px;
}

.promo-price span {
    grid-column: 1 / -1;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.promo-price b {
    color: #ffe339;
    font-size: clamp(46px, 5vw, 64px);
    line-height: .95;
}

.promo-price em {
    font-style: normal;
    font-size: 21px;
    font-weight: 900;
}

.promo-price a {
    justify-self: end;
    padding: 17px 28px;
    border-radius: 999px;
    background: #9d2ee9;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.product-tabs {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px max(24px, calc((100vw - 1500px) / 2));
    background: #fff;
}

.product-tabs img {
    width: 250px;
    padding: 16px 22px;
    border-radius: 8px;
    background: #d50b29;
}

.product-tabs nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 28px;
}

.product-tabs a {
    min-width: 150px;
    padding: 13px 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #7f1fd1, #9d2ee9);
    font-weight: 900;
    text-align: center;
}

.season-hero {
    background: #111;
}

.season-hero-link {
    display: block;
    cursor: pointer;
}

.season-hero-link:focus-visible {
    outline: 4px solid rgba(139, 37, 220, .45);
    outline-offset: -4px;
}

.season-hero img {
    display: block;
    width: 100%;
    min-height: 390px;
    max-height: 635px;
    object-fit: cover;
    object-position: center;
}

.section-title {
    max-width: 980px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-title h1,
.section-title h2 {
    font-size: clamp(34px, 4.6vw, 48px);
}

.section-title > span {
    display: block;
    width: 400px;
    max-width: 70%;
    height: 5px;
    margin: 18px auto 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #9934ee, #ff7a2f);
}

.section-title p {
    color: #17243a;
    font-size: 24px;
    line-height: 1.35;
}

.city-offer-card {
    max-width: 1180px;
    margin: 0 auto 34px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f5ecff 100%);
    border: 1px solid rgba(139, 37, 220, .18);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(14, 20, 36, .08);
}

.city-offer-card h2 {
    margin: 8px 0 10px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.12;
    color: var(--dark);
}

.city-offer-card p {
    margin: 0;
    color: #344054;
    font-size: 18px;
    line-height: 1.55;
}

.city-offer-actions {
    display: grid;
    gap: 12px;
}

.city-offer-actions select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    min-height: 52px;
    padding: 0 14px;
    font-weight: 800;
    color: var(--dark);
    background: #fff;
}

.modern-package-grid {
    width: min(1860px, calc(100vw - 36px));
    margin-left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.modern-package-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #dfe3eb;
    background: #fff;
    box-shadow: 0 8px 20px rgba(7, 22, 44, .08);
}

.modern-package-card > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.package-ribbon,
.package-type {
    position: absolute;
    top: 0;
    z-index: 2;
    min-height: 30px;
    padding: 7px 14px;
    color: #fff;
    font-weight: 900;
    line-height: 1;
}

.package-ribbon {
    left: 0;
    background: #962ce8;
}

.package-type {
    right: 0;
    background: #ee2433;
}

.modern-package-body {
    padding: 24px 20px 18px;
    text-align: center;
}

.modern-package-body h2 {
    min-height: 34px;
    font-size: 24px;
    line-height: 1.25;
}

.modern-subtitle {
    display: block;
    min-height: 30px;
    margin: -4px 0 14px;
    color: #07162c;
    font-size: 21px;
    line-height: 1.25;
}

.modern-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0 18px;
}

.modern-price-row div {
    border: 1px solid #dfe3eb;
    border-radius: 8px;
    padding: 14px 12px;
    background: #fbfcff;
    text-align: left;
}

.modern-price-row span {
    display: block;
    min-height: 39px;
    color: #586176;
    font-weight: 900;
    line-height: 1.1;
}

.modern-price-row strong {
    display: block;
    margin-top: 6px;
    color: #001733;
    font-size: 30px;
    line-height: 1;
}

.modern-package-body p {
    margin-bottom: 8px;
    color: #10203a;
    font-size: 18px;
    line-height: 1.35;
}

.modern-feature-list {
    margin: 18px 0 14px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.modern-feature-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    color: #14223a;
    font-size: 17px;
    line-height: 1.35;
}

.modern-feature-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #7b22d6;
}

.modern-detail-toggle {
    margin: 6px 0 16px;
    color: #7b22d6;
}

.modern-package-detail {
    margin: 0 0 18px;
    padding: 14px;
    border: 1px solid #eceff5;
    border-radius: 8px;
    background: #fbfcff;
    text-align: left;
}

.modern-package-detail p,
.modern-package-detail strong {
    font-size: 14px;
    line-height: 1.45;
}

.pill-green,
.pill-blue {
    display: table;
    min-width: 94px;
    margin: 13px auto 0;
    padding: 5px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.pill-green {
    color: #098142;
    border: 1px solid #21dd7a;
    background: #dbffec;
}

.pill-blue {
    color: #1a58de;
    border: 1px solid #5aa0ff;
    background: #e9f3ff;
}

.modern-price {
    margin: 14px 0 22px;
    font-weight: 900;
}

.modern-price small {
    font-size: 16px;
}

.modern-price strong {
    margin-left: 8px;
    font-size: 32px;
}

.modern-package-card .btn-card {
    width: 100%;
    margin: 0;
    background: linear-gradient(135deg, #8f2dea, #9d2ee9);
    border-radius: 8px;
}

.modern-package-card .pill-green,
.modern-package-card .pill-blue,
.modern-package-card .modern-price {
    display: none;
}

.benefits-section {
    padding-top: 78px;
}

.package-showcase-alt {
    padding-top: 24px;
}

.mixed-package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.benefit-grid article {
    min-height: 330px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 36px 26px;
    border: 1px solid #dfe3eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 17px rgba(7, 22, 44, .08);
    text-align: center;
}

.benefit-grid span {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border-radius: 999px;
    color: #7a23dc;
    background: #f3eefb;
    font-size: 42px;
    font-weight: 900;
}

.benefit-grid h3 {
    color: #7a23dc;
}

.benefit-grid p {
    color: #14223a;
    font-size: 20px;
    line-height: 1.45;
}

.coverage-band {
    min-height: 540px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 50px;
    padding: 70px max(28px, calc((100vw - 1420px) / 2));
    background: #f5f6f9;
}

.coverage-copy h2 {
    max-width: 670px;
    color: #7a23dc;
    font-size: clamp(38px, 4.8vw, 54px);
}

.coverage-copy p {
    max-width: 720px;
    color: #11223c;
    font-size: 24px;
    line-height: 1.55;
}

.coverage-stats {
    display: flex;
    gap: 120px;
    margin-top: 34px;
    text-align: center;
}

.coverage-stats strong {
    color: #7a23dc;
    font-size: 48px;
}

.coverage-stats span {
    display: block;
    color: #14223a;
    font-size: 20px;
}

.coverage-map {
    position: relative;
}

.coverage-map img {
    display: block;
    width: 100%;
    opacity: .32;
    filter: invert(1);
}

.map-pin {
    position: absolute;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    color: #fff;
    background: #6d45ff;
    box-shadow: 0 10px 20px rgba(109, 69, 255, .22);
}

.map-pin::first-letter {
    transform: rotate(45deg);
}

.pin-one { left: 24%; top: 31%; }
.pin-two { left: 52%; top: 49%; }
.pin-three { right: 15%; bottom: 26%; }

.speed-card {
    position: absolute;
    left: 40%;
    top: 20%;
    min-width: 220px;
    padding: 20px 18px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.speed-card b,
.speed-card small,
.speed-card strong {
    display: block;
}

.speed-card strong {
    margin-top: 18px;
    font-size: 26px;
}

.info-section {
    max-width: 1260px;
    text-align: center;
}

.info-section h2 {
    font-size: clamp(34px, 4.2vw, 48px);
}

.info-section p {
    max-width: 1160px;
    margin: 0 auto 28px;
    color: #10203a;
    font-size: 21px;
    line-height: 1.62;
    text-align: left;
}

.info-section .btn {
    margin-top: 14px;
    background: linear-gradient(135deg, #8323df, #9d2ee9);
}

.altyapi-cta {
    max-width: 1180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 30px;
    padding: 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff, #f5ecff);
    border: 1px solid #e3d7f5;
    box-shadow: var(--shadow);
}

.altyapi-cta h2 {
    margin-bottom: 10px;
}

.altyapi-cta p {
    max-width: 760px;
    margin: 0;
    color: #39445a;
    font-size: 18px;
    line-height: 1.45;
}

.cart-float {
    position: fixed;
    right: 28px;
    bottom: 32px;
    z-index: 80;
    min-width: 224px;
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr 76px;
    align-items: center;
    padding: 14px 16px 14px 34px;
    border-radius: 999px;
    color: #fff;
    background: #9b31ee;
    box-shadow: 0 0 0 12px rgba(155, 49, 238, .12), 0 0 0 24px rgba(155, 49, 238, .08);
    font-weight: 900;
}

.cart-float small,
.cart-float b {
    display: block;
}

.cart-float b {
    grid-row: 1 / 3;
    grid-column: 2;
    justify-self: center;
    font-size: 15px;
}

.site-footer {
    background: #4b0f73;
    padding: 68px 0 46px;
}

.footer-inner {
    width: min(1500px, calc(100% - 32px));
    grid-template-columns: 1.2fr repeat(2, 1fr);
}

.footer-links,
.footer-legal {
    align-content: start;
}

.footer-copy,
.footer-warning {
    color: rgba(255, 255, 255, .84);
}

.site-footer .brand-mark {
    color: #fff;
}

.site-footer .brand-sub {
    color: rgba(255, 255, 255, .78);
}

.whatsapp-float {
    display: none;
}

.commercial-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 70px max(28px, calc((100vw - 1460px) / 2));
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .28)),
        url("../img/2025-2026-sezon-gorsel.webp") center / cover no-repeat;
}

.commercial-hero-content {
    max-width: 800px;
}

.commercial-hero-content span {
    color: #d9b8ff;
    font-weight: 900;
    text-transform: uppercase;
}

.commercial-hero-content h1 {
    margin: 14px 0 20px;
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    text-transform: uppercase;
}

.commercial-hero-content p,
.commercial-hero-content strong {
    display: block;
    max-width: 760px;
    color: #fff;
    font-size: 22px;
    line-height: 1.35;
}

.commercial-hero-content .btn {
    margin-top: 28px;
    background: #5b2490;
}

.commercial-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: #fff;
    box-shadow: var(--shadow);
}

.commercial-columns article {
    padding: 44px 58px;
    border-right: 1px solid #d9dde6;
}

.commercial-columns article:last-child {
    border-right: 0;
}

.commercial-columns h3 {
    color: #7a23dc;
    font-size: 32px;
}

.commercial-columns li,
.commercial-columns p {
    color: #111827;
    font-size: 20px;
    line-height: 1.45;
}

.commercial-columns li {
    margin-bottom: 18px;
}

.commercial-columns li::marker {
    color: #8b2197;
}

.commercial-form-band {
    padding: 70px 24px;
    background: #1d0635;
}

.commercial-form-card {
    width: min(620px, 100%);
    margin: 0 auto;
    padding: 44px 34px;
    border-radius: 12px;
    color: #fff;
    background: #23083d;
    box-shadow: 0 -24px 60px rgba(157, 46, 233, .28);
}

.commercial-form-card h2 {
    text-align: center;
    color: #fff;
}

.commercial-form {
    display: grid;
    gap: 16px;
}

.commercial-form label {
    display: grid;
    gap: 7px;
}

.commercial-form input,
.commercial-form select {
    min-height: 56px;
    border: 0;
    padding: 0 18px;
    font: inherit;
}

.commercial-form a {
    color: #fff;
    font-weight: 900;
    text-decoration: underline;
}

.commercial-form .btn {
    width: min(220px, 100%);
    margin: 14px auto 0;
    background: #67329a;
}

@media (max-width: 1180px) {
    .promo-strip,
    .coverage-band,
    .commercial-columns,
    .modern-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-copy {
        grid-column: 1 / -1;
        order: 3;
    }

    .promo-strip-simple .promo-copy {
        grid-column: auto;
        order: initial;
    }

    .promo-price {
        justify-self: end;
    }

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

@media (max-width: 980px) {
    .site-nav {
        background: #210935;
        border-color: rgba(255, 255, 255, .2);
    }

    .product-tabs,
    .promo-strip,
    .coverage-band,
    .modern-package-grid,
    .commercial-columns,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .promo-strip-simple {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        display: grid;
        justify-items: center;
    }

    .product-tabs nav {
        justify-content: center;
    }

    .promo-logo {
        border-right: 0;
        justify-items: center;
    }

    .promo-price {
        justify-self: center;
    }

    .coverage-stats {
        gap: 34px;
        flex-wrap: wrap;
    }

    .altyapi-cta {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
    }

    .brand img {
        width: 156px;
    }

    .promo-strip {
        padding: 18px 14px;
    }

    .promo-price {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modern-price-row {
        grid-template-columns: 1fr;
    }

    .promo-price a {
        justify-self: center;
        margin-top: 12px;
    }

    .product-tabs nav,
    .product-tabs a {
        width: 100%;
    }

    .season-hero img {
        min-height: 300px;
    }

    .modern-package-grid {
        width: min(100% - 24px, 480px);
    }

    .benefit-grid article {
        min-height: 250px;
    }

    .coverage-band,
    .commercial-columns article {
        padding-left: 20px;
        padding-right: 20px;
    }

    .speed-card {
        position: static;
        margin: 18px auto 0;
    }

    .cart-float {
        right: 14px;
        bottom: 16px;
        min-width: 170px;
        min-height: 68px;
        grid-template-columns: 1fr;
        padding: 12px 20px;
    }

    .cart-float b {
        display: none;
    }
}

/* Son rötuş: mobil uyum ve görsel sabitleme */
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
img, video, canvas, svg {
    max-width: 100%;
}
.home-banner,
.page-banner,
.internet-banner,
.season-hero,
.commercial-hero {
    overflow: hidden;
}
.home-banner img,
.page-banner img,
.internet-banner img,
.season-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.package-image img,
.tv-visual img,
.connect-visual img,
.modern-package-card > img,
.category-card .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.modern-package-card > img {
    object-fit: cover;
}
input, select, textarea, button {
    font-size: 16px;
}
@media (max-width: 980px) {
    body { overflow-x: hidden; }
    .header-inner { width: min(100% - 24px, 1480px); }
    .home-banner,
    .page-banner,
    .internet-banner {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .home-banner img,
    .page-banner img,
    .internet-banner img {
        aspect-ratio: 16 / 7;
        min-height: 220px;
    }
    .commercial-hero {
        min-height: 430px;
        background-position: center center;
    }
    .package-grid,
    .internet-package-grid,
    .modern-package-grid,
    .mixed-package-grid,
    .route-card-grid,
    .category-grid,
    .benefit-grid,
    .contact-panel,
    .footer-inner {
        grid-template-columns: 1fr !important;
    }
    .modern-package-grid {
        width: min(100% - 24px, 560px);
    }
}
@media (max-width: 640px) {
    .section { width: min(100% - 24px, 1180px); padding: 42px 0; }
    .home-banner img,
    .page-banner img,
    .internet-banner img {
        aspect-ratio: 16 / 10;
        min-height: 190px;
    }
    .season-hero img {
        aspect-ratio: 16 / 10;
        min-height: 230px;
    }
    .commercial-hero {
        min-height: 390px;
        padding: 42px 20px;
        background-position: center center;
    }
    .package-card,
    .modern-package-card,
    .article-content,
    .application-panel,
    .contact-panel {
        border-radius: 14px;
    }
    .package-card > :not(.package-image),
    .package-image,
    .tv-visual,
    .internet-price {
        margin-left: 18px;
        margin-right: 18px;
        width: calc(100% - 36px);
    }
    .btn,
    .btn-card,
    .submit-btn,
    .back-btn {
        min-height: 54px;
        width: 100%;
    }
    .application-shell,
    .lead-application-shell,
    .payment-flow {
        width: min(100% - 20px, 820px);
    }
}

/* Ticari sayfa son düzeltme: PC + iOS + Android güvenli görünüm */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-header {
    width: 100%;
}

.commercial-hero {
    position: relative;
    min-height: clamp(460px, 46vw, 650px);
    padding: clamp(42px, 7vw, 86px) max(20px, calc((100vw - 1460px) / 2));
    background-image:
        linear-gradient(90deg, rgba(10, 0, 24, .84), rgba(10, 0, 24, .42)),
        url("../img/2025-2026-sezon-gorsel.webp");
    background-size: cover;
    background-position: center center;
}

.commercial-hero-content {
    width: min(760px, 100%);
    position: relative;
    z-index: 1;
}

.commercial-hero-content h1 {
    font-size: clamp(34px, 5.4vw, 72px);
    line-height: 1.02;
    overflow-wrap: anywhere;
}

.commercial-hero-content p,
.commercial-hero-content strong {
    font-size: clamp(18px, 2vw, 24px);
}

.commercial-scope-note {
    margin: -4px 0 18px;
    color: rgba(255,255,255,.86);
    text-align: center;
    line-height: 1.45;
}

.commercial-region-list {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: #fff;
    line-height: 1.4;
}

.commercial-region-list strong {
    color: #fff;
}

.commercial-region-list span {
    color: rgba(255,255,255,.88);
    font-size: 14px;
}

.commercial-form input,
.commercial-form select {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

.application-popup-card {
    width: min(100%, 540px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
}

@media (max-width: 1180px) {
    .promo-strip-simple {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .promo-price {
        justify-self: center;
    }
}

@media (max-width: 980px) {
    .site-header .brand {
        width: 168px;
        height: 58px;
    }
    .commercial-hero {
        min-height: 500px;
        align-items: flex-end;
        background-position: center top;
    }
    .commercial-columns {
        grid-template-columns: 1fr !important;
    }
    .commercial-columns article {
        border-right: 0;
        border-bottom: 1px solid #d9dde6;
    }
    .commercial-columns article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 64px;
    }
    .site-header .brand {
        width: 150px;
        height: 52px;
    }
    .promo-strip {
        padding: 18px 14px !important;
    }
    .promo-copy strong {
        font-size: 20px;
    }
    .promo-copy span {
        font-size: 13px;
    }
    .promo-price b {
        font-size: 46px;
    }
    .commercial-hero {
        min-height: 520px;
        padding: 46px 18px 34px;
        background-position: center top;
    }
    .commercial-hero-content h1 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .commercial-hero-content p,
    .commercial-hero-content strong {
        font-size: 17px;
        line-height: 1.45;
    }
    .commercial-hero-content .btn {
        width: auto;
        min-width: 172px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .commercial-columns article {
        padding: 28px 22px !important;
    }
    .commercial-columns h3 {
        font-size: 25px;
    }
    .commercial-columns li,
    .commercial-columns p {
        font-size: 16px;
    }
    .commercial-form-band {
        padding: 46px 14px;
    }
    .commercial-form-card {
        padding: 28px 18px;
        border-radius: 14px;
    }
    .commercial-form-card h2 {
        font-size: 26px;
    }
    .commercial-form label {
        font-size: 15px;
    }
    .commercial-form input,
    .commercial-form select {
        min-height: 52px;
        font-size: 16px;
    }
    .commercial-region-list span {
        font-size: 13px;
    }
    .application-popup {
        padding: 14px;
    }
    .application-popup-card {
        padding: 34px 20px 24px;
        border-radius: 16px;
    }
    .application-popup-card h2 {
        font-size: 24px;
    }
    .application-popup-card p {
        font-size: 15px;
    }
}

@supports (-webkit-touch-callout: none) {
    .commercial-hero,
    .season-hero {
        background-attachment: scroll;
    }
}

/* Son duzeltme: Ana sayfa paket kartlari PC'de ekrandan tasmasin */
.home-page .modern-package-grid,
.packages-section .modern-package-grid,
.package-showcase-alt .modern-package-grid {
    width: min(1500px, calc(100vw - 48px)) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
}

.home-page .modern-package-card,
.packages-section .modern-package-card,
.package-showcase-alt .modern-package-card {
    min-width: 0 !important;
}

.home-page .modern-package-card > img,
.packages-section .modern-package-card > img,
.package-showcase-alt .modern-package-card > img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (min-width: 1181px) {
    .home-page .modern-package-grid,
    .packages-section .modern-package-grid,
    .package-showcase-alt .modern-package-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }
}

@media (max-width: 1180px) and (min-width: 981px) {
    .home-page .modern-package-grid,
    .packages-section .modern-package-grid,
    .package-showcase-alt .modern-package-grid {
        width: min(100% - 32px, 900px) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }
}

@media (max-width: 980px) {
    .home-page .modern-package-grid,
    .packages-section .modern-package-grid,
    .package-showcase-alt .modern-package-grid {
        width: min(100% - 24px, 560px) !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* FINAL FIX: Ana sayfa cok satan paket kartlari - PC/Tablet/Mobil */
body .package-showcase {
    width: min(1180px, calc(100% - 32px)) !important;
    max-width: 1180px !important;
    overflow: visible !important;
}

body .package-showcase .modern-package-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

body .package-showcase .modern-package-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: hidden !important;
    border-radius: 10px !important;
}

body .package-showcase .modern-package-card > img {
    display: block !important;
    width: 100% !important;
    height: 190px !important;
    max-height: 190px !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #fff !important;
}

body .package-showcase .modern-package-body {
    display: block !important;
    padding: 18px 16px 16px !important;
}

body .package-showcase .modern-package-body h2 {
    min-height: 0 !important;
    font-size: 20px !important;
    line-height: 1.18 !important;
}

body .package-showcase .modern-subtitle {
    min-height: 0 !important;
    font-size: 16px !important;
}

body .package-showcase .modern-price-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

body .package-showcase .modern-price-row strong {
    font-size: 24px !important;
}

.promo-strip {
    position: relative;
}

.promo-strip-hit {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.promo-strip > *:not(.promo-strip-hit) {
    position: relative;
    z-index: 2;
}

.promo-price a {
    position: relative;
    z-index: 4;
}

body .package-showcase .modern-feature-list li {
    font-size: 15px !important;
}

@media (max-width: 1180px) {
    body .package-showcase {
        width: min(100% - 28px, 900px) !important;
    }
    body .package-showcase .modern-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }
    body .package-showcase .modern-package-card > img {
        height: 210px !important;
        max-height: 210px !important;
    }
}

@media (max-width: 640px) {
    body .package-showcase {
        width: min(100% - 24px, 430px) !important;
        padding-top: 40px !important;
    }
    body .package-showcase .modern-package-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    body .package-showcase .modern-package-card > img {
        height: auto !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: contain !important;
    }

    .city-offer-card {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 20px !important;
        border-radius: 12px !important;
    }

    .city-offer-card h2 {
        font-size: 25px !important;
    }

    .city-offer-card p {
        font-size: 16px !important;
    }

    .city-offer-actions .btn,
    .city-offer-actions select {
        width: 100% !important;
    }
}

.application-panel .step-track {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: min(100%, 980px);
    margin: 0 auto;
}

.application-panel .step-pill {
    min-height: 104px;
    padding: 16px 10px !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
}

.city-offer-card {
    position: relative;
    overflow: hidden;
    grid-template-columns: 1.25fr .75fr !important;
    background:
        radial-gradient(circle at 88% 12%, rgba(236, 23, 73, .20), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fbf6ff 48%, #f1e5ff 100%) !important;
}

.city-offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(126, 34, 206, .12), transparent 34%),
        repeating-linear-gradient(135deg, rgba(126, 34, 206, .05) 0 1px, transparent 1px 10px);
}

.city-offer-copy,
.city-offer-actions {
    position: relative;
    z-index: 1;
}

.city-offer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.city-offer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #fff;
    color: #6816b1;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(34, 20, 58, .08);
}

.city-offer-price {
    display: grid;
    gap: 2px;
    padding: 18px;
    border-radius: 14px;
    background: #18062b;
    color: #fff;
    box-shadow: 0 18px 35px rgba(24, 6, 43, .20);
}

.city-offer-price small,
.city-offer-price span {
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.city-offer-price strong {
    color: #ffe642;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
}

@media (max-width: 900px) {
    .application-panel .step-track {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .application-panel .step-pill {
        min-height: 86px;
        font-size: 16px !important;
    }

    .city-offer-card {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 460px) {
    .application-panel .step-track {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .season-hero img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 21 / 8 !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .city-offer-badges {
        gap: 8px;
    }

    .city-offer-badges span {
        width: 100%;
        justify-content: center;
    }

    .city-offer-price {
        text-align: center;
    }
}

/* Kutusuz NEO adres alanı modern görünüm - sadece UI, API akışına dokunmaz */
.neo-address-card {
    position: relative;
    margin: 26px 0 18px;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(123, 34, 214, .16);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(123, 34, 214, .16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fbf8ff 52%, #f5ecff 100%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
    overflow: hidden;
}

.neo-address-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(135deg, rgba(123, 34, 214, .045) 0 1px, transparent 1px 12px);
}

.neo-address-card > * {
    position: relative;
    z-index: 1;
}

.neo-address-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.neo-address-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #5a129b, #9d2ee9);
    font-size: 27px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(90, 18, 155, .22);
}

.neo-address-head h2 {
    margin: 0 0 5px;
    color: #07162c;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.1;
}

.neo-address-head p {
    margin: 0;
    color: #5b6475;
    font-size: 16px;
    line-height: 1.45;
}

.neo-address-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 22px;
}

.neo-address-steps span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3d7f5;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: #6b7280;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.neo-address-steps span.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #5a129b, #9d2ee9);
    box-shadow: 0 10px 22px rgba(123, 34, 214, .20);
}

.lead-form .neo-modern-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lead-form .neo-modern-address-grid label {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(203, 213, 225, .85);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
    font-size: 14px;
    color: #1d2940;
}

.lead-form .neo-modern-address-grid select {
    min-height: 50px;
    margin-top: 8px;
    border: 1px solid #d3dce8;
    border-radius: 13px;
    background: #fff;
    color: #07162c;
    font-weight: 800;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.lead-form .neo-modern-address-grid select:focus {
    border-color: #8b25dc;
    box-shadow: 0 0 0 4px rgba(139, 37, 220, .12);
}

.lead-form .neo-modern-address-grid select:disabled {
    opacity: .62;
    background: #f8fafc;
}

.neo-address-summary {
    display: grid;
    gap: 6px;
    margin-top: 16px;
    padding: 15px 18px;
    border: 1px solid rgba(123, 34, 214, .16);
    border-radius: 16px;
    background: #fff;
    color: #334155;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

.neo-address-summary strong {
    color: #5a129b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.neo-address-summary span {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.lead-form .neo-address-note {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    color: #1d2940;
    font-size: 15px;
    font-weight: 900;
}

.lead-form .neo-address-note textarea {
    width: 100%;
    min-height: 96px;
    resize: vertical;
    border: 1px solid #d3dce8;
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff;
    color: #07162c;
    font: inherit;
    font-weight: 700;
    line-height: 1.45;
    outline: none;
}

.lead-form .neo-address-note textarea:focus {
    border-color: #8b25dc;
    box-shadow: 0 0 0 4px rgba(139, 37, 220, .12);
}

@media (max-width: 720px) {
    .neo-address-card {
        margin-top: 22px;
        padding: 18px;
        border-radius: 18px;
    }

    .neo-address-head {
        align-items: flex-start;
    }

    .neo-address-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 23px;
    }

    .neo-address-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-form .neo-modern-address-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lead-form .neo-modern-address-grid label {
        padding: 12px;
    }
}

@media (max-width: 430px) {
    .neo-address-head {
        display: grid;
    }

    .neo-address-steps {
        grid-template-columns: 1fr;
    }
}
