: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;
}

.step-pill:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.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;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: #f8fbff;
}

.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;
    }
}

.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;
}
