.visa-page {
    --bg: #F5F6F3;
    --surface: #FFFFFF;
    --surface-sunk: #EEF1EE;
    --ink: #132430;
    --ink-soft: #4C5D67;
    --ink-faint: #7C8B93;
    --border: #DDE3DE;
    --primary: #0F3D52;
    --primary-dark: #0A2A3A;
    --primary-tint: #E4EEEC;
    --amber: #C1811F;
    --amber-tint: #FBF0DD;
    --success: #1E7F5C;
    --success-tint: #E4F3EC;
    --radius-s: 8px;
    --radius-m: 14px;
    --radius-l: 22px;
    --shadow-s: 0 1px 2px rgba(19, 36, 48, 0.06), 0 1px 1px rgba(19, 36, 48, 0.04);
    --shadow-m: 0 8px 24px rgba(19, 36, 48, 0.08);
    --shadow-l: 0 20px 48px rgba(19, 36, 48, 0.14);
    --maxw: 1180px;
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

.visa-page p,
.visa-page li {
    color: #5d6b73;
}



.visa-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}


.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-kicker {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.visa-page section {
    padding: 64px 0;
}

.section-head {
    max-width: 680px;
    margin-bottom: 32px;
}

.section-head p {
    margin-top: 10px;
    font-size: 16px;
}

:focus-visible {
    outline: 2.5px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
}

.visa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-s);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-m);
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
}

.btn-whatsapp {
    background: #1E7F5C;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #166247;
}

.btn-link {
    background: transparent;
    color: var(--primary);
    padding: 6px 0;
    font-weight: 600;
    border-radius: 0;
}

.btn-link:after {
    content: '→';
    margin-left: 6px;
    transition: margin .15s ease;
}

.btn-link:hover:after {
    margin-left: 10px;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 9px 16px;
    font-size: 14px;
}


/* ===== Tourist Visa Page Palette ===== */
.visa-page {
    --visa-ink: #101820;
    --visa-muted: #5d6b73;
    --visa-soft: #f5f5f5;
    --visa-line: #e6e6e6;
    --visa-brand: #c11425;
    --visa-brand-soft: rgba(193, 20, 37, .08);
    --visa-accent: #ffc000;
    --visa-accent-soft: #fff6d6;
    --visa-dark: #111111;
    --visa-white: #ffffff;
    color: var(--visa-ink);
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 440px);
}

.visa-page h1,
.visa-page h2,
.visa-page h3,
.visa-page h4 {
    color: var(--visa-ink);
}

.visa-page p {
    color: #5d6b73;
}

.visa-page .btn-primary {
    background: var(--visa-brand);
    color: var(--visa-white);
}

.visa-page .btn-primary:hover {
    background: var(--visa-dark);
}

.visa-page .btn-outline {
    background: var(--visa-white);
    color: var(--visa-brand);
    border-color: var(--visa-line);
}

.visa-page .btn-outline:hover {
    border-color: var(--visa-brand);
}

.visa-page .btn-link {
    color: var(--visa-brand);
}


.visa-breadcrumb {
    padding: 14px 0 0;
    font-size: 13px;
    color: var(--visa-muted);
}

.visa-breadcrumb a {
    color: var(--visa-muted);
}

.visa-breadcrumb a:hover {
    color: var(--visa-brand);
}

.visa-breadcrumb span.sep {
    margin: 0 6px;
}

.visa-breadcrumb .breadcrumb-current {
    color: var(--visa-muted);
}

/* Hero */
.visa-hero {
    padding: 32px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 16px;
}

.hero-description {
    font-size: 17px;
    max-width: 540px;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 14px;
    color: var(--visa-muted);
}

.feature-item {
    padding: 4px 16px 4px 0;
}

.feature-divider {
    color: var(--visa-line);
    padding: 0 12px 0 0;
}

.feature-item:first-child {
    padding-left: 0;
}

.hero-summary {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-l);
    padding: 26px;
    box-shadow: var(--shadow-m);
    position: relative;
    overflow: hidden;
}

.hero-summary:before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--visa-brand-soft);
}

.hero-summary .summary-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--visa-line);
}

