* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --qr-purple: #5170ff;
    --qr-purple-d: #3a5ae0;
    --qr-orange: #fd8f50;
    --qr-orange-d: #e07a3a;
    --qr-dark: #1e293b;
    --qr-mid: #33485d;
    --qr-muted: #5a6a7e;
    --qr-light: #f5f8ff;
    --qr-border: #eef2f8;
    --qr-white: #ffffff;
    --qr-navy: #15233d;
    --qr-navy-d: #1e3a5f;
    --qr-green: #27ae60;
    --qr-red: #e74c3c;
    --qr-maroon: #8a1538;
    /* Qatar Airways brand accent, used sparingly */
}

.qr-page * {
    box-sizing: border-box;
}

.qr-page {
    font-family: 'Montserrat', -apple-system, sans-serif;
    color: var(--qr-dark);
}

.qr-page a {
    text-decoration: none;
}

.qr-page img {
    max-width: 100%;
    display: block;
}

.qr-section {
    padding: 68px 0;
}

.qr-section--light {
    background: var(--qr-light);
}

.qr-section--white {
    background: var(--qr-white);
}

.qr-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.qr-header {
    text-align: center;
    margin-bottom: 40px;
}

.qr-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--qr-purple);
    background: rgba(81, 112, 255, .08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.qr-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--qr-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.qr-desc {
    font-size: 14.5px;
    color: var(--qr-muted);
    line-height: 1.65;
    margin: 0 auto;
}

.qr-purple {
    color: var(--qr-purple) !important;
}

.qr-orange {
    color: var(--qr-orange) !important;
}

.qr-maroon {
    color: var(--qr-maroon) !important;
}

@media(max-width:600px) {
    .qr-title {
        font-size: 22px !important;
    }
}

.purple {
    color: #5170ff !important;
}

.orange {
    color: #fd8f50 !important;
}

/* ══════ HERO ══════ */
.qr-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--qr-navy);
}

.qr-hero .qr-video-container {
    position: absolute;
    inset: 0;
}

.qr-hero .qr-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-hero .qr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .45) 55%, rgba(21, 35, 61, .9) 100%);
}

.qr-hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 90px 20px 60px;
}

.qr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px;
}

.qr-breadcrumb a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.qr-breadcrumb a:hover {
    color: #fff;
}

.qr-breadcrumb .qr-bc-sep {
    font-size: 12px;
    color: var(--qr-orange);
}

.qr-breadcrumb .qr-bc-current {
    font-size: 12px;
    font-weight: 700;
    color: var(--qr-orange);
}

.qr-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--qr-orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qr-hero-content h1 {
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
    max-width: 900px;
}

.qr-hero-content h4 {
    font-size: 1.08rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 20px;
    line-height: 1.6;
}

.qr-google-tag {
    background: var(--qr-orange);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.qr-google-tag p {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.qr-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px;
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.qr-trust-badges .qr-tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
}

.qr-trust-badges .qr-tb-item i {
    font-size: 16px;
    color: var(--qr-orange);
}

@media(max-width:600px) {
    .qr-hero-content h1 {
        font-size: 1.9rem;
    }
}

/* ══════ TRUST BAR ══════ */
.qr-trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--qr-border);
    box-shadow: 0 2px 16px rgba(81, 112, 255, .06);
}

.qr-tb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.qr-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 30px 22px;
    border-right: 1px solid var(--qr-border);
}

.qr-trust-item:last-child {
    border-right: none;
}

.qr-trust-item:hover {
    background: var(--qr-light);
}

.qr-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-trust-icon i {
    font-size: 20px;
}

.qr-trust-icon.g {
    background: rgba(66, 133, 244, .1);
}

.qr-trust-icon.g i {
    color: #4285f4;
}

.qr-trust-icon.s {
    background: rgba(81, 112, 255, .1);
}

.qr-trust-icon.s i {
    color: var(--qr-purple);
}

.qr-trust-icon.p {
    background: rgba(39, 174, 96, .1);
}

.qr-trust-icon.p i {
    color: #27ae60;
}

.qr-trust-icon.a {
    background: rgba(253, 143, 80, .1);
}

.qr-trust-icon.a i {
    color: var(--qr-orange);
}

