/* 
   VizeLanka - 2026 Premium Light Design System
   Architecture: Mobile-First, Trust & Transparency, Bento Grid
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    /* Color Tokens - 2026 "Official Trust" Light Palette */
    --color-bg: #F8FAFC;           /* Off-white / Pearl */
    --color-surface: rgba(255, 255, 255, 0.85); /* Translucent White */
    --color-surface-solid: #FFFFFF;
    
    --color-primary: #0F172A;      /* Very Dark Slate for main text */
    --color-text-muted: #475569;   /* Slate 600 for descriptions */
    
    --color-accent: #0250C5;       /* Official/Diplomatic Blue */
    --color-accent-hover: #1D4ED8;
    --color-accent-soft: rgba(2, 80, 197, 0.05);
    
    --color-border: rgba(15, 23, 42, 0.08); /* Very subtle dark border */
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 3rem;     /* 48px */
    --space-xl: 6rem;     /* 96px */
    
    /* UI Tokens */
    --radius-full: 100px;
    --radius-lg: 24px;
    --radius-md: 16px;
    
    /* 2026 Diffuse Soft Shadows */
    --shadow-sm: 0 4px 20px -2px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 12px 40px -8px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 20px 60px -12px rgba(2, 80, 197, 0.12);
    
    --blur: 24px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg);
    color: var(--color-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

[hidden] {
    display: none !important;
}

/* --- Layout Components --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-lg) 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: var(--space-xl) 0;
    }
}

/* --- UI Elements --- */
.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}

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

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 80, 197, 0.2);
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px var(--color-accent);
}

.btn-primary:hover {
    transform: scale(1.02);
    background: var(--color-accent-hover);
    box-shadow: 0 15px 40px -10px var(--color-accent);
}

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

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

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    line-height: 1;
    white-space: nowrap;
    min-width: 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    width: min(54vw, 290px);
    max-width: 100%;
    flex: 0 0 auto;
}

.brand-logo__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.brand-logo--footer {
    width: min(72vw, 330px);
    max-width: 100%;
    padding: 0.7rem 0.95rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.45);
}

@media (max-width: 719px) {
    .brand-logo {
        width: min(48vw, 210px);
    }

    .brand-logo--footer {
        width: min(76vw, 280px);
        padding: 0.6rem 0.8rem;
        border-radius: 16px;
    }
}

.main-header.scrolled .brand-wordmark__main {
    color: var(--color-primary);
}

.main-header.scrolled .brand-wordmark__suffix {
    background: rgba(2, 80, 197, 0.08);
    color: var(--color-accent);
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: var(--space-lg);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-text-muted);
    }
    .nav-links a:hover {
        color: var(--color-primary);
    }
}

.lang-switch a {
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 10px;
    color: var(--color-text-muted);
}
.lang-switch a.active {
    color: var(--color-accent);
}

