/* =============================================================
   FTS LAW – FOREIGN LEGAL & VISA SUPPORT
   Master Stylesheet  |  v1.0.0
   All 20 pages · Responsive · Dark Navy / Gold palette
   ============================================================= */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
    --navy: #0f2747;
    --navy-2: #13345f;
    --navy-light: #1a3f72;
    --gold: #c8a96b;
    --gold-dark: #b18c44;
    --gold-light: #d9bf8d;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --green: #25d366;
    --green-dark: #1da851;
    --red: #dc2626;
    --orange: #ea580c;
    --yellow: #ca8a04;
    --blue-light: #ddeaf7;
    --shadow: 0 18px 40px rgba(15, 39, 71, 0.12);
    --shadow-sm: 0 4px 14px rgba(15, 39, 71, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 39, 71, 0.18);
    --radius: 24px;
    --radius-sm: 14px;
    --radius-xs: 10px;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 1rem;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.6em;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

p {
    margin: 0 0 1em;
}
p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    opacity: 0.88;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    padding-left: 1.4em;
}
li {
    margin-bottom: 0.4em;
}

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

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

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

section {
    padding: 80px 0;
}
.section-soft {
    background: var(--soft);
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.section-title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: var(--navy);
}

.section-subtitle {
    margin: 0 0 32px;
    max-width: 760px;
    color: var(--muted);
    font-size: 1rem;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}

.btn-gold {
    background: var(--gold);
    color: #111827;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: #f0f4f8;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.44);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: rgba(15, 39, 71, 0.3);
}
.btn-outline-navy:hover {
    background: rgba(15, 39, 71, 0.06);
}

/* ─── PILLS ──────────────────────────────────────────────────── */
.pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pill {
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid var(--line);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
}

/* ─── GRIDS ──────────────────────────────────────────────────── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.two-col {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}
.two-col--reverse > * {
    direction: ltr;
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.1rem;
}

.card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

.card ul {
    margin: 0 0 16px;
    padding-left: 1.2em;
}

.card li {
    margin-bottom: 5px;
    font-size: 0.93rem;
}

.card-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.card--highlight {
    background: linear-gradient(160deg, #f7f9fc, #eef2f7);
    border: 1px solid #dde5f0;
}

.card__highlight-title {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.card-gradient {
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
    border: 1px solid #e5ebf3;
    box-shadow: 0 8px 20px rgba(10, 35, 66, 0.06);
    border-radius: 18px;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    isolation: isolate;
    background: rgba(11, 34, 63, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(2, 11, 23, 0.24);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(200, 169, 107, 0),
        rgba(200, 169, 107, 0.45),
        rgba(200, 169, 107, 0)
    );
    opacity: 0.75;
    pointer-events: none;
}

.site-header.is-scrolled {
    background: rgba(8, 26, 49, 0.98);
    border-bottom-color: rgba(200, 169, 107, 0.38);
    box-shadow: 0 12px 30px rgba(2, 8, 18, 0.34);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.brand--text {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.96rem;
    letter-spacing: 0.03em;
    transition: opacity 0.18s ease;
}

.brand--text:hover {
    opacity: 0.9;
}

.brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand img,
.brand .custom-logo {
    height: 48px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.24));
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.nav-primary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

/* nav-secondary is now a direct child of .header-inner */
.nav-secondary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 8px;
}