.qr-tb-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--qr-dark);
}

.qr-tb-sub {
    font-size: 11px;
    color: var(--qr-muted);
    margin-top: 2px;
}

@media(max-width:900px) {
    .qr-tb-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .qr-trust-item:nth-child(2) {
        border-right: none;
    }

    .qr-trust-item:nth-child(3) {
        border-top: 1px solid var(--qr-border);
    }

    .qr-trust-item:nth-child(4) {
        border-top: 1px solid var(--qr-border);
        border-right: none;
    }
}

@media(max-width:480px) {
    .qr-tb-inner {
        grid-template-columns: 1fr;
    }

    .qr-trust-item {
        border-right: none !important;
        border-bottom: 1px solid var(--qr-border);
    }
}

/* ══════ QUICK FACTS ══════ */
.qr-facts-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.qr-fact-box {
    background: #fff;
    border: 1px solid var(--qr-border);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .05);
}

.qr-fact-val {
    font-size: 19px;
    font-weight: 900;
    color: var(--qr-purple);
    line-height: 1.1;
}

.qr-fact-label {
    font-size: 10.5px;
    color: var(--qr-muted);
    margin-top: 6px;
    line-height: 1.4;
}

@media(max-width:900px) {
    .qr-facts-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:560px) {
    .qr-facts-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════ ROUTE CARDS ══════ */
.qr-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.qr-route-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--qr-border);
    box-shadow: 0 4px 18px rgba(30, 41, 59, .06);
    transition: transform .25s, box-shadow .25s;
}

.qr-route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(81, 112, 255, .13);
}

.qr-route-card-top {
    background: linear-gradient(135deg, var(--qr-navy), var(--qr-navy-d));
    padding: 20px 20px 24px;
    color: #fff;
    position: relative;
}

.qr-route-flag {
    position: absolute;
    top: 105px;
    right: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(39, 174, 96, .9);
}

.qr-route-pair {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.qr-route-pair .code {
    font-size: 24px;
    font-weight: 900;
}

.qr-route-pair i {
    color: var(--qr-orange);
    font-size: 17px;
}

.qr-route-cities {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .72);
    display: flex;
    justify-content: space-between;
}

.qr-route-body {
    padding: 16px 20px 20px;
}

.qr-route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 11.5px;
    color: var(--qr-muted);
    margin-bottom: 12px;
}

.qr-route-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.qr-route-price {
    font-size: 19px;
    font-weight: 900;
    color: var(--qr-orange);
    margin-bottom: 12px;
}

.qr-route-price span {
    font-size: 11px;
    font-weight: 400;
    color: var(--qr-muted);
}

.qr-route-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--qr-purple), var(--qr-purple-d));
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    transition: opacity .2s;
}

.qr-route-cta:hover {
    opacity: .88;
}

@media(max-width:900px) {
    .qr-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .qr-route-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════ TABLE ══════ */
.qr-table-wrap {
    margin-top: 30px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--qr-border);
}

.qr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
}

.qr-table thead th {
    background: linear-gradient(135deg, var(--qr-navy), var(--qr-navy-d));
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.qr-table tbody tr {
    border-bottom: 1px solid var(--qr-border);
    transition: background .15s;
}

.qr-table tbody tr:hover {
    background: var(--qr-light);
}

.qr-table td {
    padding: 11px 15px;
    vertical-align: middle;
    color: var(--qr-mid);
}

.qr-table td:first-child {
    font-weight: 700;
    color: var(--qr-dark);
}

.qr-table tr.qr-best-row {
    background: rgba(81, 112, 255, .04);
}

.qr-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}

.qr-pill.green {
    background: rgba(39, 174, 96, .1);
    color: #1e8449;
}

.qr-pill.orange {
    background: rgba(253, 143, 80, .1);
    color: #c2620f;
}

.qr-pill.purple {
    background: rgba(81, 112, 255, .1);
    color: var(--qr-purple);
}

/* ══════ INFO GRID ══════ */
.qr-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.qr-info-card {
    background: #fff;
    border: 1px solid var(--qr-border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.qr-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(81, 112, 255, .1);
}

.qr-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(81, 112, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.qr-info-icon i {
    font-size: 20px;
    color: var(--qr-purple);
}

.qr-info-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--qr-dark);
    margin-bottom: 6px;
}