/* --- Hero --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    background: radial-gradient(circle at top right, var(--color-accent-soft) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.03) 0%, transparent 40%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.trust-strip {
    margin-top: calc(-1 * var(--space-md));
    margin-bottom: var(--space-lg);
}

.trust-strip__inner {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md);
    display: grid;
    gap: var(--space-md);
}

.trust-strip__copy h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 0.45rem;
}

.trust-strip__copy p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
}

.trust-strip__grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.trust-strip__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface-solid);
    padding: 0.9rem 1rem;
    display: grid;
    gap: 0.25rem;
}

.trust-strip__item .trust-strip__title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-strip__item strong {
    font-size: 1rem;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .trust-strip__inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
        align-items: center;
    }

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

/* --- Bento Grid (2026 Refined) --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    background: var(--color-accent-soft);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .col-span-12 { grid-column: span 12; }
    .col-span-8 { grid-column: span 8; }
    .col-span-6 { grid-column: span 6; }
    .col-span-4 { grid-column: span 4; }
    .bento-col-span-12 { grid-column: span 12; }
    .bento-col-span-8 { grid-column: span 8; }
    .bento-col-span-6 { grid-column: span 6; }
    .bento-col-span-4 { grid-column: span 4; }
    .bento-col-span-2 { grid-column: span 2; }
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.bento-item p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.bento-item .price-tag {
    margin-top: auto;
    padding-top: var(--space-lg);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.bento-item .badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-accent-soft);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-bottom: var(--space-md);
    padding-bottom: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.catalog-filters::-webkit-scrollbar {
    display: none;
}

.catalog-toolbar {
    display: grid;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

@media (min-width: 900px) {
    .catalog-toolbar {
        grid-template-columns: 1fr auto;
        align-items: end;
    }
}

.catalog-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
}

.catalog-stat {
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    background: var(--color-surface-solid);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.catalog-stat span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.catalog-stat strong {
    font-size: 1.3rem;
    line-height: 1.1;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface-solid);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.catalog-search i {
    color: var(--color-text-muted);
}

.catalog-search input {
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    min-width: 260px;
}

.catalog-search input:focus {
    box-shadow: none;
}

.catalog-search input::placeholder {
    color: var(--color-text-muted);
}

.catalog-results {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.catalog-filter {
    white-space: nowrap;
    flex: 0 0 auto;
}

.catalog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface-solid);
    border: 1px dashed var(--color-border);
    color: var(--color-text-muted);
}

.catalog-filter {
    border: 1px solid var(--color-border);
    background: var(--color-surface-solid);
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
    padding: 0.75rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.catalog-filter:hover,
.catalog-filter.active {
    color: var(--color-accent);
    border-color: rgba(2, 80, 197, 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.catalog-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.visa-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 100%;
    padding: 1.4rem;
    border: 1px solid var(--color-border);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.visa-card--featured {
    border-color: rgba(2, 80, 197, 0.22);
    background: linear-gradient(180deg, rgba(2, 80, 197, 0.03), rgba(255, 255, 255, 0.92));
    box-shadow: 0 18px 40px -30px rgba(2, 80, 197, 0.5);
}

.visa-card.is-hidden {
    display: none;
}

.visa-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
}

.visa-badge,
.visa-pill {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-full);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.visa-badge {
    background: var(--color-accent-soft);
    color: var(--color-accent);
}

.visa-pill {
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-text-muted);
}

.visa-summary {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.visa-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.visa-meta div {
    padding: 0.85rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.03);
}

.visa-meta span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visa-meta strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.98rem;
}

.visa-list {
    display: grid;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.visa-list li {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.visa-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 900;
}

.visa-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 0.5rem;
}

@media (min-width: 720px) {
    .visa-card__footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
}

.visa-fee span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visa-fee strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.visa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary.btn-small {
    padding: 0.85rem 1.2rem;
    font-size: 0.92rem;
}

.visa-faq-link {
    color: var(--color-accent);
    font-weight: 700;
}

/* --- Detail Pages --- */
.detail-page .main-header {
    background: transparent;
}

.detail-hero {
    padding-top: 140px;
    padding-bottom: var(--space-lg);
}

.detail-hero__card {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 960px) {
    .detail-hero__card {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2rem;
        align-items: start;
    }
}

.detail-hero__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-column: 1 / -1;
}

.detail-back-link {
    color: var(--color-text-muted);
    font-weight: 700;
}

.detail-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 0.25rem;
    grid-column: 1 / -1;
}

.detail-hero__summary {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 68ch;
    grid-column: 1 / -1;
}

.detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    grid-column: 1 / -1;
}

.detail-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: var(--color-surface-solid);
    color: var(--color-primary);
    font-weight: 700;
}

.detail-secondary-link--light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: white;
}

.detail-fact-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-column: 1 / -1;
}

.detail-fact {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--color-border);
}

.detail-fact span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-fact strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.05rem;
}

.detail-layout {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 960px) {
    .detail-layout {
        grid-template-columns: 1.3fr 0.7fr;
        align-items: start;
    }
}

.detail-copy {
    gap: 1rem;
}

.detail-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.detail-point-list {
    margin-top: 0.25rem;
}

.detail-sidebar {
    gap: 1rem;
}

.detail-sidebar__eyebrow {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-accent-soft);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.detail-sidebar__box {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: var(--color-accent-soft);
    border: 1px solid rgba(2, 80, 197, 0.14);
}

.detail-sidebar__box span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-sidebar__box strong {
    display: block;
    margin-top: 0.3rem;
}

.detail-muted {
    color: var(--color-text-muted);
}

.detail-doc-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 960px) {
    .detail-doc-grid {
        grid-template-columns: 1fr 0.5fr;
    }
}

.detail-doc-list {
    display: grid;
    gap: 0.8rem;
}

.detail-doc-list li {
    list-style: none;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.03);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.detail-doc-list li::before {
    content: '•';
    color: var(--color-accent);
    font-weight: 900;
}