.nav-consult-language {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-language-switcher {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nav-language-switcher form,
.nav-language-switcher .pll-switcher-container {
    width: 100%;
    margin: 0;
    position: relative;
}

/* Custom gold chevron arrow */
.nav-language-switcher form::after,
.nav-language-switcher .pll-switcher-container::after {
    content: "";
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23c8a96b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.nav-consult-language .btn {
    min-height: 40px;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 0.86rem;
    white-space: nowrap;
}

.nav-language-switcher select {
    height: 40px;
    border-radius: 999px;
    border: 1.5px solid #c8a96b;
    background: #0f2747;
    color: #ffffff;
    padding: 0 34px 0 16px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.nav-language-switcher select:hover {
    border-color: #d4ba7b;
    background: #1a3a5f;
}

.nav-language-switcher select:focus {
    outline: none;
    border-color: #c8a96b;
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.25);
}

.nav-language-switcher select option {
    color: #ffffff;
    background: #0f2747;
    padding: 8px 12px;
}

/* Mobile-only language switcher inside nav menu — hidden on desktop */
.nav-mobile-lang {
    display: none;
}

.nav-language-switcher .lang-fallback {
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(200, 169, 107, 0.4);
    background: rgba(200, 169, 107, 0.08);
    color: rgba(200, 169, 107, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 600;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.nav-primary > a,
.nav-primary > .nav-dropdown > .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 2px 0;
    border-radius: 0;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1;
    border-bottom: 2px solid transparent;
}

.nav-primary > a:hover,
.nav-primary > a:focus-visible,
.nav-primary > .nav-dropdown.is-open > .nav-dropdown-toggle,
.nav-primary > .nav-dropdown:focus-within > .nav-dropdown-toggle,
.nav-primary > .nav-dropdown > .nav-dropdown-toggle:focus-visible {
    color: var(--gold-light);
    background: transparent;
    border-bottom-color: rgba(200, 169, 107, 0.72);
    outline: none;
}

.nav-primary > a.active,
.nav-primary > .nav-dropdown.is-active > .nav-dropdown-toggle {
    color: var(--gold-light);
    background: transparent;
    border-bottom-color: rgba(200, 169, 107, 0.9);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 0.18s ease;
}

.nav-primary > .nav-dropdown > .nav-dropdown-toggle::after {
    content: "\25BE";
    font-size: 0.58rem;
    opacity: 0.85;
    transform: translateY(1px);
    transition: transform 0.18s ease;
}

.nav-primary > .nav-dropdown.is-open > .nav-dropdown-toggle::after,
.nav-primary > .nav-dropdown:focus-within > .nav-dropdown-toggle::after {
    transform: translateY(1px) rotate(180deg);
}

.nav-dropdown-toggle:hover {
    color: var(--gold-light);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #d9e1ec;
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    z-index: 90;
    box-shadow: 0 16px 34px rgba(10, 28, 58, 0.2);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
}

.nav-dropdown-menu a:hover {
    background: rgba(15, 39, 71, 0.07);
    border-color: rgba(15, 39, 71, 0.14);
    color: var(--navy);
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
    .nav-primary > a:hover,
    .nav-primary > .nav-dropdown:hover > .nav-dropdown-toggle {
        color: var(--gold-light);
        background: transparent;
        border-bottom-color: rgba(200, 169, 107, 0.72);
    }

    .nav-primary > .nav-dropdown:hover > .nav-dropdown-toggle::after {
        transform: translateY(1px) rotate(180deg);
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Hamburger toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 9px 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 169, 107, 0.52);
    outline: none;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.menu-toggle span + span {
    margin-top: 6px;
}

/* Animate hamburger into close icon when mobile menu is open */
body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

.menu-toggle,
.nav a,
.nav-dropdown-toggle,
.nav .btn {
    touch-action: manipulation;
}

/* ─── HERO (HOMEPAGE) ────────────────────────────────────────── */
.hero {
    background:
        linear-gradient(rgba(15, 39, 71, 0.84), rgba(15, 39, 71, 0.88)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80")
            center/cover;
    color: var(--white);
    padding: 90px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    color: var(--white);
}

.hero p {
    margin: 0 0 26px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.06rem;
}

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

.hero-note {
    max-width: 640px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 18px 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
    color: var(--text);
    text-align: center;
}

.hero-card img,
.profile-photo img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    background: var(--line);
}

.photo-caption {
    margin-top: 16px;
}
.photo-caption strong {
    display: block;
    font-size: 1.05rem;
    color: var(--navy);
}
.photo-caption span {
    color: var(--muted);
    font-size: 0.92rem;
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 20px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    min-height: 72px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(15, 39, 71, 0.04);
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(200, 169, 107, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ─── PROFILE SECTION ────────────────────────────────────────── */
.profile-photo {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
    align-self: start;
}

.profile-name {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.profile-title {
    color: var(--muted);
    margin-top: 0;
    font-size: 0.95rem;
}
.profile-intro {
    font-size: 1rem;
}

.profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}

.profile-badge__icon {
    font-size: 1.1rem;
}

.lawyer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.lawyer-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.lawyer-info-item__label {
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lawyer-info-item__value {
    font-size: 0.9rem;
    font-weight: 500;
}

.profile-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Practice card */
.practice-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.practice-card:hover {
    box-shadow: var(--shadow);
}

.practice-card__icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.practice-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.practice-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

.practice-card a {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Trust features */
.trust-feature {
    text-align: center;
    padding: 24px 20px;
}

.trust-feature__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.trust-feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.trust-feature p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Consultant */
.consultant-photo {
    display: flex;
    justify-content: center;
}

.consultant-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultant-avatar__initials {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
}

/* ─── SERVICE LIST ────────────────────────────────────────────── */
.service-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.service-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--line);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.service-list li:last-child {
    border-bottom: 0;
}

/* ─── CHECK LIST ─────────────────────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.check-list li {
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    top: 8px;
}

/* ─── REQUIREMENTS LIST ──────────────────────────────────────── */
.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    padding: 11px 14px 11px 36px;
    position: relative;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}

.req-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: var(--gold-dark);
    font-weight: 700;
}

.req-list li:last-child {
    border-bottom: 0;
}

.req-block {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 22px;
}

.req-block__title {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.req-block--gold {
    background: rgba(200, 169, 107, 0.06);
    border-color: rgba(200, 169, 107, 0.3);
}

/* ─── KEY FACTS LIST ─────────────────────────────────────────── */
.key-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-facts-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
    align-items: start;
}

.key-facts-list li:last-child {
    border-bottom: 0;
}

.key-facts-list__label {
    font-weight: 700;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 2px;
}

.key-facts-list__value {
    font-weight: 500;
}

/* ─── PLAIN LIST ─────────────────────────────────────────────── */
.plain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plain-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}

.plain-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
}

.plain-list li:last-child {
    border-bottom: 0;
}

/* ─── INFO BOX ───────────────────────────────────────────────── */
.info-box {
    background: rgba(200, 169, 107, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-box--soft {
    background: var(--soft);
    border-color: var(--line);
}

.info-box--warning {
    background: rgba(234, 88, 12, 0.08);
    border-color: var(--orange);
}

.info-box--danger {
    background: rgba(220, 38, 38, 0.08);
    border-color: var(--red);
}

.info-box p {
    margin: 6px 0 0;
    font-size: 0.9rem;
}

/* ─── PAGE HERO (INNER PAGES) ────────────────────────────────── */
.page-hero {
    background:
        linear-gradient(rgba(15, 39, 71, 0.9), rgba(15, 39, 71, 0.92)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80")
            center/cover;
    color: var(--white);
    padding: 70px 0 60px;
    text-align: center;
}

.page-hero .eyebrow {
    color: var(--gold);
}

.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin: 0 0 16px;
    color: var(--white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero__subtitle {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
}

.page-hero--simple {
    padding: 56px 0 48px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
    background: #f9fafb;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    font-size: 0.86rem;
    color: var(--muted);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gold-dark);
    font-weight: 600;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* ─── DOWNLOAD BAND ──────────────────────────────────────────── */
.download-band {
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    box-shadow: var(--shadow-lg);
}

.download-band h2 {
    color: var(--white);
    margin-top: 0;
}
.download-band p {
    color: rgba(255, 255, 255, 0.86);
}

/* ─── FORM BOX ───────────────────────────────────────────────── */
.form-box {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 28px;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.form-box h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: var(--navy);
}
.form-box__eyebrow {
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}
.form-box__title {
    margin: 0 0 8px;
    font-size: 1.4rem;
}
.form-box__desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Forms */
form {
    display: grid;
    gap: 14px;
}

.form-group {
    display: grid;
    gap: 6px;
}
.form-label,
label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}
.form-required,
.req {
    color: var(--red);
}

input:not([type="hidden"]),
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-xs);
    border: 1.5px solid #d1d5db;
    font: inherit;
    font-size: 0.93rem;
    background: #fff;
    color: var(--text);
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
    -webkit-appearance: none;
    appearance: none;
}

/* Force hidden controls to stay hidden across form plugins. */
input[type="hidden"],
form fieldset[hidden],
form fieldset.hidden,
form .is-hidden,
.wpcf7 input[type="hidden"],
.wpcf7 fieldset[hidden],
.wpcf7 fieldset.hidden {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

/* Keep native UI/behavior for checkbox and radio controls. */
input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: auto;
    appearance: auto;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--navy-light);
    box-shadow: 0 0 0 3px rgba(15, 39, 71, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.form-field--checkbox .form-checkbox-label,
.form-group--checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-field--checkbox input[type="checkbox"],
.form-group--checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--navy);
}

.form-disclaimer {
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
}

/* Contact Form 7 compatibility with theme form styles */
.wpcf7 form .wpcf7-response-output {
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.88rem;
    line-height: 1.5;
}

.wpcf7 form .wpcf7-response-output:empty {
    display: none;
}

.wpcf7 form textarea {
    min-height: 120px;
    max-height: 280px;
    resize: vertical;
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(140deg, var(--gold-dark), var(--gold));
    color: #111827;
    border-radius: 28px;
    padding: 50px 36px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(200, 169, 107, 0.28);
}

.cta-band--light {
    background: var(--soft);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.cta-band__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: inherit;
    margin: 0 0 12px;
}

.cta-band__desc {
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 1rem;
    color: rgba(17, 24, 39, 0.8);
}

.cta-band__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-band__checklist {
    text-align: left;
    padding: 20px;
}

.cta-band__checklist h4 {
    margin-bottom: 12px;
}

/* Legacy .cta class (homepage) */
.cta {
    background: linear-gradient(180deg, #d7b97e, var(--gold));
    color: #111827;
    border-radius: 28px;
    text-align: center;
    padding: 44px 28px;
    box-shadow: 0 20px 50px rgba(200, 169, 107, 0.28);
}

.section-cta .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* ─── PROCESS STEPS ──────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.step-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.step-item p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* ─── PROCESS TIMELINE (PT PMA) ──────────────────────────────── */
.process-timeline {
    display: grid;
    gap: 0;
    margin-top: 36px;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.process-step:last-child {
    border-bottom: 0;
}
.process-step--final {
    border-bottom: 0;
}

.process-step__number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.process-step__content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.process-step__content p {
    color: var(--muted);
    font-size: 0.93rem;
}

.process-step__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.process-step__duration,
.process-step__agency {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--muted);
}

/* ─── TIMELINE GRID ──────────────────────────────────────────── */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.timeline-item {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.timeline-item__period {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.timeline-item p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

.timeline-card {
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    text-align: center;
}

.timeline-card__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.timeline-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.timeline-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* ─── VISA TILES (HOMEPAGE) ──────────────────────────────────── */
.visa-tile {
    display: block;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    color: var(--text);
}

.visa-tile:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.visa-tile__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.visa-tile h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.visa-tile p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* Visa cards (visa page) */
.visa-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.visa-card-desc {
    color: var(--muted);
    font-size: 0.9rem;
}

.visa-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0 16px;
}

.visa-meta-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    display: inline-block;
}

/* ─── STAT CARDS (HOMEPAGE COMPANY STRIP) ────────────────────── */
.stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: center;
}

.stat-card__num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

.company-strip__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ─── BLOG CARDS ─────────────────────────────────────────────── */
.card--blog {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.card__thumb {
    display: block;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    aspect-ratio: 16/9;
}

.card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card__thumb:hover img {
    transform: scale(1.04);
}

.card__body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.card__title a {
    color: var(--navy);
}
.card__title a:hover {
    color: var(--gold-dark);
}

.card__excerpt {
    font-size: 0.88rem;
    color: var(--muted);
    flex: 1;
}

.card__read-more {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Featured blog card (archive) */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    align-items: center;
}

.blog-featured-card__thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.blog-featured-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-card__body {
    padding: 36px 36px 36px 0;
}

.blog-featured-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.blog-meta-date {
    font-size: 0.82rem;
    color: var(--muted);
}

.blog-featured-card__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.blog-featured-card__title a {
    color: var(--navy);
}

.blog-featured-card__excerpt {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Blog filter bar */
.blog-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0;
}

.blog-filter-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.blog-filter-nav::-webkit-scrollbar {
    display: none;
}

.blog-filter-tab {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    transition: 0.2s;
}

.blog-filter-tab:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.blog-filter-tab.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* Blog topic tiles */
.blog-topics-strip {
    background: var(--soft);
    padding: 48px 0;
}
.blog-topics-strip__heading {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 24px;
}

.blog-topic-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.blog-topic-tile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.blog-topic-tile:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}
.blog-topic-tile__icon {
    font-size: 1.1rem;
}

/* Pagination */
.pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    transition: 0.18s;
}

.pagination .page-numbers.current {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.pagination .page-numbers:hover {
    border-color: var(--navy);
}

/* ─── ARTICLE TEMPLATES ──────────────────────────────────────── */
.article-hero {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    padding: 48px 0 40px;
}

.article-hero__meta-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.article-read-time {
    font-size: 0.82rem;
    color: var(--muted);
}

.article-hero__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 800px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-hero__excerpt {
    font-size: 1rem;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 20px;
}

.article-hero__byline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.byline-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.article-byline-info {
    display: flex;
    flex-direction: column;
}
.article-byline-author {
    font-weight: 700;
    font-size: 0.9rem;
}
.article-byline-date {
    font-size: 0.82rem;
    color: var(--muted);
}

.article-featured-image {
    padding: 0;
}

.article-featured-image__img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 0;
}

/* Article layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 48px;
    align-items: start;
}

.article-content__body {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text);
}

.article-content__body h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-content__body h3 {
    font-size: 1.2rem;
    margin-top: 28px;
}

.article-content__body p {
    margin-bottom: 1.1em;
}

.article-content__body ul,
.article-content__body ol {
    margin-bottom: 1.1em;
}

.article-content__body img {
    width: 100%;
    border-radius: 12px;
    margin: 16px 0;
}

/* Article disclaimer */
.article-disclaimer {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 0.88rem;
    color: var(--muted);
    align-items: flex-start;
}

.article-disclaimer__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Share buttons */
.article-share {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-share__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-share__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1.5px solid var(--line);
    cursor: pointer;
    font-family: inherit;
    transition: 0.18s;
    background: var(--white);
    color: var(--navy);
}

.share-btn:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}
.share-btn--wa:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

/* Inline article CTA */
.article-inline-cta {
    margin-top: 36px;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    border-radius: 20px;
    padding: 28px;
    color: var(--white);
}

.article-inline-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.article-inline-cta h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.article-inline-cta p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    margin: 0;
}

.article-inline-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Author box */
.article-author-box {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    align-items: start;
}

.article-author-box__avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author-box__label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-author-box__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin: 4px 0;
}
.article-author-box__bio {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* Post navigation */
.article-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.article-post-nav__next {
    text-align: right;
}

.article-post-nav__direction {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.article-post-nav__title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.4;
}

.article-post-nav__title:hover {
    color: var(--gold-dark);
}

/* Article sidebar */
.article-sidebar {
    position: sticky;
    top: 102px;
}

.sidebar-consult-card,
.sidebar-services-card,
.sidebar-guide-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-consult-card__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-consult-card__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.sidebar-consult-card__title {
    font-size: 1.1rem;
    margin: 0;
}
.sidebar-consult-card__desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}
.sidebar-consult-card__cta {
    width: 100%;
}
.sidebar-consult-card__wa {
    width: 100%;
}