.hero-summary .summary-row:last-child {
    border-bottom: none;
}

.hero-summary .summary-label {
    font-size: 14px;
    color: var(--visa-muted);
}

.hero-summary .summary-value {
    font-weight: 600;
    font-size: 15px;
    color: var(--visa-ink);
}

.hero-summary .summary-title {
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--visa-brand);
    margin-bottom: 6px;
    position: relative;
}

/* AEO answer block */
.answer-card {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-left: 4px solid var(--visa-brand);
    border-radius: var(--radius-m);
    padding: 24px 26px;
    box-shadow: var(--shadow-s);
    max-width: 760px;
}

.answer-card p {
    font-size: 16px;
    color: #5d6b73;
}

.trust-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 16px 18px;
    background: var(--visa-soft);
    border-radius: var(--radius-m);
    max-width: 660px;
}

.trust-note svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    color: var(--visa-muted);
    margin-top: 2px;
}

.trust-note p {
    font-size: 14px;
    color: var(--visa-muted);
}

/* Product hub groups */
.option-group+.option-group {
    margin-top: 44px;
}

.option-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.option-title .option-badge {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--visa-brand);
    padding: 3px 9px;
    border-radius: 6px;
}

.option-title h3 {
    font-size: 17px;
}

.options-grid {
    display: grid;
    gap: 16px;
}

.options-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.options-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.option-card {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-m);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.option-card .option-meta {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--visa-brand);
}

.option-card p {
    font-size: 14px;
    flex-grow: 1;
}

/* Tourist Visa Options: 2-column layout */
.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

/* Pricing table */
.price-table-wrap {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-s);
    margin-bottom: 16px;
}

.price-head {
    padding: 16px 22px;
    background: var(--visa-brand);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 3px;
}

.price-toggle button {
    padding: 6px 14px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0.7;
}

.price-toggle button[aria-selected="true"] {
    background: #fff;
    color: var(--visa-brand);
    opacity: 1;
}

table.price-table {
    width: 100%;
    border-collapse: collapse;
}

table.price-table th {
    text-align: left;
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--visa-muted);
    padding: 14px 22px;
    border-bottom: 1px solid var(--visa-line);
    font-weight: 600;
}

table.price-table td {
    padding: 16px 22px;
    border-bottom: 1px solid var(--visa-line);
    font-size: 15px;
}

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

table.price-table td.price-value {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 16px;
}

table.price-table td.price-tier {
    font-weight: 600;
}

.pricing-note {
    font-size: 13px;
    color: var(--visa-muted);
    font-style: italic;
    padding: 12px 22px;
    background: var(--visa-soft);
}



/* ===== Pricing section visual polish ===== */
.price-table-wrap {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(16, 24, 32, .07);
    margin-bottom: 24px;
}

.price-head {
    padding: 18px 20px;
    background: var(--visa-ink);
    color: var(--visa-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 700;
}

.price-head>span {
    font-size: 18px;
    line-height: 1.3;
}

.price-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    flex-shrink: 0;
}

.price-toggle button {
    border: 0;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease;
    white-space: nowrap;
}

.price-toggle button:hover {
    color: var(--visa-white);
}

.price-toggle button[aria-selected="true"] {
    background: var(--visa-brand);
    color: var(--visa-white);
    box-shadow: 0 5px 14px rgba(193, 20, 37, .28);
}

.price-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table thead th {
    background: #fafafa;
    color: var(--visa-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 13px;
    font-weight: 800;
    padding: 14px 20px;
    border-bottom: 1px solid var(--visa-line);
    text-align: left;
}

.price-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--visa-line);
    font-size: 15px;
    color: var(--visa-ink);
    background: var(--visa-white);
}

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

.price-table tbody tr {
    transition: background .2s ease;
}

.price-table tbody tr:hover td {
    background: #fffafa;
}

.price-tier {
    font-weight: 800;
}

.price-value {
    text-align: right;
    font-size: 18px !important;
    font-weight: 800;
    color: var(--visa-brand) !important;
    white-space: nowrap;
}

.price-table th:last-child {
    text-align: right;
}