.related-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.related-card {
    gap: 0.75rem;
}

.related-card .related-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-link {
    color: var(--color-accent);
    font-weight: 700;
}

.detail-cta {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .detail-cta {
        grid-template-columns: 1fr auto;
    }
}

.detail-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.detail-cta p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-top: 0.6rem;
}

.detail-cta .section-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

@media (max-width: 640px) {
    .catalog-search input {
        min-width: 0;
        width: 100%;
    }

    .catalog-search {
        width: 100%;
    }
}

/* --- Process Steps --- */
.process-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-surface-solid);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0 auto var(--space-md);
    font-family: 'Playfair Display', serif;
}

/* --- FAQ --- */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-sm);
}

details {
    background: var(--color-surface-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

details[open] {
    border-color: rgba(2, 80, 197, 0.3);
    box-shadow: var(--shadow-md);
}

summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
}

summary::-webkit-details-marker { display: none; }

.faq-content {
    padding-top: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-sm);
}

/* --- Form --- */
input, textarea, select {
    width: 100%;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface-solid);
    color: var(--color-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.contact-highlights {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
}

.contact-highlight {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0.2rem;
}

.contact-highlight span {
    font-size: 0.74rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-highlight strong {
    font-size: 1rem;
    color: var(--color-primary);
}

.contact-note {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Footer --- */
.site-footer {
    background: var(--color-surface-solid);
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg) 0 var(--space-md);
    color: white;
}

.footer-cta {
    margin-bottom: var(--space-md);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    gap: var(--space-md);
}

.footer-cta::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 100%);
}

.footer-cta h2 {
    color: white;
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
    font-size: 0.98rem;
}

.footer-cta__content {
    display: grid;
    gap: 0.9rem;
}

.site-footer .section-kicker {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta__note,
.footer-trust-note {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 0.55rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.35;
}

.footer-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
}

.footer-cta__actions .btn-primary,
.footer-cta__actions .detail-secondary-link {
    width: 100%;
}

.footer-highlights {
    display: grid;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
    font-weight: 600;
    min-height: 52px;
}

.footer-highlight i {
    color: var(--color-accent);
}

.footer-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-grid > div {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-column {
    display: grid;
    gap: 0.9rem;
}

.footer-column__links {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid ul a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    line-height: 1.6;
}

.footer-grid ul a:hover {
    color: white;
}

.footer-grid h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li + li {
    margin-top: 0;
}

.site-footer .detail-secondary-link--light {
    color: rgba(255, 255, 255, 0.84);
}

.site-footer .detail-secondary-link--light:hover {
    color: white;
}

@media (min-width: 720px) {
    .footer-cta {
        padding: 1.2rem 1.3rem;
    }

    .footer-highlights {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

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

    .footer-grid > div {
        padding: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
        align-items: center;
        padding: 1.5rem;
    }

    .footer-cta__actions {
        align-items: flex-end;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 1rem;
    }

    .footer-grid > div:first-child {
        padding-right: 1.25rem;
    }
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    background: #25D366;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 40px -10px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* --- Support Bot --- */
.support-bot {
    position: fixed;
    left: var(--space-md);
    bottom: var(--space-md);
    z-index: 120;
    display: grid;
    gap: 0.75rem;
    width: min(92vw, 440px);
    filter: none;
}

.support-bot__backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.support-bot__panel[hidden],
.support-bot__backdrop[hidden] {
    display: none !important;
}

.support-bot__toggle {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 0.85rem 1rem 0.85rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.22);
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.support-bot__toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 80, 197, 0.08), transparent 55%);
    pointer-events: none;
}

.support-bot__toggle-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #0250c5, #1d4ed8 55%, #60a5fa);
    color: white;
    box-shadow: 0 10px 20px -12px rgba(2, 80, 197, 0.5);
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.support-bot__toggle-copy {
    display: grid;
    gap: 0;
    position: relative;
    z-index: 1;
}

.support-bot__toggle-copy strong {
    font-size: 0.96rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.support-bot__panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 16px 34px -26px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    transform-origin: bottom left;
    animation: supportBotRise 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.support-bot__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.support-bot__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1rem 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 1;
    padding-right: 0.8rem;
}

.support-bot__header-copy {
    display: grid;
    gap: 0.25rem;
}

.support-bot__header-copy p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.45;
}