.sidebar-card__title {
    font-size: 1rem;
    margin-bottom: 14px;
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sidebar-services-list a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 8px;
    align-items: center;
}
.sidebar-services-list a:last-child {
    border-bottom: 0;
}
.sidebar-services-list a:hover {
    color: var(--gold-dark);
}

.sidebar-guide-card__label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}
.sidebar-guide-card__title {
    font-size: 1.05rem;
    margin: 8px 0 8px;
    line-height: 1.35;
}
.sidebar-guide-card__desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 14px;
}

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-head {
    text-align: center;
    margin-bottom: 28px;
}
.contact-subtitle-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
    align-items: start;
}

.contact-form-card,
.contact-info-card {
    padding: 28px;
}

.contact-form-title {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 1.5rem;
    line-height: 1.25;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 10px;
    padding: 12px 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}
.contact-submit {
    width: 100%;
}

.info-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-item h4 {
    margin: 0 0 3px;
    font-size: 1rem;
    color: var(--navy);
}
.info-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.info-item a {
    color: var(--gold-dark);
    font-weight: 600;
}

.contact-media-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}

.office-photo-card {
    width: 100%;
    min-height: 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: var(--line);
}

.office-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.map-box {
    width: 100%;
    min-height: 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: var(--soft);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}

.map-placeholder {
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder__inner {
    text-align: center;
    padding: 32px 24px;
}

.map-placeholder__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.map-placeholder p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 16px;
}