.pricing-note {
    margin: 0;
    padding: 12px 20px 14px;
    background: #fffaf0;
    border-top: 1px solid #f4e0a1;
    color: var(--visa-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Decision tool */
.decision-tool {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.decision-question {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-l);
    padding: 24px 26px;
}

.decision-question .decision-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    display: block;
}

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

.decision-options.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.decision-option {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-s);
    background: var(--visa-soft);
    transition: border-color .15s ease, background .15s ease;
}

.decision-option:hover {
    border-color: var(--visa-brand);
    background: var(--visa-brand-soft);
}

.decision-option strong {
    font-size: 14px;
    color: var(--visa-ink);
}

.decision-option span {
    font-size: 13px;
    color: var(--visa-brand);
    font-weight: 600;
}

/* Checklist */
.requirements-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 24px;
}

.requirements-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    color: #5d6b73;
    padding: 14px 16px;
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-s);
}

.requirements-list svg {
    width: 17px;
    height: 17px;
    color: var(--visa-brand);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Steps */
.apply-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.apply-step {
    position: relative;
    padding: 0 16px 0 0;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--visa-brand);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 19px;
    left: 38px;
    right: -16px;
    height: 2px;
    background: var(--visa-line);
    z-index: 1;
}

.apply-step:last-child .step-line {
    display: none;
}

.apply-step h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.apply-step p {
    font-size: 13px;
}

/* Processing time table */
.processing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-m);
    overflow: hidden;
}

.processing-table td {
    padding: 16px 22px;
    border-bottom: 1px solid var(--visa-line);
    font-size: 15px;
}

.processing-table tr:last-child td {
    border-bottom: none;
}

.processing-table td:first-child {
    font-weight: 600;
}

.processing-table td:last-child {
    font-family: var(--font-mono);
    text-align: right;
    color: var(--visa-brand);
    font-weight: 600;
}

.processing-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 16px 18px;
    background: var(--visa-accent-soft);
    border-radius: var(--radius-m);
    border: 1px solid #ffe69a;
    max-width: 660px;
}

.processing-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--visa-accent);
    margin-top: 2px;
}

.processing-note p {
    font-size: 14px;
    color: #5d6b73;
}

/* Card grids generic */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card,
.benefit-card,
.help-card {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-m);
    padding: 22px;
}

.why-card svg,
.benefit-card svg,
.help-card svg {
    width: 22px;
    height: 22px;
    color: var(--visa-brand);
    margin-bottom: 12px;
}

.why-card h3,
.benefit-card h3,
.help-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.why-card p,
.benefit-card p,
.help-card p {
    font-size: 13px;
}

.help-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* About / entity */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-grid .text-block p+p {
    margin-top: 14px;
}

.policy-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-m);
    padding: 18px;
}

.policy-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 8px 4px;
    border-bottom: 1px solid var(--visa-line);
}

.policy-links a:last-child {
    border-bottom: none;
}

.policy-links a:hover {
    color: var(--visa-brand);
}

/* Reviews */
.reviews-box {
    background: var(--visa-white);
    border: 1px solid var(--visa-line);
    border-radius: var(--radius-l);
    padding: 44px 36px;
    text-align: center;
}

.reviews-box svg {
    width: 34px;
    height: 34px;
    color: var(--visa-line);
    margin: 0 auto 16px;
}

.reviews-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.reviews-box p {
    max-width: 440px;
    margin: 0 auto 20px;
    font-size: 15px;
}

/* FAQ */
.faq-list {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid var(--visa-line);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    color: var(--visa-ink);
}

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

.faq-item summary .faq-plus {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--visa-line);
    position: relative;
}

.faq-item summary .faq-plus:before,
.faq-item summary .faq-plus:after {
    content: '';
    position: absolute;
    background: var(--visa-muted);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item summary .faq-plus:before {
    width: 9px;
    height: 1.5px;
}

.faq-item summary .faq-plus:after {
    width: 1.5px;
    height: 9px;
    transition: opacity .15s ease;
}

.faq-item[open] summary .faq-plus:after {
    opacity: 0;
}

.faq-item .faq-answer {
    padding: 0 4px 19px;
    max-width: 700px;
}

.faq-item .faq-answer p {
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--visa-dark), var(--visa-brand));
    border-radius: var(--radius-l);
    padding: 56px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(193, 129, 31, 0.25), transparent 55%);
}