.support-bot__header h3 {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.support-bot__header-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(2, 80, 197, 0.05);
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.support-bot__close {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-muted);
    cursor: pointer;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px -10px rgba(15, 23, 42, 0.12);
}

.support-bot__close:hover {
    color: var(--color-primary);
    border-color: rgba(2, 80, 197, 0.18);
}

.support-bot__live-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    animation: livePulse 1.8s infinite;
}

.support-bot__messages {
    max-height: 340px;
    overflow: auto;
    padding: 1rem 1rem 0.9rem;
    display: grid;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.support-bot__message {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
}

.support-bot__message--user {
    justify-content: flex-end;
    margin-left: auto;
}

.support-bot__bubble {
    max-width: 88%;
    padding: 0.95rem 1rem;
    border-radius: 22px;
    display: grid;
    gap: 0.45rem;
    box-shadow: 0 8px 16px -18px rgba(15, 23, 42, 0.12);
}

.support-bot__message--bot .support-bot__bubble {
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-top-left-radius: 8px;
}

.support-bot__message--user .support-bot__bubble {
    background: linear-gradient(145deg, #0250c5, #1d4ed8 70%, #2563eb);
    color: white;
    border-top-right-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-bot__bubble strong {
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.support-bot__bubble p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: inherit;
}

.support-bot__avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(145deg, rgba(2, 80, 197, 0.12), rgba(29, 78, 216, 0.2));
    color: var(--color-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.support-bot__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.1rem;
}

.support-bot__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.support-bot__message--user .support-bot__action {
    color: var(--color-accent);
}

.support-bot__chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    padding: 0 1rem 0.85rem;
    position: relative;
    z-index: 1;
}

.support-bot__chip {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 250, 252, 0.95);
    color: var(--color-primary);
    border-radius: 14px;
    padding: 0.62rem 0.72rem;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
    line-height: 1.2;
}

.support-bot__chip:hover {
    transform: translateY(-1px);
    border-color: rgba(2, 80, 197, 0.18);
    background: rgba(255, 255, 255, 0.98);
}

.support-bot__composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
    position: relative;
    z-index: 1;
}

.support-bot__input {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0 1rem;
    min-height: 48px;
    color: var(--color-primary);
    outline: none;
}

.support-bot__input:focus {
    border-color: rgba(2, 80, 197, 0.35);
    box-shadow: 0 0 0 4px rgba(2, 80, 197, 0.08);
}

.support-bot__send {
    border: none;
    border-radius: 18px;
    background: linear-gradient(145deg, #0250c5, #1d4ed8);
    color: white;
    min-height: 48px;
    padding: 0 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 12px -12px rgba(2, 80, 197, 0.34);
}

.support-bot.is-open .support-bot__toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.support-bot.is-open .support-bot__backdrop {
    opacity: 1;
}

.support-bot-open {
    overflow: hidden;
}

@keyframes supportBotRise {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.support-bot__bubble--typing {
    min-height: 62px;
    align-items: center;
}

.support-bot__typing-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.support-bot__typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.support-bot__typing-dots span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--color-accent);
    animation: typingPulse 1.1s infinite ease-in-out;
}