/* ─── GUIDE AREAS ────────────────────────────────────────────── */
.guide-area {
    background: #fcfbf7;
}

.guide-chapters {
    margin-top: 24px;
}
.guide-chapters__title {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.guide-chapter-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.guide-chapter-item:last-child {
    border-bottom: 0;
}

.guide-chapter-item__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.guide-chapter-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.guide-chapter-item p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.guide-who-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.guide-who-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.guide-who-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.guide-who-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

.guide-trust-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 36px;
    background: var(--navy);
    border-radius: var(--radius);
}

.guide-trust-band__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.guide-trust-band__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.guide-trust-band__item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}
.guide-trust-band__item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    margin: 4px 0 0;
}

.guide-promo-band {
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.guide-promo-band h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.6rem;
}
.guide-promo-band p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 20px;
}

.guide-inline-band {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.guide-inline-band__copy h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.guide-inline-band__copy p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.guide-inline-band__pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ─── CONSULTATION PAGE ──────────────────────────────────────── */
.consultation-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    padding: 48px 0;
}

.consultation-form-card {
    padding: 32px;
}
.consultation-form-card__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.consultation-form-card__desc {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.consultation-form {
    display: grid;
    gap: 16px;
}
.consultation-form__submit {
    width: 100%;
    margin-top: 8px;
    font-size: 1rem;
    padding: 16px;
}
.consultation-form__note {
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
}

.consult-option-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 16px;
}

.consult-option-card--wa {
    background: linear-gradient(135deg, #e8f9ef, #d4f3e2);
    border-color: #b2dfc8;
}

.consult-option-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.consult-option-card__icon {
    font-size: 1.6rem;
}
.consult-option-card__title {
    font-size: 1.05rem;
    margin: 0;
}
.consult-option-card__desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 14px;
}
.consult-option-card__btn {
    width: 100%;
}
.consult-option-card__sub {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
}

.consult-option-card--trust {
    background: rgba(15, 39, 71, 0.04);
    border-color: rgba(15, 39, 71, 0.12);
    text-align: center;
}

.consult-trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
.consult-trust-icon + h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.consult-info-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
}

.consult-info-item:last-child {
    border-bottom: 0;
}
.consult-info-item__icon {
    font-size: 1.1rem;
}
.consult-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.consult-info-item p {
    margin: 0;
    color: var(--muted);
}
.consult-info-item a {
    color: var(--gold-dark);
    font-weight: 600;
}

/* Trust strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-strip__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.trust-strip__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.trust-strip__item strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}
.trust-strip__item p {
    color: var(--muted);
    font-size: 0.82rem;
    margin: 4px 0 0;
}

/* ─── PRIVACY PAGE ───────────────────────────────────────────── */
.privacy-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
    padding: 56px 0;
}

.privacy-content {
    max-width: 820px;
}