.qr-info-card p {
    font-size: 11.5px;
    color: var(--qr-muted);
    line-height: 1.55;
}

@media(max-width:900px) {
    .qr-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:520px) {
    .qr-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════ CABIN TABS ══════ */
.qr-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 34px 0 26px;
    flex-wrap: wrap;
}

.qr-tab-btn {
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    border: 1.5px solid var(--qr-border);
    background: #fff;
    color: var(--qr-muted);
    cursor: pointer;
    transition: all .2s;
    font-family: 'Montserrat', sans-serif;
}

.qr-tab-btn.active,
.qr-tab-btn:hover {
    background: var(--qr-purple);
    color: #fff;
    border-color: var(--qr-purple);
}

.qr-tab-panel {
    display: none;
}

.qr-tab-panel.active {
    display: block;
}

.qr-cabin-card {
    background: #fff;
    border: 1px solid var(--qr-border);
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 6px 24px rgba(30, 41, 59, .06);
}

.qr-cabin-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.qr-cabin-head h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--qr-dark);
}

.qr-cabin-value {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(81, 112, 255, .1);
    color: var(--qr-purple);
}

.qr-cabin-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.qr-cabin-spec {
    background: var(--qr-light);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.qr-cabin-spec .val {
    font-size: 15px;
    font-weight: 800;
    color: var(--qr-dark);
}

.qr-cabin-spec .lab {
    font-size: 10.5px;
    color: var(--qr-muted);
    margin-top: 3px;
}

.qr-cabin-list {
    list-style: none;
}

.qr-cabin-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--qr-mid);
    padding: 8px 0;
    border-bottom: 1px dashed var(--qr-border);
}

.qr-cabin-list li:last-child {
    border-bottom: none;
}

.qr-cabin-list li i {
    color: var(--qr-purple);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

@media(max-width:700px) {
    .qr-cabin-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════ FLEET ══════ */
.qr-fleet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.qr-fleet-card {
    background: rgb(245, 245, 228);
    border: 1px solid var(--qr-border);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
}

.qr-fleet-icon {
    font-size: 24px;
    color: var(--qr-purple);
    margin-bottom: 8px;
}

.qr-fleet-name {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--qr-dark);
}

.qr-fleet-use {
    font-size: 10.5px;
    color: var(--qr-muted);
    margin-top: 6px;
    line-height: 1.5;
}

@media(max-width:900px) {
    .qr-fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:560px) {
    .qr-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════ DESTINATIONS ══════ */
.qr-dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.qr-dest-card {
    background: #fff;
    border: 1px solid var(--qr-border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.qr-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(81, 112, 255, .1);
}

.qr-dest-card i {
    font-size: 22px;
    color: var(--qr-orange);
    margin-bottom: 8px;
}

.qr-dest-card h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--qr-dark);
    margin-bottom: 4px;
}

.qr-dest-card p {
    font-size: 11px;
    color: var(--qr-muted);
    line-height: 1.5;
}

@media(max-width:900px) {
    .qr-dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:560px) {
    .qr-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════ REVIEW PROS/CONS ══════ */
.qr-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 32px;
}

.qr-review-col {
    background: #fff;
    border: 1px solid var(--qr-border);
    border-radius: 18px;
    padding: 24px;
}

.qr-review-col.pros {
    border-top: 4px solid var(--qr-green);
}

.qr-review-col.cons {
    border-top: 4px solid var(--qr-red);
}

.qr-review-col h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qr-review-col.pros h4 {
    color: var(--qr-green);
}

.qr-review-col.cons h4 {
    color: var(--qr-red);
}

.qr-review-col ul {
    list-style: none;
}

.qr-review-col li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--qr-mid);
    padding: 7px 0;
    border-bottom: 1px dashed var(--qr-border);
}

.qr-review-col li:last-child {
    border-bottom: none;
}

.qr-review-col.pros li i {
    color: var(--qr-green);
    font-size: 13px;
    margin-top: 2px;
}

.qr-review-col.cons li i {
    color: var(--qr-red);
    font-size: 13px;
    margin-top: 2px;
}