.support-bot__typing-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.support-bot__typing-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typingPulse {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 719px) {
    body {
        padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
    }

    body.support-bot-open {
        padding-bottom: 0;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 0.85rem;
        bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
        font-size: 1.7rem;
        box-shadow: 0 14px 34px -14px rgba(37, 211, 102, 0.52);
        z-index: 110;
    }

    .support-bot-open .whatsapp-float {
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.96);
    }

    .support-bot {
        left: auto;
        right: 0.85rem;
        bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
        width: auto;
        transform: none;
        padding: 0;
        gap: 0;
        filter: none;
        align-items: flex-end;
    }

    .support-bot__toggle {
        width: 58px;
        height: 58px;
        margin: 0;
        padding: 0;
        border-radius: 18px;
        justify-content: center;
        background: linear-gradient(145deg, #0250c5, #1d4ed8 70%, #2563eb);
        border-color: rgba(29, 78, 216, 0.18);
        box-shadow: 0 16px 34px -18px rgba(2, 80, 197, 0.55);
    }

    .support-bot.is-open .support-bot__toggle {
        display: none;
    }

    .support-bot__toggle::before {
        display: none;
    }

    .support-bot__toggle-icon {
        width: 100%;
        height: 100%;
        border-radius: inherit;
        background: transparent;
        box-shadow: none;
        font-size: 1.18rem;
    }

    .support-bot__toggle-copy {
        display: none;
    }

    .support-bot__panel {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        top: auto;
        width: auto;
        max-height: min(68vh, 40rem);
        border-radius: 24px 24px 18px 18px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        z-index: 121;
        transform: none;
        box-shadow: 0 24px 54px -34px rgba(15, 23, 42, 0.34);
    }

    .support-bot__messages {
        max-height: none;
        flex: 1 1 auto;
        min-height: 0;
        padding-bottom: 0.6rem;
    }

    .support-bot__bubble {
        max-width: min(86vw, 28rem);
    }

    .support-bot__chips {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.4rem;
        padding: 0 0.85rem 0.8rem;
    }

    .support-bot__chips::-webkit-scrollbar {
        display: none;
    }

    .support-bot__chip {
        min-width: max-content;
        border-radius: 999px;
        padding: 0.56rem 0.78rem;
        font-size: 0.72rem;
    }

    .support-bot__header {
        align-items: flex-start;
        gap: 0.75rem;
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.94);
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
    }

    .support-bot__header-meta {
        align-self: flex-start;
        margin-top: 0.1rem;
    }

    .support-bot__close {
        margin-left: auto;
        width: 2.6rem;
        height: 2.6rem;
    }

    .support-bot__composer {
        padding: 0.85rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.94);
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        position: sticky;
        bottom: 0;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .support-bot__backdrop {
        z-index: 120;
    }

    .support-bot__header h3 {
        font-size: 1.05rem;
    }

    .support-bot__header-copy p {
        display: none;
    }

    .support-bot__header-meta {
        padding: 0.45rem 0.65rem;
        font-size: 0.72rem;
    }
}

/* Utility Animations */
.reveal {
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(14px);
}

html.js.reveal-ready .reveal.active,
html.js.reveal-ready .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.preform {
    display: grid;
    gap: 14px;
}

.preform-field {
    display: grid;
    gap: 8px;
}