.privacy-section {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.privacy-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.privacy-section h3 {
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-list {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

.privacy-list li {
    margin-bottom: 0.5em;
    font-size: 0.93rem;
}

.privacy-section--highlight {
    background: rgba(200, 169, 107, 0.06);
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: var(--radius-sm);
    padding: 28px;
    margin-bottom: 36px;
}

.confidentiality-band {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.confidentiality-band__icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.confidentiality-band__content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.confidentiality-band__content p {
    font-size: 0.92rem;
}

.privacy-use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.privacy-use-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
}

.privacy-use-item__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.privacy-use-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.privacy-use-item p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.right-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
}

.right-item__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.right-item strong {
    display: block;
    font-size: 0.88rem;
}
.right-item p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 4px 0 0;
}

/* Cookie table */
.cookie-table-wrap,
.compare-table-wrap,
.ownership-table-wrap,
.deadline-table-wrap {
    overflow-x: auto;
    margin-top: 16px;
}

.cookie-table,
.compare-table,
.ownership-table,
.deadline-table {
    min-width: 600px;
    font-size: 0.88rem;
}

.cookie-table th,
.compare-table th,
.ownership-table th,
.deadline-table th {
    background: var(--navy);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.84rem;
}

.cookie-table td,
.compare-table td,
.ownership-table td,
.deadline-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    line-height: 1.5;
}

.cookie-table tr:last-child td,
.compare-table tr:last-child td,
.deadline-table tr:last-child td {
    border-bottom: 0;
}

.compare-table__highlight {
    background: rgba(200, 169, 107, 0.1);
    font-weight: 600;
}

.ownership-row--open td {
    background: rgba(34, 197, 94, 0.06);
}
.ownership-row--partial td {
    background: rgba(234, 179, 8, 0.06);
}
.ownership-row--limited td {
    background: rgba(249, 115, 22, 0.06);
}
.ownership-row--reserved td {
    background: rgba(239, 68, 68, 0.06);
}
.ownership-row--closed td {
    background: rgba(127, 29, 29, 0.06);
}

/* Privacy sidebar */
.privacy-sidebar {
    position: sticky;
    top: 102px;
}

.privacy-nav-card,
.privacy-contact-sidebar,
.privacy-related-links {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.privacy-nav-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.privacy-nav a {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 4px 0;
}
.privacy-nav a:hover {
    color: var(--navy);
}

.privacy-contact-sidebar h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.privacy-contact-sidebar p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 14px;
}
.privacy-contact-sidebar .btn + .btn {
    display: block;
}

.privacy-related-links h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.privacy-related-links nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.privacy-related-links a {
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 600;
}
.privacy-related-links a:hover {
    color: var(--gold-dark);
}

.privacy-contact-card {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-top: 24px;
}

.privacy-contact-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
}

.privacy-contact-item__icon {
    font-size: 1.2rem;
}
.privacy-contact-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.privacy-contact-item p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}
.privacy-contact-item a {
    color: var(--gold-dark);
    font-weight: 600;
}
.privacy-contact-item__note {
    font-style: italic;
    margin-top: 4px !important;
}

/* ─── RELATED CARDS ──────────────────────────────────────────── */
.related-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
    color: var(--text);
}

.related-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.related-card__icon {
    font-size: 1.8rem;
}
.related-card h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--navy);
}
.related-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

.related-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.related-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--soft);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-xs);
    transition: 0.2s;
    color: var(--text);
}

.related-link-card:hover {
    border-color: var(--navy);
}
.related-link-card__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.related-link-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}
.related-link-card span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ─── QUICK LINKS GRID ───────────────────────────────────────── */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--soft);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    transition: 0.2s;
}

.quick-link-item:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.quick-link-item__icon {
    font-size: 1.5rem;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: var(--white);
    overflow: hidden;
}

.faq-question,
.faq-item summary {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.faq-question::after,
.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer,
.faq-item__answer {
    padding: 0 22px 18px;
    border-top: 1px solid var(--line);
}

.faq-answer p,
.faq-item__answer p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 12px 0 0;
    line-height: 1.65;
}

/* ─── RISK CARDS ─────────────────────────────────────────────── */
.risk-card {
    padding: 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.risk-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.risk-card p {
    font-size: 0.88rem;
    color: var(--muted);
}
.risk-card--high {
    border-left: 4px solid var(--red);
}
.risk-card--medium {
    border-left: 4px solid var(--orange);
}
.risk-card--low {
    border-left: 4px solid var(--yellow);
}
.risk-card__link {
    color: var(--gold-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.risk-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.risk-badge--high {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}
.risk-badge--medium {
    background: rgba(234, 88, 12, 0.1);
    color: var(--orange);
}
.risk-badge--low {
    background: rgba(202, 138, 4, 0.1);
    color: var(--yellow);
}

/* ─── RISK CARDS (LEGAL RISK PAGE) ──────────────────────────── */
.risk-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.risk-card-icon {
    font-size: 1.5rem;
}
.risk-level {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}
.risk-level--high {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}
.risk-level--medium {
    background: rgba(234, 88, 12, 0.1);
    color: var(--orange);
}

.risk-checklist-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 14px 0 8px;
}

.risk-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.risk-checklist li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--line);
}
.risk-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}
.risk-checklist li:last-child {
    border-bottom: 0;
}

/* Top risks list */
.top-risks-list {
    display: grid;
    gap: 24px;
    margin-top: 36px;
}

.top-risk-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    align-items: start;
}

.top-risk-item__number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.top-risk-item__content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.top-risk-item__content p {
    font-size: 0.92rem;
    color: var(--text);
}

.top-risk-item__verdict {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.verdict-badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
}

.verdict-badge--danger {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}
.verdict-badge--warning {
    background: rgba(234, 88, 12, 0.1);
    color: var(--orange);
}

/* ─── NOTE CARDS ─────────────────────────────────────────────── */
.note-card {
    padding: 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--white);
}