.final-cta h2 {
    color: #fff;
    position: relative;
}

.final-cta p {
    color: #f3d8dc;
    max-width: 480px;
    margin: 14px auto 28px;
    position: relative;
    font-size: 16px;
}

.final-cta .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.final-cta .btn-primary {
    background: #fff;
    color: var(--visa-dark);
}

.final-cta .btn-primary:hover {
    background: var(--visa-accent-soft);
}


/* ---------- Section-specific helpers moved from inline styles ---------- */
.intro-section {
    padding-top: 0;
}

.soft-section,
.options-section,
.decision-section,
.apply-section,
.eligibility-section,
.benefits-section,
.reviews-section {
    background: var(--visa-soft);
}

.hero-title {
    margin-top: 12px;
}

.accent-text {
    color: var(--visa-accent);
}

.pricing-link {
    margin-top: 8px;
    display: inline-block;
}

.requirements-answer {
    margin-bottom: 28px;
}

.apply-actions {
    margin-top: 36px;
}

.apply-link {
    margin-left: 14px;
}

.processing-answer {
    margin-bottom: 24px;
}

.processing-link {
    margin-top: 22px;
    display: inline-block;
}

.eligibility-content {
    max-width: 760px;
}

.eligibility-answer {
    margin-bottom: 20px;
}

.about-link {
    margin-top: 18px;
    display: inline-flex;
}
.breadcrumb-sep {
    margin: 0 6px;
    color: var(--visa-line);
}

.decision-options.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* RESPONSIVE CSS */