.preform-field span {
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

.preform-field input,
.preform-field select,
.preform-field textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    font: inherit;
    padding: 0.85rem 1rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.preform-field textarea {
    min-height: 140px;
    resize: vertical;
}

.preform-field input:focus,
.preform-field select:focus,
.preform-field textarea:focus {
    outline: none;
    border-color: rgba(2, 80, 197, 0.42);
    box-shadow: 0 0 0 3px rgba(2, 80, 197, 0.08);
}

.preform-helper {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.preform-status {
    min-height: 1.35rem;
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.preform-status.is-error {
    color: #B91C1C;
}

.preform-status.is-success {
    color: #0F766E;
}

.consent-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1400;
    display: grid;
    gap: 14px;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.consent-banner__copy strong {
    font-size: 1rem;
}

.consent-banner__copy p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-banner__actions {
    display: flex;
    gap: 8px;
}

.consent-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
}

.consent-btn--reject {
    color: white;
    background: transparent;
}

.consent-btn--accept {
    color: white;
    background: var(--color-accent);
    border-color: transparent;
}

body.consent-open .whatsapp-float {
    bottom: 110px;
}

.faq-category {
    margin-bottom: var(--space-md);
}

.faq-category-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.faq-bento-grid {
    display: grid;
    gap: 0.75rem;
}

details {
    padding: var(--space-sm);
}

summary {
    font-size: 1rem;
}

.faq-content {
    font-size: 0.95rem;
    line-height: 1.65;
}

.landing-contact-split {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-md);
}

@media (min-width: 720px) {
    .faq-category {
        margin-bottom: var(--space-lg);
    }

    .faq-category-title {
        font-size: 1.4rem;
        margin-bottom: var(--space-md);
    }

    .faq-bento-grid {
        gap: var(--space-sm);
    }

    details {
        padding: var(--space-md);
    }

    summary {
        font-size: 1.1rem;
    }

    .faq-content {
        font-size: 1rem;
    }

    .contact-highlights {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-highlights {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (min-width: 900px) {
    .landing-contact-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 60px;
        padding: 60px;
        align-items: start;
    }

    .detail-cta__actions {
        align-items: flex-start;
    }

    .consent-banner {
        left: 28px;
        right: 28px;
        display: flex;
        justify-content: space-between;
    }

    .consent-banner__actions {
        flex-shrink: 0;
    }
}

@media (max-width: 719px) {
    .visa-meta {
        grid-template-columns: 1fr;
    }

    .contact-highlights {
        grid-template-columns: 1fr;
    }

    .footer-highlights {
        grid-template-columns: 1fr;
    }

    .detail-cta__actions {
        flex-direction: column;
    }

    .detail-cta__actions .btn-primary,
    .detail-cta__actions .detail-secondary-link {
        width: 100%;
    }

    .footer-cta {
        padding: var(--space-md);
    }

    .footer-grid {
        gap: var(--space-md);
    }

    .consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .consent-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Blog --- */
.blog-hero {
    gap: 1rem;
}

.blog-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.blog-hero p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-toolbar {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

@media (min-width: 900px) {
    .blog-toolbar {
        grid-template-columns: minmax(250px, 340px) 1fr;
        align-items: center;
    }
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.blog-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-card.is-hidden {
    display: none;
}

.blog-card__cover {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

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

.blog-card__body {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.blog-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
}

.blog-card p {
    color: var(--color-text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.blog-card__actions {
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.blog-pagination {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination__link {
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-muted);
    background: white;
}

.blog-pagination__link.active,
.blog-pagination__link:hover {
    color: var(--color-accent);
    border-color: rgba(2, 80, 197, 0.2);
}

.blog-layout {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 980px) {
    .blog-layout {
        grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
        align-items: start;
    }
}

.blog-post-hero {
    display: grid;
    gap: 0.9rem;
}

.blog-post-hero__cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
    aspect-ratio: 16 / 9;
}

.blog-post-hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 980px) {
    .blog-post-hero {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        align-items: center;
    }
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.blog-content {
    gap: 0.95rem;
}

.blog-content > h2:first-child {
    margin-top: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 0.6rem;
}

.blog-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
}

.blog-content p,
.blog-content li {
    line-height: 1.85;
    color: var(--color-primary);
}

.blog-content ul {
    padding-left: 1.2rem;
}

.blog-sidebar {
    gap: 0.8rem;
    position: sticky;
    top: 110px;
}

.blog-related-visas {
    display: grid;
    gap: 0.7rem;
}

.blog-related-visa {
    padding: 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.02);
    display: grid;
    gap: 0.4rem;
}

.blog-related-visa h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

.blog-related-visa p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.blog-related-visa a {
    color: var(--color-accent);
    font-weight: 700;
}

.blog-comments {
    gap: 0.9rem;
}

.blog-comment-auth {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.blog-comment-auth input {
    flex: 1 1 240px;
}

.blog-comment-form {
    display: grid;
    gap: 0.75rem;
}

.blog-comment-form textarea {
    min-height: 130px;
    resize: vertical;
}

.blog-comment-status {
    min-height: 1.3rem;
    color: var(--color-text-muted);
}

.blog-comment-status.is-error {
    color: #b91c1c;
}

.blog-comment-list {
    display: grid;
    gap: 0.75rem;
}

.blog-comment-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    background: rgba(15, 23, 42, 0.02);
}

.blog-comment-item__top {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.blog-shortcode {
    margin: 1rem 0;
}

.visa-shortcode-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
    background: rgba(2, 80, 197, 0.04);
}

.visa-shortcode-card h3 {
    font-size: 1.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-wa-cta {
    display: flex;
}

.blog-faq-item {
    margin: 0.8rem 0;
}

/* --- Blog Admin --- */
.admin-body {
    background: #f1f5f9;
    min-height: 100vh;
}

/* Loader */
.admin-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
}
.admin-loader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: admin-spin 0.7s linear infinite;
}
@keyframes admin-spin { to { transform: rotate(360deg); } }
.admin-loader__text { color: var(--color-text-muted); font-size: 0.9rem; }

/* Login */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-md);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.admin-login__card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
}
.admin-login__brand { margin-bottom: 1.5rem; text-align: center; }
.admin-login__title {
    text-align: center;
    font-size: 1.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.admin-login__subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.admin-login__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Dashboard Layout */
.admin-dashboard {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}
@media (max-width: 900px) {
    .admin-dashboard {
        grid-template-columns: 1fr;
    }
    .admin-sidebar { display: none; }
    .admin-sidebar.is-mobile-open { display: flex; position: fixed; inset: 0; z-index: 9999; width: 260px; }
}

/* Sidebar */
.admin-sidebar {
    background: #0f172a;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.admin-sidebar__brand {
    padding: 0 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0.5rem;
}
.admin-sidebar__brand .logo { color: white !important; }
.admin-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.5rem 0.75rem;
    flex: 1;
}
.admin-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.admin-sidebar__link:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
}
.admin-sidebar__link.active {
    background: var(--color-accent);
    color: white;
}
.admin-sidebar__link i { width: 18px; text-align: center; font-size: 0.85rem; }
.admin-sidebar__footer {
    padding: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}
.admin-sidebar__footer .admin-sidebar__link { color: rgba(255,255,255,0.4); font-size: 0.82rem; padding: 8px 14px; }

/* Main Area */
.admin-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Topbar */
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-topbar__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}
.admin-topbar__right { display: flex; align-items: center; gap: 12px; }
.admin-topbar__user {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 6px 12px;
    background: var(--color-accent-soft);
    border-radius: 20px;
    font-weight: 500;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.admin-stat-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.admin-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.admin-stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.admin-stat-card__icon--total { background: #ede9fe; color: #7c3aed; }
.admin-stat-card__icon--published { background: #d1fae5; color: #059669; }
.admin-stat-card__icon--draft { background: #fef3c7; color: #d97706; }
.admin-stat-card__icon--pending { background: #fee2e2; color: #dc2626; }
.admin-stat-card__content { display: flex; flex-direction: column; gap: 2px; }
.admin-stat-card__value { font-size: 1.5rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.admin-stat-card__label { font-size: 0.8rem; color: var(--color-text-muted); }

/* Search Box */
.admin-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 6px 12px;
    margin-left: auto;
}
.admin-search-box i { color: var(--color-text-muted); font-size: 0.85rem; }
.admin-search-box__input {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    outline: none;
    width: 180px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Session Timeout Warning */
.admin-session-warning {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    animation: slideInUp 0.3s ease;
}
@keyframes slideInUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.admin-session-warning i { color: #d97706; font-size: 1.2rem; }
.admin-session-warning__text { font-size: 0.85rem; color: #92400e; }
.admin-session-warning__actions { display: flex; gap: 8px; margin-left: 8px; }

/* Autosave Indicator */
.admin-autosave {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 20px;
}
.admin-autosave--saving { color: #d97706; }
.admin-autosave--saved { color: #059669; }
.admin-autosave i { font-size: 0.7rem; }

/* Dirty State Indicator */
.admin-form--dirty .admin-form__dirty-badge { display: inline-flex; }
.admin-form__dirty-badge {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #d97706;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Typeahead Dropdown */
.admin-typeahead {
    position: relative;
}
.admin-typeahead__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}
.admin-typeahead__dropdown.is-open { display: block; }
.admin-typeahead__item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.88rem;
    transition: background 0.15s;
}
.admin-typeahead__item:hover { background: #f1f5f9; }
.admin-typeahead__item--active { background: var(--color-accent-soft); }
.admin-typeahead__item code { font-size: 0.78rem; color: var(--color-text-muted); margin-left: 6px; }

/* Last Activity */
.admin-last-activity {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.admin-last-activity i { font-size: 0.7rem; }

/* Content loading skeleton */
.admin-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.admin-skeleton-text { height: 16px; margin: 8px 0; }
.admin-skeleton-text--short { width: 60%; }
.admin-skeleton-text--medium { width: 80%; }

/* Tab Loading */
.admin-panel__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 12px;
    color: var(--color-text-muted);
}
.admin-panel__loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: admin-spin 0.7s linear infinite;
}

/* Card hover effects */
.admin-card { transition: box-shadow 0.2s; }
.admin-card:hover { box-shadow: var(--shadow-md); }

/* Post table row hover */
.admin-table tbody tr { transition: background 0.15s; cursor: pointer; }
.admin-table tbody tr:hover td { background: #f8fafc; }
.admin-table tbody tr.is-editing td { background: var(--color-accent-soft); }
.admin-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Panels */
.admin-panel { display: none; }
.admin-panel.is-active { display: flex; flex-direction: column; gap: 1.25rem; }

/* Cards */
.admin-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.admin-card__header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-card__header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

/* Bulk Actions */
.admin-bulk-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 16px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

/* Buttons */
.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.admin-btn--primary { background: var(--color-accent); color: white; }
.admin-btn--primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(2,80,197,0.25); }
.admin-btn--success { background: #10b981; color: white; border-color: #10b981; }
.admin-btn--success:hover { background: #059669; }
.admin-btn--danger { background: #ef4444; color: white; border-color: #ef4444; }
.admin-btn--danger:hover { background: #dc2626; }
.admin-btn--warning { background: #f59e0b; color: white; border-color: #f59e0b; }
.admin-btn--warning:hover { background: #d97706; }
.admin-btn--ghost { background: transparent; color: var(--color-text-muted); border-color: var(--color-border); }
.admin-btn--ghost:hover { background: var(--color-accent-soft); color: var(--color-accent); border-color: var(--color-accent); }
.admin-btn--sm { padding: 6px 14px; font-size: 0.8rem; }
.admin-btn--block { width: 100%; }

/* Fields */
.admin-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.admin-field__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}
.admin-field__input-wrap {
    position: relative;
}
.admin-field__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}
.admin-field__input-wrap .admin-field__input {
    padding-left: 36px;
}
.admin-field__input,
.admin-field__select,
.admin-field__textarea {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s;
    background: white;
    width: 100%;
}
.admin-field__input:focus,
.admin-field__select:focus,
.admin-field__textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(2,80,197,0.08);
}
.admin-field__textarea { resize: vertical; min-height: auto; }
.admin-field__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23475569'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.admin-field__details {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.admin-field__details-summary {
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.2s;
}
.admin-field__details-summary:hover { background: #f1f5f9; }
.admin-field__details[open] .admin-field__details-summary { border-bottom: 1px solid #e2e8f0; }
.admin-field__details .admin-field { padding: 8px 14px 14px; }

.admin-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    cursor: pointer;
    user-select: none;
}

/* Form Grid */
.admin-form__grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 1080px) {
    .admin-form__grid {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}
.admin-form__col-main { display: flex; flex-direction: column; gap: 14px; }
.admin-form__col-side { display: flex; flex-direction: column; gap: 14px; }
.admin-form__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th,
.admin-table td {
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 14px;
    text-align: left;
    vertical-align: middle;
    font-size: 0.88rem;
}
.admin-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    font-weight: 600;
    background: #fafbfc;
}
.admin-table tr:hover td { background: #f8fafc; }

/* Inline Form */
.admin-inline-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 1.25rem;
}

/* List Items */
.admin-list { display: flex; flex-direction: column; gap: 0; }
.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.admin-list-item:hover { background: #f8fafc; }
.admin-list-item:last-child { border-bottom: none; }
.admin-list-item code {
    background: var(--color-accent-soft);
    color: var(--color-accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 8px;
}

/* Preview */
.admin-markdown-preview {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--color-primary);
    font-size: 0.92rem;
    line-height: 1.7;
}
.admin-markdown-preview h1, .admin-markdown-preview h2, .admin-markdown-preview h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Status Badges */
.comment-status-pending { background: #fef3c7; color: #92400e; padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; display: inline-block; }
.comment-status-approved { background: #d1fae5; color: #065f46; padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; display: inline-block; }
.comment-status-rejected { background: #fee2e2; color: #991b1b; padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; display: inline-block; }

/* Shortcode Preview */
.blog-faq-item { background: var(--color-accent-soft); border-radius: 8px; padding: 12px 16px; margin: 8px 0; }
.blog-faq-item summary { cursor: pointer; font-weight: 600; color: var(--color-primary); }
.blog-faq-item .faq-content { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--color-border); color: var(--color-text-muted); }
.visa-shortcode-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; padding: 16px; margin: 8px 0; }
.visa-shortcode-card .visa-pill { background: var(--color-accent-soft); color: var(--color-accent); }
.visa-shortcode-card h3 { margin: 8px 0; font-size: 1rem; }
.visa-shortcode-card p { color: var(--color-text-muted); font-size: 0.9rem; }
.blog-wa-cta { margin: 12px 0; padding: 12px; background: var(--color-accent-soft); border-radius: 8px; text-align: center; }

/* EasyMDE */
.editor-toolbar { border-top-left-radius: 10px !important; border-top-right-radius: 10px !important; border-color: #e2e8f0 !important; background: #fafbfc !important; }
.CodeMirror { border-bottom-left-radius: 10px !important; border-bottom-right-radius: 10px !important; border-color: #e2e8f0 !important; font-family: 'Fira Code', 'Courier New', monospace; font-size: 14px; }
.editor-statusbar { color: var(--color-text-muted) !important; background: #fafbfc !important; border-top: 1px solid #e2e8f0 !important; border-radius: 0 0 10px 10px !important; }