.note-card__icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.note-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.note-card p {
    font-size: 0.88rem;
    color: var(--muted);
}
.note-card a {
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.note-card--warning {
    border-top: 3px solid var(--orange);
}
.note-card--info {
    border-top: 3px solid var(--navy);
}

/* ─── OVERSTAY TIMELINE ──────────────────────────────────────── */
.overstay-timeline {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.overstay-stage {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    padding: 24px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: start;
}

.overstay-stage--yellow {
    border-left: 4px solid #ca8a04;
    background: rgba(202, 138, 4, 0.05);
}
.overstay-stage--orange {
    border-left: 4px solid var(--orange);
    background: rgba(234, 88, 12, 0.05);
}
.overstay-stage--red {
    border-left: 4px solid var(--red);
    background: rgba(220, 38, 38, 0.05);
}

.overstay-stage__period {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
    text-align: center;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-xs);
    border: 1px solid var(--line);
}

.overstay-stage h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.overstay-stage ul {
    font-size: 0.88rem;
    margin: 0;
    padding-left: 1.2em;
}
.overstay-stage li {
    margin-bottom: 5px;
}

/* ─── DEADLINE TABLE ─────────────────────────────────────────── */
.deadline-table-wrap {
    overflow-x: auto;
    margin-top: 28px;
}

/* ─── URGENCY BAR ────────────────────────────────────────────── */
.urgency-bar {
    background: linear-gradient(
        90deg,
        rgba(220, 38, 38, 0.9),
        rgba(185, 28, 28, 0.9)
    );
    color: var(--white);
    padding: 14px 0;
}

.urgency-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgency-bar__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.urgency-bar__text {
    font-size: 0.9rem;
    flex: 1;
}
.urgency-bar__cta {
    flex-shrink: 0;
}

/* Extension card deadline */
.card__deadline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 12px 0 16px;
}

.card__deadline--urgent {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.3);
    color: var(--red);
}

/* ─── STRUCTURE CARDS ────────────────────────────────────────── */
.card--structure {
    position: relative;
}

.card--structure-recommended {
    border-top: 3px solid var(--gold-dark);
}

.structure-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-dark);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.structure-full-name {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    margin-top: -4px;
    margin-bottom: 10px;
}

.structure-recommendation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    background: rgba(200, 169, 107, 0.1);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    margin-top: 32px;
}

.structure-recommendation__inner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.structure-recommendation__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Ownership cards */
.ownership-card {
    padding: 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--white);
}

.ownership-card__icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.ownership-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.ownership-card p {
    font-size: 0.88rem;
    color: var(--muted);
}
.ownership-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-block;
    margin-top: 10px;
}

.ownership-card--open {
    border-top: 3px solid #16a34a;
}
.ownership-card--partial {
    border-top: 3px solid var(--yellow);
}
.ownership-card--restricted {
    border-top: 3px solid var(--red);
}
.ownership-card--advice {
    border-top: 3px solid var(--navy);
}

/* ─── INFO HIGHLIGHTS ────────────────────────────────────────── */
.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-highlight-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
}

.info-highlight-card__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.info-highlight-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 3px;
}
.info-highlight-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.info-highlight-card--warning {
    background: rgba(234, 88, 12, 0.06);
    border-color: rgba(234, 88, 12, 0.2);
}
.info-highlight-card--safe {
    background: rgba(22, 163, 74, 0.06);
    border-color: rgba(22, 163, 74, 0.2);
}

/* ─── WHO ITEMS ──────────────────────────────────────────────── */
.who-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
}

.who-item__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.who-item p {
    font-size: 0.88rem;
    margin: 0;
}

/* ─── CONNECTION GRID (INVESTOR VISA) ────────────────────────── */
.connection-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 36px;
}

.connection-step {
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    text-align: center;
}

.connection-step__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.connection-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.connection-step p {
    font-size: 0.85rem;
    color: var(--muted);
}
.connection-step__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-block;
    margin-top: 10px;
}

.connection-step--arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--gold-dark);
    background: transparent;
    border: 0;
    padding: 0;
}

/* ─── COMPLIANCE CALENDAR ────────────────────────────────────── */
.compliance-calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.compliance-month__header {
    background: var(--navy);
    color: var(--gold);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.compliance-month__items {
    list-style: none;
    padding: 16px;
    margin: 0;
    background: var(--soft);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius-xs) var(--radius-xs);
}

.compliance-month__items li {
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
}

.compliance-month__items li:last-child {
    border-bottom: 0;
}

.comp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comp-dot--red {
    background: var(--red);
}
.comp-dot--blue {
    background: var(--navy);
}
.comp-dot--green {
    background: var(--green-dark);
}
.comp-dot--orange {
    background: var(--orange);
}

/* Compliance items list */
.compliance-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.compliance-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    align-items: start;
}

.compliance-item__icon {
    font-size: 1.5rem;
}
.compliance-item__content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.compliance-item__content p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.compliance-item__deadline {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* ─── RIGHTS CARDS ───────────────────────────────────────────── */
.rights-card {
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    text-align: center;
}

.rights-card__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.rights-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.rights-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ─── SCOPE CARDS ────────────────────────────────────────────── */
.scope-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.scope-card__icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}
.scope-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.scope-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ─── MISTAKE CARDS ──────────────────────────────────────────── */
.mistake-card {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: var(--radius-sm);
}

.mistake-card__icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.mistake-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.mistake-card p {
    font-size: 0.88rem;
    color: var(--muted);
}
.mistake-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* ─── INTRO BANDS ────────────────────────────────────────────── */
.intro-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.trust-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    margin-bottom: 12px;
}

.trust-block__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.trust-block strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 3px;
}
.trust-block p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

/* ─── INTRO TWO-COL (VISA PAGE) ──────────────────────────────── */
.intro-two-col {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ─── SERVICE CATEGORY HEADER ────────────────────────────────── */
.service-category-header {
    margin-bottom: 28px;
}

/* ─── SECTION COUPLINGS ──────────────────────────────────────── */
.section-cta {
    padding: 60px 0;
}
.section-cta.section-soft {
    padding: 60px 0;
}

/* ─── GOVERNANCE CARDS ───────────────────────────────────────── */
.governance-card {
    padding: 22px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.governance-card__icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.governance-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.governance-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ─── TYPE CARDS ─────────────────────────────────────────────── */
.type-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.type-card__icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}
.type-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.type-card p {
    font-size: 0.88rem;
    color: var(--muted);
}
.type-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-block;
    margin-top: 10px;
}

/* ─── CONTACT PERSONS ────────────────────────────────────────── */
.contact-person-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
}

.contact-person-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
}