@media (max-width:900px) {
.hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-summary {
        order: -1;
    }

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

    .apply-step {
        padding: 0 0 28px 0;
    }

    .step-line {
        top: 38px;
        left: 19px;
        right: auto;
        bottom: -10px;
        width: 2px;
        height: auto;
    }

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

@media (max-width:820px) {
.options-grid.cols-2,
    .options-grid.cols-3 {
        grid-template-columns: 1fr;
    }

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

@media (max-width:700px) {
.options-grid,
    .options-grid.two-col,
    .options-grid.three-col {
        grid-template-columns: 1fr;
    }

.price-table-wrap {
        border-radius: 18px;
        overflow: hidden;
    }

    .price-head {
        padding: 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .price-head>span {
        font-size: 16px;
    }

    .price-toggle {
        width: 100%;
    }

    .price-toggle button {
        flex: 1;
        padding: 9px 10px;
    }

    .price-table thead {
        display: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .price-table tbody tr {
        padding: 16px;
        border-bottom: 1px solid var(--visa-line);
        background: var(--visa-white);
    }

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

    .price-table tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 5px 0;
        border: 0;
        background: transparent !important;
        text-align: right;
    }

    .price-table tbody td::before {
        content: "";
        color: var(--visa-muted);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
        text-align: left;
    }

    .price-table tbody td:nth-child(1)::before {
        content: "Processing";
    }

    .price-table tbody td:nth-child(2)::before {
        content: "Time";
    }

    .price-table tbody td:nth-child(3)::before {
        content: "Price";
    }

    .price-tier,
    .price-value {
        text-align: right !important;
    }

    .price-value {
        font-size: 17px !important;
    }

    .pricing-note {
        padding: 12px 16px 14px;
    }
}

@media (max-width:640px) {
.decision-options,
    .decision-options.cols-3 {
        grid-template-columns: 1fr;
    }

.requirements-list {
        grid-template-columns: 1fr;
    }
}

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

@media (prefers-reduced-motion: reduce) {
* {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (min-width: 1181px) {
    .visa-wrap {
        max-width: 1180px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
        gap: 52px;
    }

    .hero-summary {
        width: 100%;
        max-width: 440px;
        justify-self: end;
    }

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

    .three-col,
    .decision-options.three-col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .visa-wrap {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-grid {
        gap: 34px;
    }

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

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-summary {
        order: initial;
        width: 100%;
        max-width: 100%;
    }

    .three-col,
    .decision-options.three-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .apply-step {
        padding: 0 0 28px;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 14px;
        align-items: start;
    }

    .step-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-bottom: 0;
    }

    .apply-step h3,
    .apply-step p {
        grid-column: 2;
    }

    .step-line {
        top: 38px;
        left: 19px;
        right: auto;
        bottom: -4px;
        width: 2px;
        height: auto;
    }
}

@media (max-width: 767px) {
    .visa-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .visa-page section {
        padding: 52px 0;
    }

    .visa-hero {
        padding: 28px 0 42px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.08;
        margin-top: 10px;
    }

    .section-head {
        margin-bottom: 26px;
    }

    .section-head h2 {
        font-size: 29px;
        line-height: 1.16;
    }

    .hero-description,
    .section-head p,
    .answer-card p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 10px;
        margin-bottom: 22px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
        align-items: start;
    }

    .feature-item {
        padding: 0;
        min-width: 0;
    }

    .feature-divider {
        display: none;
    }

    .hero-summary {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .hero-summary .summary-row {
        gap: 18px;
        align-items: flex-start;
    }

    .hero-summary .summary-value {
        max-width: 58%;
        text-align: right;
        overflow-wrap: anywhere;
    }

    .two-col,
    .three-col,
    .decision-options,
    .decision-options.three-col {
        grid-template-columns: 1fr;
    }

    .option-group + .option-group {
        margin-top: 34px;
    }

    .option-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .option-card,
    .decision-question,
    .why-card,
    .benefit-card,
    .help-card {
        padding: 20px;
    }

    .answer-card {
        padding: 20px;
        max-width: 100%;
    }

    .trust-note,
    .processing-note {
        max-width: 100%;
    }

    .price-head {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
    }

    .price-toggle {
        width: 100%;
    }

    .price-toggle button {
        flex: 1 1 0;
        min-width: 0;
        padding: 9px 8px;
        white-space: normal;
    }

    .price-table thead {
        display: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tbody tr {
        padding: 15px 16px;
        border-bottom: 1px solid var(--visa-line);
    }

    .price-table tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 5px 0;
        border: 0;
        text-align: right;
    }

    .price-table tbody td:nth-child(1)::before {
        content: "Processing";
    }

    .price-table tbody td:nth-child(2)::before {
        content: "Time";
    }

    .price-table tbody td:nth-child(3)::before {
        content: "Price";
    }

    .price-table tbody td::before {
        color: #5d6b73;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: left;
    }

    .requirements-list {
        grid-template-columns: 1fr;
    }

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

    .processing-table {
        width: 100%;
    }

    .processing-table td {
        padding: 14px 16px;
    }

    .reviews-box {
        padding: 34px 22px;
    }

    .faq-item summary {
        padding: 17px 0;
        align-items: flex-start;
    }

    .final-cta {
        padding: 42px 22px;
    }
}

@media (max-width: 560px) {
    .visa-wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-head h2 {
        font-size: 27px;
    }

    .hero-actions,
    .apply-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .visa-btn,
    .apply-actions .visa-btn,
    .cta-actions .visa-btn,
    .requirements-section > .visa-wrap > .visa-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .apply-link {
        margin-left: 0;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .hero-summary .summary-row {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .hero-summary .summary-value {
        max-width: none;
    }

    .price-table-wrap {
        border-radius: 16px;
    }

    .decision-question {
        padding: 18px 16px;
    }

    .processing-table,
    .processing-table tbody,
    .processing-table tr,
    .processing-table td {
        display: block;
        width: 100%;
    }

    .processing-table tr {
        padding: 13px 16px;
        border-bottom: 1px solid var(--visa-line);
    }

    .processing-table tr:last-child {
        border-bottom: 0;
    }

    .processing-table td {
        padding: 3px 0;
        border: 0;
        text-align: left !important;
    }

    .processing-table td:last-child {
        margin-top: 3px;
    }

    .final-cta {
        padding: 36px 18px;
        border-radius: 18px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 30px;
    }

    .section-head h2 {
        font-size: 25px;
    }

    .hero-summary {
        padding: 20px 16px;
    }

    .hero-summary .summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hero-summary .summary-value {
        text-align: left;
    }
}