@media(max-width:700px) {
    .qr-review-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════ VS COMPARISON ══════ */
.qr-vs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.qr-vs-card {
    background: #fff;
    border: 1px solid var(--qr-border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(30, 41, 59, .05);
}

.qr-vs-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--qr-dark);
    margin-bottom: 12px;
    text-align: center;
}

.qr-vs-title span {
    color: var(--qr-purple);
}

.qr-vs-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--qr-mid);
    padding: 8px 0;
    border-bottom: 1px dashed var(--qr-border);
}

.qr-vs-row:last-child {
    border-bottom: none;
}

.qr-vs-row strong {
    color: var(--qr-dark);
}

.qr-vs-verdict {
    margin-top: 12px;
    font-size: 12px;
    color: var(--qr-muted);
    background: var(--qr-light);
    border-radius: 10px;
    padding: 10px 12px;
    line-height: 1.6;
}

@media(max-width:700px) {
    .qr-vs-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════ FAQ ACCORDION ══════ */
.qr-faq-wrap {
    max-width: 1080px;
    margin: 34px auto 0;
}

.qr-faq-item {
    border: 1px solid var(--qr-border);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s;
}

.qr-faq-item:hover {
    box-shadow: 0 6px 20px rgba(81, 112, 255, .08);
}

.qr-faq-q {
    width: 100%;
    padding: 15px 18px;
    background: #fff;
    border: none;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--qr-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.qr-faq-q:hover {
    background: var(--qr-light);
}

.qr-faq-q i {
    font-size: 17px;
    color: var(--qr-purple);
    transition: transform .3s;
    flex-shrink: 0;
}

.qr-faq-q.open {
    background: var(--qr-light);
}

.qr-faq-q.open i {
    transform: rotate(180deg);
}

.qr-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.qr-faq-a-inner {
    padding: 4px 18px 16px;
    font-size: 13px;
    color: var(--qr-muted);
    line-height: 1.7;
    border-top: 1px solid var(--qr-border);
}

.qr-faq-a-inner strong {
    color: var(--qr-dark);
}

.qr-faq-cat-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--qr-purple);
    margin: 30px 0 12px;
}

.qr-faq-cat-label:first-child {
    margin-top: 0;
}

/* ══════ INTERNAL LINKS ══════ */
.qr-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.qr-link-pill {
    display: block;
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    background: var(--qr-purple);
    transition: all .22s;
}

.qr-link-pill:hover {
    background: var(--qr-purple-d);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(81, 112, 255, .28);
}

.qr-link-pill.alt {
    background: var(--qr-orange);
}

.qr-link-pill.alt:hover {
    background: var(--qr-orange-d);
}

@media(max-width:900px) {
    .qr-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .qr-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════ CTA ══════ */
.qr-cta-section {
    padding: 84px 0;
    background: var(--qr-navy);
    position: relative;
    overflow: hidden;
    margin: 24px;
    border-radius: 30px;
}

.qr-cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, .18) 0%, transparent 65%);
}

.qr-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.qr-cta-inner h2 {
    font-size: 27px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.qr-cta-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    margin-bottom: 30px;
}

.qr-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.qr-btn-call,
.qr-btn-wa,
.qr-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    transition: transform .2s;
}

.qr-btn-call {
    background: linear-gradient(135deg, var(--qr-purple), var(--qr-purple-d));
    color: #fff;
}

.qr-btn-wa {
    background: #25d366;
    color: #fff;
}

.qr-btn-quote {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
}

.qr-btn-call:hover,
.qr-btn-wa:hover,
.qr-btn-quote:hover {
    transform: translateY(-3px);
}

@media(max-width:600px) {
    .qr-cta-section {
        margin: 12px;
    }

    .qr-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .qr-btn-call,
    .qr-btn-wa,
    .qr-btn-quote {
        justify-content: center;
    }
}

/* ══════ MISC ══════ */
.qr-note {
    font-size: 11.5px;
    color: var(--qr-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.qr-subhead {
    font-size: 17px;
    font-weight: 800;
    color: var(--qr-dark);
    margin: 34px 0 6px;
    text-align: center;
}

.qr-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
    background-color: whitesmoke;
    padding: 20px;
    border-radius: 20px;
}

@media(max-width:700px) {
    .qr-two-col {
        grid-template-columns: 1fr;
    }
}