.contact-person-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person-card__avatar--initials {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-person-card__avatar--initials span {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-person-card__name {
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
}
.contact-person-card__role {
    font-size: 0.82rem;
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}
.contact-person-card__desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ─── CONTACT TIPS ───────────────────────────────────────────── */
.contact-tip-card {
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.contact-tip-card__icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.contact-tip-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.contact-tip-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* ─── SUPPORT ITEMS ──────────────────────────────────────────── */
.support-item {
    padding: 24px;
    text-align: center;
}
.support-item__icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}
.support-item h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.support-item p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ─── SETUP SIDEBAR ──────────────────────────────────────────── */
.setup-sidebar {
    align-self: start;
}

/* ─── WHY LEGAL CARDS ────────────────────────────────────────── */
.why-legal-card {
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.why-legal-card__icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.why-legal-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.why-legal-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* ─── NO RESULTS ─────────────────────────────────────────────── */
.no-results {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.no-results__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.no-results h2 {
    margin-bottom: 12px;
}
.no-results p {
    color: var(--muted);
    margin-bottom: 24px;
}
.no-results__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
    background: #07172a;
    color: var(--white);
    padding: 60px 0 36px;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 28px;
    padding-bottom: 36px;
}

.footer-logo-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 14px 0 16px;
    line-height: 1.65;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: inline-block;
    align-self: flex-start;
}

.footer-title {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.footer-contact-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.78);
}
.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-cta-btn {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.footer-bottom__legal {
    display: flex;
    gap: 16px;
}
.footer-bottom__legal a {
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom__legal a:hover {
    color: var(--gold);
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    background: var(--green);
    color: var(--white);
    padding: 12px 20px 12px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.wa-float__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ─── PAGE CONTENT (DEFAULT PAGE.PHP) ───────────────────────── */
.page-content {
    padding: 56px 0;
}

.page-content__inner {
    max-width: 820px;
}

.page-content__body {
    font-size: 0.97rem;
    line-height: 1.75;
}

.page-content__body h2 {
    margin-top: 36px;
    font-size: 1.5rem;
}
.page-content__body h3 {
    margin-top: 24px;
}
.page-content__body ul,
.page-content__body ol {
    margin-bottom: 1em;
}

/* ─── SECTION-BLOG-ARCHIVE ───────────────────────────────────── */
.section-blog-archive {
    padding: 48px 0;
}
.section-related-articles {
    padding: 60px 0;
}

/* ─── GUIDE FORM ─────────────────────────────────────────────── */
.guide-lead-form,
.guide-submit-btn {
    width: 100%;
}
.guide-submit-btn {
    font-size: 1rem;
    padding: 16px;
}

/* Section padding overrides */
.section-guide-main {
    padding: 60px 0;
}
.section-guide-who {
    padding: 60px 0;
}
.section-guide-trust {
    padding: 60px 0;
}
.section-consultation-main {
    padding: 0 0 60px;
}
.section-contact-main {
    padding: 48px 0;
}
.section-privacy {
    padding: 0 0 60px;
}

/* ─── HEADER WIDE DESKTOP: ≥1440px (two-row when needed) ───── */
@media (min-width: 1440px) {
    .header-inner {
        flex-wrap: wrap;
        row-gap: 0;
        padding: 10px 0 0;
        align-items: center;
    }

    .brand {
        flex-shrink: 0;
    }

    .nav-secondary {
        margin-left: auto;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: none !important;
    }

    .nav {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        padding: 6px 0 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-primary {
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: wrap;
        row-gap: 4px;
        flex: 1;
    }
}

/* ─── HEADER TIGHT DESKTOP: 1024-1439px (two-row) ──────────── */
@media (min-width: 1024px) and (max-width: 1439px) {

    /* Row 1: Brand (left) + nav-secondary (right) */
    /* Row 2: Full nav-primary links (full width)   */
    .header-inner {
        flex-wrap: wrap;
        row-gap: 0;
        padding: 10px 0 0;
        align-items: center;
    }

    /* Brand stays on row 1, left */
    .brand { flex-shrink: 0; }

    /* nav-secondary stays on row 1, right side */
    .nav-secondary {
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Hamburger hidden at this size */
    .menu-toggle { display: none !important; }

    /* Nav (nav-primary) moves to row 2, full width */
    .nav {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        padding: 6px 0 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-primary {
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
        row-gap: 4px;
        flex: 1;
    }

    .nav-primary > a,
    .nav-primary > .nav-dropdown > .nav-dropdown-toggle {
        font-size: 0.81rem;
    }

    .nav-consult-language .btn {
        min-height: 36px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 0.8rem;
    }

    .nav-language-switcher select {
        height: 36px;
        font-size: 0.8rem;
        padding: 0 30px 0 12px;
    }

    .nav-language-switcher form::after,
    .nav-language-switcher .pll-switcher-container::after {
        right: 10px;
        width: 12px;
        height: 12px;
    }
}

/* ─── HEADER COLLAPSE: ≤1023px (tablet + mobile) ────────────── */
@media (max-width: 1023px) {
    body.menu-open {
        overflow: hidden;
    }

    .header-inner {
        position: relative;
        min-height: 76px;
        padding: 10px 0;
        gap: 10px;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand img,
    .brand .custom-logo {
        height: 40px;
        max-width: min(160px, 100%);
    }

    .brand--text {
        font-size: 0.78rem;
        letter-spacing: 0.02em;
        line-height: 1.25;
        white-space: normal;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 1300;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;
        background: linear-gradient(160deg, rgba(7, 23, 45, 0.99), rgba(9, 31, 58, 0.99));
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

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

    /* nav-secondary is now outside nav — compact in header bar */
    .nav-secondary {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        min-width: 0;
        gap: 6px;
        margin-left: auto;
    }

    .nav-consult-language {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    /* Keep a single language switcher instance visible on tablet/mobile */
    .nav-secondary .nav-language-switcher {
        display: block;
    }

    .nav-mobile-lang {
        display: none !important;
    }

    .nav-consult-language .btn {
        font-size: 0.78rem;
        padding: 8px 12px;
        min-height: 36px;
        width: auto;
        white-space: nowrap;
    }

    .nav-primary {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-language-switcher .gt_selector,
    .nav-language-switcher select {
        width: 100%;
        height: 40px;
        font-size: 0.84rem;
    }

    .nav a {
        display: block;
        width: 100%;
        min-height: 44px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .nav a:hover,
    .nav a:focus-visible {
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-primary > a,
    .nav-primary > .nav-dropdown > .nav-dropdown-toggle {
        justify-content: space-between;
        min-height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.05);
        padding: 12px 14px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        min-width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        box-shadow: none;
        padding: 8px;
        margin-top: 6px;
        background: rgba(4, 14, 29, 0.62);
    }

    .nav-dropdown-menu a {
        color: rgba(255, 255, 255, 0.92);
    }

    .nav-dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(200, 169, 107, 0.35);
        color: var(--gold-light);
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .nav .btn {
        width: 100%;
        text-align: center;
    }
}

/* ─── RESPONSIVE: 1080px ─────────────────────────────────────── */
@media (max-width: 1080px) {
    .hero-grid,
    .two-col,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-band {
        grid-template-columns: 1fr;
    }
    .intro-two-col {
        grid-template-columns: 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
    .consultation-layout {
        grid-template-columns: 1fr;
    }
    .connection-grid {
        grid-template-columns: 1fr;
    }
    .connection-step--arrow {
        display: none;
    }
    .privacy-layout {
        grid-template-columns: 1fr;
    }
    .privacy-sidebar {
        position: static;
    }
    .trust-strip {
        grid-template-columns: 1fr 1fr;
    }
    .guide-trust-band {
        grid-template-columns: 1fr 1fr;
    }
    .compliance-calendar {
        grid-template-columns: 1fr 1fr;
    }
    .guide-promo-band {
        grid-template-columns: 1fr;
    }
    .guide-inline-band {
        grid-template-columns: 1fr;
    }
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-featured-card__body {
        padding: 28px;
    }
    .lawyer-info-grid {
        grid-template-columns: 1fr;
    }
    .intro-band {
        grid-template-columns: 1fr;
    }
    .ownership-table {
        min-width: 700px;
    }
}

/* ─── RESPONSIVE: 900px ──────────────────────────────────────── */
@media (max-width: 900px) {
    .contact-panel-grid,
    .contact-media-bottom,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .overstay-stage {
        grid-template-columns: 1fr;
    }
    .top-risk-item {
        grid-template-columns: 1fr;
    }
    .process-step {
        grid-template-columns: 1fr;
    }
    .compliance-item {
        grid-template-columns: 1fr;
    }
    .structure-recommendation {
        flex-direction: column;
    }
    .rights-grid {
        grid-template-columns: 1fr;
    }
    .privacy-use-grid {
        grid-template-columns: 1fr;
    }
    .article-inline-cta__inner {
        grid-template-columns: 1fr;
    }
    .article-author-box {
        grid-template-columns: 1fr;
    }
    .article-post-nav {
        grid-template-columns: 1fr;
    }
    .article-post-nav__next {
        text-align: left;
    }
    .form-row--2col {
        grid-template-columns: 1fr;
    }
}

/* ─── RESPONSIVE: 720px (MOBILE) ────────────────────────────── */
@media (max-width: 720px) {
    .header-inner {
        min-height: 68px;
        gap: 8px;
    }

    .brand img,
    .brand .custom-logo {
        height: 36px;
        max-width: min(140px, 100%);
    }

    .nav-consult-language .btn {
        font-size: 0.72rem;
        padding: 8px 10px;
        min-height: 34px;
    }

    .nav-secondary .nav-language-switcher select,
    .nav-secondary .nav-language-switcher .lang-fallback {
        height: 34px;
        min-width: 78px;
        font-size: 0.72rem;
        padding: 0 24px 0 10px;
    }

    /* Layout */
    .hero {
        padding: 48px 0 44px;
        background-position: center top;
    }
    section {
        padding: 52px 0;
    }

    .grid-4,
    .grid-3,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero-actions .btn {
        display: flex;
    }
    .nav-secondary .btn,
    .cta-band__actions .btn,
    .profile-cta .btn {
        width: auto;
    }

    .hero-grid {
        gap: 22px;
    }

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

    .hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.06;
    }

    .hero p {
        font-size: 0.98rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 34rem;
    }

    .hero-note {
        padding: 16px 16px;
        border-radius: 18px;
        font-size: 0.92rem;
        text-align: left;
    }

    .hero-card {
        max-width: 340px;
        margin: 0 auto;
        padding: 20px;
        border-radius: 22px;
    }

    .hero-card img,
    .profile-photo img {
        max-width: 100%;
    }

    .brand {
        white-space: normal;
        font-size: 0.95rem;
    }

    .download-band {
        padding: 28px 20px;
    }

    .page-hero {
        padding: 52px 0 44px;
    }
    .page-hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .company-strip__cards {
        grid-template-columns: 1fr 1fr;
    }

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

    .guide-trust-band {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .compliance-calendar {
        grid-template-columns: 1fr;
    }

    .blog-filter-nav {
        gap: 6px;
    }

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

    .consultation-form-card {
        padding: 22px;
    }

    .top-risk-item {
        padding: 18px;
    }
    .top-risk-item__number {
        width: 44px;
        height: 44px;
    }

    .footer-grid {
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wa-float {
        right: 14px;
        bottom: 14px;
    }
}

/* ─── RESPONSIVE: 420px (SMALL PHONES) ─────────────────────── */
@media (max-width: 420px) {
    .header-inner {
        min-height: 60px;
        padding: 8px 0;
        gap: 6px;
    }

    .brand--text {
        max-width: 112px;
        font-size: 0.66rem;
        line-height: 1.15;
        letter-spacing: 0.01em;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        padding: 7px 6px;
    }

    .nav-consult-language .btn {
        display: none;
    }

    .nav-secondary .nav-language-switcher select,
    .nav-secondary .nav-language-switcher .lang-fallback {
        min-width: 68px;
        height: 32px;
        font-size: 0.68rem;
        padding: 0 20px 0 8px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 9.2vw, 2.2rem);
    }
}

/* ─── PRINT ──────────────────────────────────────────────────── */
@media print {
    .site-header,
    .wa-float,
    .menu-toggle {
        display: none !important;
    }
    .page-hero {
        background: var(--navy) !important;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}
