/* Custom Styles */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-600: #2563eb;
    --tourism-600: #0ea5e9;
    --tourism-50: #f0f9ff;
    --heading: #0f172a;
}

body { 
    font-family: 'Inter', sans-serif; 
    color: #475569;
}

.glass-effect { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
}

.text-gradient { 
    background: linear-gradient(135deg, var(--heading) 0%, var(--primary-600) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero-shadow { 
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1), 0 0 1px 1px rgba(0,0,0,0.01); 
}

.hero-mockup-perspective { 
    perspective: 2000px; 
}

.hero-mockup-container { 
    transform: rotateX(2deg) rotateY(-4deg) rotateZ(1deg); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup-container:hover { 
    transform: rotateX(0) rotateY(0) rotateZ(0) scale(1.01); 
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }

/* Pricing Comparison Table Modern Styles */
.pricing-table-wrapper { 
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.pricing-table-wrapper::-webkit-scrollbar { 
    height: 4px;
}

.pricing-table-wrapper::-webkit-scrollbar-track { 
    background: #f8fafc;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb { 
    background-color: #e2e8f0; 
    border-radius: 10px;
}

.sticky-col { 
    position: sticky; 
    left: 0; 
    z-index: 30; 
    background-color: white !important;
}

/* Shadow indicator for sticky column on scroll */
.pricing-table-wrapper.scrolled .sticky-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    width: 15px;
    background: linear-gradient(to right, rgba(0,0,0,0.05), transparent);
    pointer-events: none;
}

/* Professional SaaS Mockup Elements */
.browser-mockup {
    background: white;
    border-radius: 1rem 1rem 0.5rem 0.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-header {
    height: 40px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-address {
    flex-grow: 1;
    height: 24px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    margin: 0 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 10px;
    color: #94a3b8;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glow-shadow-indigo { box-shadow: 0 0 20px -5px rgba(79, 70, 229, 0.3); }
.glow-shadow-tourism { box-shadow: 0 0 20px -5px rgba(14, 165, 233, 0.3); }
.glow-shadow-green { box-shadow: 0 0 20px -5px rgba(34, 197, 94, 0.3); }

.pulse-dot {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.4;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.metric-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.metric-card:hover {
    transform: translateY(-4px);
    background-color: white;
}

.pricing-row td {
    white-space: nowrap;
}

.pricing-row td:first-child {
    white-space: normal;
    min-width: 200px;
}

.reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

[data-billing="yearly"] .yearly-price { display: inline-block !important; }
[data-billing="yearly"] .monthly-price { display: none !important; }
[data-billing="monthly"] .yearly-price { display: none !important; }
[data-billing="monthly"] .monthly-price { display: inline-block !important; }

.price-display {
    min-height: 3.5rem;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
}

.pricing-dot { 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Custom Scrollbar for the whole page */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* tourismOS Product Page */
.product-subnav {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-subnav.is-stuck {
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
}

.module-tab {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.module-tab:not(.active) {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.module-tab:not(.active):hover {
    background: #f1f5f9;
    color: #0ea5e9;
}

.module-tab.active {
    background: white;
    color: #0ea5e9;
    box-shadow: 0 4px 20px -4px rgba(14, 165, 233, 0.25);
    border-color: #bae6fd;
}

.module-panel {
    display: none;
    animation: module-fade 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-panel.active {
    display: block;
}

@keyframes module-fade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: calc(100% + 0.5rem);
    width: calc(100% - 3.5rem);
    height: 2px;
    background: linear-gradient(90deg, #bae6fd, transparent);
}

@media (max-width: 1023px) {
    .workflow-step::after { display: none; }
}

.tourism-pricing-v2__card--featured {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 24px 48px -16px rgba(14, 165, 233, 0.18);
    transform: translateY(-4px);
    overflow: visible;
}

.tourism-pricing-v2__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.tourism-pricing-v2__card-body--featured {
    padding-top: 2.75rem;
}

.tourism-pricing-v2__capacity {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #f1f5f9;
}

@media (min-width: 1024px) {
    .tourism-pricing-v2__card-body--featured {
        padding-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .tourism-pricing-v2__card--featured {
        transform: translateY(-8px) scale(1.02);
    }
}

.tourism-pricing-v2__card--first_class {
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.tourism-pricing-v2__list-price {
    text-decoration-line: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.9);
    text-decoration-thickness: 2px;
}

.tourism-pricing-v2__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.tourism-pricing-v2__price-amount {
    line-height: 1;
}

.tourism-pricing-v2__price-suffix {
    line-height: 1;
}

.tourism-pricing-v2__card--featured .tourism-pricing-v2__promo {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tourism-pricing-v2__card:hover .tourism-pricing-v2__promo {
    border-color: rgba(16, 185, 129, 0.28);
    box-shadow: 0 10px 24px -16px rgba(16, 185, 129, 0.35);
}

.tourism-pricing-v2__promo-glow {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(14, 165, 233, 0.08) 55%, transparent 72%);
    filter: blur(8px);
}

.tourism-pricing-v2__card--featured .tourism-pricing-v2__promo {
    border-color: rgba(14, 165, 233, 0.22);
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(236, 253, 245, 0.9) 100%);
}

.tourism-pricing-v2__card--first_class .tourism-pricing-v2__promo {
    border-color: rgba(245, 158, 11, 0.22);
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.95) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(254, 243, 199, 0.55) 100%);
}

.tourism-pricing-v2__card--economy .tourism-pricing-v2__promo {
    border-color: rgba(16, 185, 129, 0.16);
}

.tourism-pricing-v2__cta--economy {
    background: #0f172a;
    color: #ffffff;
}

.tourism-pricing-v2__cta--economy:hover {
    background: #1e293b;
}

.tourism-pricing-v2__cta--business {
    background: #0284c7;
    color: #ffffff;
    box-shadow: 0 12px 24px -8px rgba(14, 165, 233, 0.45);
}

.tourism-pricing-v2__cta--business:hover {
    background: #0369a1;
}

.tourism-pricing-v2__cta--first_class {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px -8px rgba(217, 119, 6, 0.35);
}

.tourism-pricing-v2__cta--first_class:hover {
    filter: brightness(1.05);
}

.tourism-pricing-v2__matrix .sticky-col {
    background: inherit;
}

@media (min-width: 1024px) {
    .tourism-pricing-v2__matrix .sticky-col {
        position: sticky;
        left: 0;
        z-index: 2;
        background: #ffffff;
    }
}

.tourism-modules-v2__nav {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    height: 100%;
}

.tourism-modules-v2__panels {
    min-height: 100%;
}

.tourism-modules-v2__tab {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    text-align: left;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tourism-modules-v2__tab:not(.active) {
    background: transparent;
    border-color: transparent;
}

.tourism-modules-v2__tab:not(.active):hover {
    background: #f8fafc;
    border-color: #f1f5f9;
}

.tourism-modules-v2__tab.active {
    background: #f8fafc;
    border-color: #e2e8f0;
    box-shadow: inset 3px 0 0 #0ea5e9;
}

.tourism-modules-v2__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.tourism-modules-v2__tab-icon--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-modules-v2__tab-icon--orange { background: #fff7ed; color: #ea580c; }
.tourism-modules-v2__tab-icon--indigo { background: #eef2ff; color: #4f46e5; }
.tourism-modules-v2__tab-icon--emerald { background: #ecfdf5; color: #059669; }
.tourism-modules-v2__tab-icon--rose { background: #fff1f2; color: #e11d48; }
.tourism-modules-v2__tab-icon--violet { background: #f5f3ff; color: #7c3aed; }

.tourism-modules-v2__tab-copy {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.tourism-modules-v2__tab-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

.tourism-modules-v2__tab-desc {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.3;
}

.tourism-modules-v2__tab.active .tourism-modules-v2__tab-title {
    color: #0f172a;
}

.tourism-modules-v2__tab.active .tourism-modules-v2__tab-desc {
    color: #64748b;
}

.tourism-modules-v2__card {
    background: #ffffff;
    border: 1px solid rgba(241, 245, 249, 0.95);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 768px) {
    .tourism-modules-v2__card {
        padding: 2.5rem 2.75rem;
    }
}

.tourism-modules-v2__card:hover {
    box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.08);
}

.tourism-modules-v2__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.tourism-modules-v2__eyebrow {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.625rem;
}

.tourism-modules-v2__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .tourism-modules-v2__title {
        font-size: 1.875rem;
    }
}

.tourism-modules-v2__lead {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
    max-width: 36rem;
}

.tourism-modules-v2__hero-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    flex-shrink: 0;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .tourism-modules-v2__hero-icon {
        display: flex;
    }
}

.tourism-modules-v2__hero-icon--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-modules-v2__hero-icon--orange { background: #fff7ed; color: #ea580c; }
.tourism-modules-v2__hero-icon--indigo { background: #eef2ff; color: #4f46e5; }
.tourism-modules-v2__hero-icon--emerald { background: #ecfdf5; color: #059669; }
.tourism-modules-v2__hero-icon--rose { background: #fff1f2; color: #e11d48; }
.tourism-modules-v2__hero-icon--violet { background: #f5f3ff; color: #7c3aed; }

.tourism-modules-v2__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
    list-style: none;
    padding: 0;
}

@media (min-width: 640px) {
    .tourism-modules-v2__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
    }
}

.tourism-modules-v2__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.tourism-modules-v2__feature-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.tourism-modules-v2__feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.tourism-modules-v2__feature-desc {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
}

.tourism-modules-v2__footer {
    padding-top: 0.25rem;
}

.tourism-modules-v2__footer-label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.tourism-modules-v2__metric-note {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.4;
}

.tourism-modules-v2__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 0.55rem;
}

.tourism-modules-v2__check--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-modules-v2__check--orange { background: #fff7ed; color: #ea580c; }
.tourism-modules-v2__check--indigo { background: #eef2ff; color: #4f46e5; }
.tourism-modules-v2__check--emerald { background: #ecfdf5; color: #059669; }
.tourism-modules-v2__check--rose { background: #fff1f2; color: #e11d48; }
.tourism-modules-v2__check--violet { background: #f5f3ff; color: #7c3aed; }

.tourism-modules-v2__metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
}

.tourism-modules-v2__metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    flex-shrink: 0;
}

.tourism-modules-v2__metric--tourism .tourism-modules-v2__metric-value { color: #0284c7; }
.tourism-modules-v2__metric--orange .tourism-modules-v2__metric-value { color: #ea580c; }
.tourism-modules-v2__metric--indigo .tourism-modules-v2__metric-value { color: #4f46e5; }
.tourism-modules-v2__metric--rose .tourism-modules-v2__metric-value { color: #e11d48; }

.tourism-modules-v2__metric-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
}

.tourism-modules-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tourism-modules-v2__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #475569;
}

.tourism-modules-v2__card--tourism { border-top: 3px solid rgba(14, 165, 233, 0.35); }
.tourism-modules-v2__card--orange { border-top: 3px solid rgba(249, 115, 22, 0.35); }
.tourism-modules-v2__card--indigo { border-top: 3px solid rgba(99, 102, 241, 0.35); }
.tourism-modules-v2__card--emerald { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.tourism-modules-v2__card--rose { border-top: 3px solid rgba(244, 63, 94, 0.35); }
.tourism-modules-v2__card--violet { border-top: 3px solid rgba(139, 92, 246, 0.35); }

.tourism-workflow-v2__header {
    margin-left: auto;
    margin-right: auto;
}

.tourism-workflow-v2__grid {
    position: relative;
}

.tourism-workflow-v2__step {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tourism-workflow-v2__step:hover {
    border-color: rgba(186, 230, 253, 0.9);
    box-shadow: 0 20px 40px -18px rgba(14, 165, 233, 0.18);
    transform: translateY(-2px);
}

.tourism-workflow-v2__step--active {
    border-color: rgba(14, 165, 233, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 16px 32px -18px rgba(14, 165, 233, 0.2);
}

.tourism-workflow-v2__step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tourism-workflow-v2__step-no {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #94a3b8;
}

.tourism-workflow-v2__step--active .tourism-workflow-v2__step-no {
    color: #0284c7;
}

.tourism-workflow-v2__step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    font-size: 1rem;
}

.tourism-workflow-v2__step-icon--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-workflow-v2__step-icon--violet { background: #f5f3ff; color: #7c3aed; }
.tourism-workflow-v2__step-icon--emerald { background: #ecfdf5; color: #059669; }
.tourism-workflow-v2__step-icon--amber { background: #fffbeb; color: #d97706; }

.tourism-workflow-v2__step-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
}

.tourism-workflow-v2__step-desc {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.tourism-workflow-v2__step-chip {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #f8fafc;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #475569;
}

.tourism-workflow-v2__step--active .tourism-workflow-v2__step-chip {
    border-color: rgba(186, 230, 253, 0.9);
    background: #f0f9ff;
    color: #0369a1;
}

@media (min-width: 1280px) {
    .tourism-workflow-v2__step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 2.35rem;
        left: calc(100% + 0.35rem);
        width: calc(100% - 2.7rem);
        height: 2px;
        background: linear-gradient(90deg, rgba(186, 230, 253, 0.95), rgba(186, 230, 253, 0.15));
        pointer-events: none;
    }
}

.tourism-integrations-v2__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tourism-integrations-v2__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.1);
}

.tourism-integrations-v2__card--emerald:hover { border-color: rgba(16, 185, 129, 0.28); }
.tourism-integrations-v2__card--rose:hover { border-color: rgba(244, 63, 94, 0.24); }
.tourism-integrations-v2__card--violet:hover { border-color: rgba(139, 92, 246, 0.24); }
.tourism-integrations-v2__card--tourism:hover { border-color: rgba(14, 165, 233, 0.28); }
.tourism-integrations-v2__card--amber:hover { border-color: rgba(245, 158, 11, 0.28); }
.tourism-integrations-v2__card--cyan:hover { border-color: rgba(6, 182, 212, 0.28); }
.tourism-integrations-v2__card--fuchsia:hover { border-color: rgba(217, 70, 239, 0.24); }
.tourism-integrations-v2__card--slate:hover { border-color: rgba(100, 116, 139, 0.28); }

.tourism-integrations-v2__card--roadmap {
    border-style: dashed;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.tourism-integrations-v2__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.tourism-integrations-v2__icon--emerald { background: #ecfdf5; color: #059669; }
.tourism-integrations-v2__icon--rose { background: #fff1f2; color: #e11d48; }
.tourism-integrations-v2__icon--violet { background: #f5f3ff; color: #7c3aed; }
.tourism-integrations-v2__icon--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-integrations-v2__icon--amber { background: #fffbeb; color: #d97706; }
.tourism-integrations-v2__icon--cyan { background: #ecfeff; color: #0891b2; }
.tourism-integrations-v2__icon--fuchsia { background: #fdf4ff; color: #c026d3; }
.tourism-integrations-v2__icon--slate { background: #f8fafc; color: #475569; }

.tourism-integrations-v2__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.tourism-integrations-v2__desc {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.tourism-integrations-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tourism-integrations-v2__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #f8fafc;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #475569;
}

.tourism-integrations-v2__tag--soon {
    background: #ffffff;
    border-color: #e2e8f0;
}

.tourism-integrations-v2__soon {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.4rem;
    border-radius: 9999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.tourism-integrations-v2__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tourism-integrations-v2__strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .tourism-integrations-v2__strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
        align-items: start;
    }
}

.tourism-integrations-v2__strip-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.tourism-integrations-v2__strip-label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.tourism-integrations-v2__logo {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #475569;
}

.tourism-integrations-v2__logo--emerald { color: #047857; background: #ecfdf5; border-color: #d1fae5; }
.tourism-integrations-v2__logo--indigo { color: #4338ca; background: #eef2ff; border-color: #e0e7ff; }
.tourism-integrations-v2__logo--blue { color: #1d4ed8; background: #eff6ff; border-color: #dbeafe; }
.tourism-integrations-v2__logo--amber { color: #b45309; background: #fffbeb; border-color: #fde68a; }
.tourism-integrations-v2__logo--violet { color: #6d28d9; background: #f5f3ff; border-color: #ede9fe; }
.tourism-integrations-v2__logo--rose { color: #be123c; background: #fff1f2; border-color: #fecdd3; }
.tourism-integrations-v2__logo--tourism { color: #0369a1; background: #f0f9ff; border-color: #bae6fd; }
.tourism-integrations-v2__logo--cyan { color: #0e7490; background: #ecfeff; border-color: #cffafe; }
.tourism-integrations-v2__logo--soon {
    color: #64748b;
    background: #f8fafc;
    border-color: #e2e8f0;
    border-style: dashed;
}

.tourism-integrations-v2__logo--soon::after {
    content: ' · Yakında';
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.tourism-contact-v2__benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.tourism-contact-v2__benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.875rem;
}

.tourism-contact-v2__benefit-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.tourism-contact-v2__benefit-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.tourism-contact-v2__benefit-desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.45;
}

.tourism-contact-v2__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tourism-contact-v2__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.tourism-contact-v2__input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tourism-contact-v2__input::placeholder {
    color: #94a3b8;
}

.tourism-contact-v2__input:focus {
    outline: none;
    border-color: rgba(14, 165, 233, 0.45);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.tourism-contact-v2__textarea {
    min-height: 5.5rem;
}

.tourism-contact-v2__select-wrap {
    position: relative;
}

.tourism-contact-v2__select {
    appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.tourism-contact-v2__select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #94a3b8;
    pointer-events: none;
}

.tourism-contact-v2__kvkk {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
}

.tourism-contact-v2__checkbox {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.tourism-contact-v2__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 0.875rem;
    background: #0284c7;
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px -12px rgba(2, 132, 199, 0.55);
}

.tourism-contact-v2__submit:hover {
    background: #0369a1;
    transform: translateY(-1px);
}

.tourism-contact-v2__form .platform-callback-form-message {
    color: #475569;
}

.tourism-contact-v2__form .platform-callback-form-message.is-success {
    color: #047857;
}

.tourism-contact-v2__form .platform-callback-form-message.is-error {
    color: #be123c;
}

.tourism-faq-v2__item {
    border-radius: 1rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tourism-faq-v2__item:hover {
    border-color: rgba(186, 230, 253, 0.7);
}

.tourism-faq-v2__item.is-open {
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 16px 32px -18px rgba(14, 165, 233, 0.16);
}

.tourism-faq-v2__trigger {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tourism-faq-v2__trigger:hover {
    background: rgba(248, 250, 252, 0.85);
}

.tourism-faq-v2__question {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

.tourism-faq-v2__item.is-open .tourism-faq-v2__question {
    color: #0f172a;
}

.tourism-faq-v2__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tourism-faq-v2__item.is-open .tourism-faq-v2__toggle {
    background: #f0f9ff;
    border-color: rgba(186, 230, 253, 0.9);
    color: #0284c7;
    transform: rotate(180deg);
}

.tourism-faq-v2__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.tourism-faq-v2__answer {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.65;
}

.tourism-faq-v2__footer a {
    text-decoration: none;
}

.tourism-audience-v2__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tourism-audience-v2__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.1);
}

.tourism-audience-v2__card--tourism:hover { border-color: rgba(14, 165, 233, 0.28); }
.tourism-audience-v2__card--violet:hover { border-color: rgba(139, 92, 246, 0.24); }
.tourism-audience-v2__card--emerald:hover { border-color: rgba(16, 185, 129, 0.28); }
.tourism-audience-v2__card--amber:hover { border-color: rgba(245, 158, 11, 0.28); }
.tourism-audience-v2__card--cyan:hover { border-color: rgba(6, 182, 212, 0.28); }
.tourism-audience-v2__card--rose:hover { border-color: rgba(244, 63, 94, 0.24); }
.tourism-audience-v2__card--indigo:hover { border-color: rgba(99, 102, 241, 0.28); }

.tourism-audience-v2__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.tourism-audience-v2__card--tourism .tourism-audience-v2__icon { background: #f0f9ff; color: #0284c7; }
.tourism-audience-v2__card--violet .tourism-audience-v2__icon { background: #f5f3ff; color: #7c3aed; }
.tourism-audience-v2__card--emerald .tourism-audience-v2__icon { background: #ecfdf5; color: #059669; }
.tourism-audience-v2__card--amber .tourism-audience-v2__icon { background: #fffbeb; color: #d97706; }
.tourism-audience-v2__card--cyan .tourism-audience-v2__icon { background: #ecfeff; color: #0891b2; }
.tourism-audience-v2__card--rose .tourism-audience-v2__icon { background: #fff1f2; color: #e11d48; }
.tourism-audience-v2__card--indigo .tourism-audience-v2__icon { background: #eef2ff; color: #4f46e5; }

.tourism-audience-v2__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tourism-audience-v2__title {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.tourism-audience-v2__title-row .tourism-audience-v2__title {
    margin-bottom: 0;
}

.tourism-audience-v2__card--soon {
    opacity: 0.92;
}

.tourism-audience-v2__card--soon .tourism-audience-v2__icon {
    opacity: 0.85;
}

.tourism-audience-v2__desc {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
}

.tourism-vertical-soon {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #f8fafc;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #64748b;
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .tourism-audience-v2__card:nth-child(5) {
        grid-column-start: 2;
    }
}

.tourism-payment-flex__shell {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 45%, #f0f9ff 100%);
}

.tourism-payment-flex__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.tourism-payment-flex__glow--left {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -60px;
    background: rgba(16, 185, 129, 0.12);
}

.tourism-payment-flex__glow--right {
    width: 320px;
    height: 320px;
    bottom: -100px;
    right: -40px;
    background: rgba(14, 165, 233, 0.14);
}

.tourism-payment-flex__chip {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    background: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease;
}

.tourism-payment-flex__chip:hover {
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.12);
}

.tourism-payment-flex__chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
}

.tourism-payment-flex__channel {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.tourism-payment-flex__stat {
    padding: 1.25rem 1.35rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.tourism-payment-flex__stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.14);
}

.tourism-payment-flex__stat--highlight {
    border-color: rgba(16, 185, 129, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}

.tourism-payment-flex__stat-value {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-top: 0.35rem;
}

.tourism-payment-flex__step {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.tourism-payment-flex__step--active {
    color: #0284c7;
    border-color: #bae6fd;
    background: #f0f9ff;
}

.tourism-hero-mesh {
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
}

.tourism-hero-premium {
    background-color: #fafbfc;
    background-image:
        radial-gradient(ellipse 90% 70% at 85% 0%, rgba(14, 165, 233, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
}

.hero-bg-grid {
    background-image:
        linear-gradient(to right, rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: hero-orb-drift 12s ease-in-out infinite;
}

.hero-glow-orb-1 {
    width: 420px;
    height: 420px;
    top: -8%;
    right: 10%;
    background: rgba(14, 165, 233, 0.18);
}

.hero-glow-orb-2 {
    width: 320px;
    height: 320px;
    bottom: 5%;
    left: -5%;
    background: rgba(16, 185, 129, 0.12);
    animation-delay: -4s;
}

@keyframes hero-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-headline-accent {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 45%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem 0.4rem 0.5rem;
    border-radius: 9999px;
    min-height: 2.125rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 1px 2px rgba(16, 185, 129, 0.08);
}

.hero-badge-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    background: #059669;
    color: white;
    font-size: 0.625rem;
}

.hero-badge-label {
    display: inline-flex;
    align-items: center;
    min-height: 1.5rem;
    line-height: 1;
    padding-top: 0.0625rem;
}

.hero-service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 0.6875rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.hero-service-pill:hover {
    border-color: rgba(14, 165, 233, 0.3);
    color: #0284c7;
    transform: translateY(-1px);
}

.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 0.875rem;
    color: white;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 12px 32px -8px rgba(2, 132, 199, 0.45),
        0 0 0 1px rgba(2, 132, 199, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 20px 40px -10px rgba(2, 132, 199, 0.5),
        0 0 0 1px rgba(2, 132, 199, 0.25);
}

.hero-cta-primary:hover::before {
    transform: translateX(120%);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: white;
    border-color: rgba(14, 165, 233, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
}

.hero-stat-card {
    padding: 1rem 1.125rem;
    border-radius: 1.125rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stat-card:hover {
    background: white;
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.1);
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-trust-label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hero-trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-mockup-glow {
    position: absolute;
    inset: 10% 5% 5% 10%;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero-mockup-ring {
    position: absolute;
    inset: -12px;
    border-radius: 2rem;
    border: 1px solid rgba(14, 165, 233, 0.12);
    pointer-events: none;
    z-index: 0;
}

.hero-browser-premium {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 40px 80px -20px rgba(15, 23, 42, 0.18),
        0 0 120px -30px rgba(14, 165, 233, 0.25);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.hero-float-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px -8px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(226, 232, 240, 0.5);
}

.hero-sparkline {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}

.hero-sparkline span {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, #0ea5e9, #7dd3fc);
    opacity: 0.85;
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
    animation-delay: -2s;
}

.tourism-hero-v2 {
    background-color: #f8f9fa;
    background-image:
        radial-gradient(ellipse 80% 60% at 88% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 52%);
}

.tourism-hero-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}

.tourism-hero-v2__orb--primary {
    width: 24rem;
    height: 24rem;
    top: -6%;
    right: 8%;
    background: rgba(14, 165, 233, 0.16);
}

.tourism-hero-v2__orb--secondary {
    width: 18rem;
    height: 18rem;
    bottom: 4%;
    left: -4%;
    background: rgba(16, 185, 129, 0.1);
}

.tourism-hero-v2__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.tourism-hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem 0.45rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.tourism-hero-v2__badge--primary {
    background: #ffffff;
    border: 1px solid rgba(186, 230, 253, 0.9);
    color: #0369a1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.tourism-hero-v2__badge--muted {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: #64748b;
}

.tourism-hero-v2__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.75rem;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.7rem;
}

.tourism-hero-v2__pulse {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.tourism-hero-v2__title {
    margin-bottom: 1.25rem;
    font-size: clamp(2.125rem, 4.8vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tourism-hero-v2__title-line {
    display: block;
    background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 52%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tourism-hero-v2__title-accent {
    display: block;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 55%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tourism-hero-v2__lead {
    max-width: 34rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.tourism-hero-v2__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.tourism-hero-v2__category {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-hero-v2__category i {
    color: #0284c7;
    font-size: 0.625rem;
}

.tourism-hero-v2__category--soon {
    color: #94a3b8;
    background: rgba(248, 250, 252, 0.9);
}

.tourism-hero-v2__category--soon i {
    color: #94a3b8;
}

.tourism-hero-v2__category--soon .tourism-vertical-soon {
    margin-left: 0.1rem;
}

.tourism-hero-v2__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tourism-hero-v2__actions {
        flex-direction: row;
        align-items: center;
    }
}

.tourism-hero-v2__cta-primary,
.tourism-hero-v2__cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tourism-hero-v2__cta-primary {
    color: #ffffff;
    background: #0284c7;
    box-shadow: 0 12px 28px -12px rgba(2, 132, 199, 0.55);
}

.tourism-hero-v2__cta-primary:hover {
    background: #0369a1;
    transform: translateY(-1px);
}

.tourism-hero-v2__cta-secondary {
    color: #334155;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.tourism-hero-v2__cta-secondary:hover {
    border-color: rgba(14, 165, 233, 0.28);
    transform: translateY(-1px);
}

.tourism-hero-v2__payment-banner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.22);
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(240, 249, 255, 0.92) 100%);
    box-shadow: 0 12px 28px -16px rgba(16, 185, 129, 0.35), 0 4px 12px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tourism-hero-v2__payment-banner:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -14px rgba(16, 185, 129, 0.4), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tourism-hero-v2__payment-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    background: #ecfdf5;
    color: #059669;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.tourism-hero-v2__payment-banner-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.tourism-hero-v2__payment-banner-eyebrow {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #059669;
}

.tourism-hero-v2__payment-banner-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
}

.tourism-hero-v2__payment-banner-desc {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
}

.tourism-hero-v2__payment-banner-stats {
    display: none;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .tourism-hero-v2__payment-banner-stats {
        display: flex;
    }
}

.tourism-hero-v2__payment-banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.25rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.85);
}

.tourism-hero-v2__payment-banner-stat strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #334155;
    line-height: 1;
    letter-spacing: -0.02em;
}

.tourism-hero-v2__payment-banner-stat small {
    margin-top: 0.15rem;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    text-align: center;
    line-height: 1.2;
}

.tourism-hero-v2__payment-banner-stat--emerald {
    border-color: #bbf7d0;
    background: #ecfdf5;
}

.tourism-hero-v2__payment-banner-stat--emerald strong {
    color: #059669;
}

.tourism-hero-v2__payment-banner-arrow {
    display: none;
    font-size: 0.6875rem;
    color: #059669;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .tourism-hero-v2__payment-banner-arrow {
        display: inline-flex;
    }
}

.tourism-hero-v2__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.tourism-hero-v2__metrics--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .tourism-hero-v2__metrics--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tourism-hero-v2__metrics--four .tourism-hero-v2__metric:nth-child(4) .tourism-hero-v2__metric-value {
    color: #059669;
}

.tourism-hero-v2__metric {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.tourism-hero-v2__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #0284c7;
    letter-spacing: -0.02em;
}

.tourism-hero-v2__metric:nth-child(2) .tourism-hero-v2__metric-value,
.tourism-hero-v2__metric:nth-child(3) .tourism-hero-v2__metric-value {
    color: #334155;
}

.tourism-hero-v2__metric-label {
    margin-top: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.tourism-hero-v2__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.tourism-hero-v2__trust-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.tourism-hero-v2__trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #cbd5e1;
}

.tourism-hero-v2__mockup-wrap {
    position: relative;
}

.tourism-hero-v2__mockup-glow {
    position: absolute;
    inset: 6% 2% 2% 6%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(16, 185, 129, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(14, 165, 233, 0.22) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.tourism-hero-v2__mockup-stack {
    position: relative;
    z-index: 1;
}

.tourism-hero-v2__browser {
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    box-shadow: 0 28px 60px -24px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.tourism-hero-v2__browser--premium {
    box-shadow:
        0 32px 64px -20px rgba(15, 23, 42, 0.28),
        0 0 72px -24px rgba(14, 165, 233, 0.28);
}

.tourism-hero-v2__browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.tourism-hero-v2__browser-dots {
    display: flex;
    gap: 0.35rem;
}

.tourism-hero-v2__browser-dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background: #e2e8f0;
}

.tourism-hero-v2__browser-dots span:nth-child(1) { background: #fda4af; }
.tourism-hero-v2__browser-dots span:nth-child(2) { background: #fde68a; }
.tourism-hero-v2__browser-dots span:nth-child(3) { background: #86efac; }

.tourism-hero-v2__browser-url {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 0.625rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tourism-hero-v2__browser-url i {
    color: #10b981;
    font-size: 0.55rem;
}

.tourism-hero-v2__browser-live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border-radius: 9999px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tourism-hero-v2__browser-live-dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 9999px;
    background: #10b981;
}

.tourism-hero-v2__browser-body {
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tourism-hero-v2__site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.tourism-hero-v2__site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #334155;
}

.tourism-hero-v2__site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.5rem;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.625rem;
}

.tourism-hero-v2__site-nav-links {
    display: none;
    gap: 0.65rem;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
}

@media (min-width: 640px) {
    .tourism-hero-v2__site-nav-links {
        display: flex;
    }
}

.tourism-hero-v2__site-hero {
    padding: 1rem;
    margin-bottom: 0.9rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 1px solid rgba(186, 230, 253, 0.7);
}

.tourism-hero-v2__site-eyebrow {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-hero-v2__site-title {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1e293b;
}

.tourism-hero-v2__site-cta {
    display: inline-flex;
    margin-top: 0.65rem;
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
    background: #0284c7;
    color: #ffffff;
    font-size: 0.5625rem;
    font-weight: 700;
}

.tourism-hero-v2__site-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.tourism-hero-v2__site-card {
    padding: 0.65rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tourism-hero-v2__site-card--featured {
    border-color: rgba(14, 165, 233, 0.22);
    box-shadow: 0 4px 14px -8px rgba(14, 165, 233, 0.35);
}

.tourism-hero-v2__site-card p {
    margin-top: 0.45rem;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-hero-v2__site-card strong {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #0f172a;
}

.tourism-hero-v2__site-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
}

.tourism-hero-v2__site-card-icon--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-hero-v2__site-card-icon--amber { background: #fffbeb; color: #d97706; }
.tourism-hero-v2__site-card-icon--cyan { background: #ecfeff; color: #0891b2; }
.tourism-hero-v2__site-card-icon--emerald { background: #ecfdf5; color: #059669; }
.tourism-hero-v2__site-card-icon--indigo { background: #eef2ff; color: #4f46e5; }

.tourism-hero-v2__checkout {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.tourism-hero-v2__checkout-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.tourism-hero-v2__checkout-label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #059669;
}

.tourism-hero-v2__checkout-total {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
}

.tourism-hero-v2__checkout-total span {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
}

.tourism-hero-v2__checkout-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
}

.tourism-hero-v2__checkout-plan {
    padding: 0.25rem 0.45rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 0.5rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-hero-v2__checkout-plan em {
    display: block;
    font-style: normal;
    font-size: 0.4375rem;
    font-weight: 700;
    color: #059669;
    margin-top: 0.05rem;
}

.tourism-hero-v2__checkout-plan.is-active {
    border-color: #86efac;
    background: #ecfdf5;
    color: #047857;
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.15);
}

.tourism-hero-v2__checkout-schedule {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
}

.tourism-hero-v2__checkout-schedule span {
    padding: 0.35rem 0.25rem;
    border-radius: 0.5rem;
    border: 1px solid #f1f5f9;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.4375rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    line-height: 1.35;
}

.tourism-hero-v2__checkout-schedule span:first-child {
    border-color: #bbf7d0;
    background: #ecfdf5;
    color: #047857;
}

.tourism-hero-v2__checkout-schedule span i {
    font-size: 0.375rem;
    margin-right: 0.1rem;
}

.tourism-hero-v2__panel-card {
    position: absolute;
    right: -0.5rem;
    bottom: -1.25rem;
    width: min(18rem, 78%);
    padding: 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
}

.tourism-hero-v2__panel-card--ops {
    box-shadow:
        0 24px 48px -20px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.tourism-hero-v2__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tourism-hero-v2__panel-eyebrow {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tourism-hero-v2__panel-title {
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
}

.tourism-hero-v2__panel-status {
    padding: 0.2rem 0.45rem;
    border-radius: 9999px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    font-size: 0.5rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
}

.tourism-hero-v2__panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.tourism-hero-v2__panel-metrics div {
    padding: 0.45rem;
    border-radius: 0.625rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.tourism-hero-v2__panel-metrics p {
    font-size: 0.5rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.tourism-hero-v2__panel-metrics strong {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #0f172a;
}

.tourism-hero-v2__panel-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.tourism-hero-v2__panel-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: 0.625rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.tourism-hero-v2__panel-row-icon {
    flex-shrink: 0;
}

.tourism-hero-v2__panel-row div {
    flex: 1;
    min-width: 0;
}

.tourism-hero-v2__panel-row p {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tourism-hero-v2__panel-row small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.5rem;
    font-weight: 500;
    color: #94a3b8;
}

.tourism-hero-v2__panel-row strong {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #047857;
}

.tourism-hero-v2__float {
    position: absolute;
    display: none;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .tourism-hero-v2__float {
        display: flex;
    }
}

.tourism-hero-v2__float--setup {
    top: -0.75rem;
    right: -0.25rem;
    animation: float-delayed 7s ease-in-out infinite;
}

.tourism-hero-v2__float--installment {
    left: -0.5rem;
    bottom: 4.5rem;
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: -3s;
}

.tourism-hero-v2__float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.75rem;
}

.tourism-hero-v2__float-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.tourism-hero-v2__float p {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
}

.tourism-hero-v2__float strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
}

.tourism-hero-v2__hub-dash-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.tourism-hero-v2__hub-dash-eyebrow {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tourism-hero-v2__hub-dash-title {
    margin-top: 0.15rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1e293b;
}

.tourism-hero-v2__hub-product-tabs {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.2rem;
    border-radius: 0.625rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.tourism-hero-v2__hub-product-tab {
    padding: 0.25rem 0.5rem;
    border-radius: 0.45rem;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #64748b;
}

.tourism-hero-v2__hub-product-tab--active {
    background: #ffffff;
    color: #0284c7;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.tourism-hero-v2__hub-dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.tourism-hero-v2__hub-dash-metrics article {
    padding: 0.65rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.tourism-hero-v2__hub-dash-metrics article:first-child {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.tourism-hero-v2__hub-dash-metrics p {
    font-size: 0.5rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.tourism-hero-v2__hub-dash-metrics strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.tourism-hero-v2__hub-dash-metrics small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.5rem;
    font-weight: 600;
    color: #059669;
}

.tourism-hero-v2__hub-dash-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.tourism-hero-v2__hub-dash-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem;
    border-radius: 0.625rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.tourism-hero-v2__hub-dash-row div {
    flex: 1;
    min-width: 0;
}

.tourism-hero-v2__hub-dash-row p {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tourism-hero-v2__hub-dash-row small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.5rem;
    font-weight: 500;
    color: #94a3b8;
}

.tourism-hero-v2__hub-dash-row strong {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #047857;
}

.tourism-hero-v2__hub-panel-preview {
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #ffffff;
}

.tourism-hero-v2__hub-panel-preview-bar {
    display: flex;
    gap: 0.25rem;
    padding: 0.45rem 0.55rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.tourism-hero-v2__hub-panel-preview-bar span {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #e2e8f0;
}

.tourism-hero-v2__hub-panel-preview-body {
    padding: 0.65rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.tourism-hero-v2__hub-panel-preview-body p {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #334155;
}

.tourism-hero-v2__hub-panel-preview-body strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.tourism-hero-v2__hub-panel-preview-body span {
    display: inline-flex;
    margin-top: 0.45rem;
    padding: 0.25rem 0.45rem;
    border-radius: 0.4rem;
    background: #0284c7;
    color: #ffffff;
    font-size: 0.5rem;
    font-weight: 700;
}

@media (max-width: 1023px) {
    .tourism-hero-v2__panel-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 0.75rem;
    }

    .tourism-hero-v2__float--installment {
        display: none;
    }
}

@media (max-width: 1023px) {
    .hero-mockup-container {
        transform: none;
    }

    .hero-mockup-container:hover {
        transform: none;
    }
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

[data-billing="monthly"] .billing-label-monthly,
[data-billing="yearly"] .billing-label-yearly {
    color: var(--heading);
}

[data-billing="monthly"] .billing-label-yearly,
[data-billing="yearly"] .billing-label-monthly {
    color: #94a3b8;
}

/* ── Hub Homepage ── */
.hub-hero-premium {
    background-color: #fafbfc;
    background-image:
        radial-gradient(ellipse 80% 60% at 75% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 10% 90%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 35% 30% at 90% 70%, rgba(71, 85, 105, 0.06) 0%, transparent 55%);
}

.hub-hero-v2 {
    background-color: #f8f9fa;
    background-image:
        radial-gradient(ellipse 80% 60% at 88% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(14, 165, 233, 0.08) 0%, transparent 52%);
}

@media (min-width: 1024px) {
    .hub-hero-v2 {
        min-height: 92vh;
        display: flex;
        align-items: center;
    }

    .hub-hero-v2 > .max-w-7xl {
        width: 100%;
    }
}

.hub-hero-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}

.hub-hero-v2__orb--primary {
    width: 24rem;
    height: 24rem;
    top: -6%;
    right: 8%;
    background: rgba(37, 99, 235, 0.14);
}

.hub-hero-v2__orb--secondary {
    width: 18rem;
    height: 18rem;
    bottom: 4%;
    left: -4%;
    background: rgba(14, 165, 233, 0.1);
}

.hub-hero-v2__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.hub-hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem 0.45rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    background: #ffffff;
    border: 1px solid rgba(191, 219, 254, 0.9);
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hub-hero-v2__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.7rem;
}

.hub-hero-v2__title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5.4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #1e293b;
}

.hub-hero-v2__lead {
    max-width: 34rem;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.hub-hero-v2__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hub-hero-v2__actions {
        flex-direction: row;
        align-items: center;
    }
}

.hub-hero-v2__cta-primary,
.hub-hero-v2__cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hub-hero-v2__cta-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    box-shadow: 0 12px 28px -12px rgba(37, 99, 235, 0.55);
}

.hub-hero-v2__cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -12px rgba(37, 99, 235, 0.6);
}

.hub-hero-v2__cta-secondary {
    color: #334155;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.hub-hero-v2__cta-secondary:hover {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateY(-1px);
}

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

@media (min-width: 640px) {
    .hub-hero-v2__metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hub-hero-v2__metric {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hub-hero-v2__metric-value {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1;
    color: #2563eb;
    letter-spacing: -0.02em;
}

.hub-hero-v2__metric:nth-child(2) .hub-hero-v2__metric-value,
.hub-hero-v2__metric:nth-child(3) .hub-hero-v2__metric-value {
    color: #334155;
}

.hub-hero-v2__metric:nth-child(4) .hub-hero-v2__metric-value {
    color: #059669;
}

.hub-hero-v2__metric-label {
    margin-top: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-hero-v2__mockup-wrap {
    position: relative;
}

.hub-hero-v2__mockup-glow {
    position: absolute;
    inset: 8% 4% 4% 8%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.18) 0%, transparent 72%);
    filter: blur(36px);
    pointer-events: none;
}

.hub-hero-v2__mockup-stack {
    position: relative;
    z-index: 1;
}

.hub-hero-v2__browser {
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    box-shadow: 0 28px 60px -24px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.hub-hero-v2__browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.hub-hero-v2__browser-dots {
    display: flex;
    gap: 0.35rem;
}

.hub-hero-v2__browser-dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background: #e2e8f0;
}

.hub-hero-v2__browser-dots span:nth-child(1) { background: #fda4af; }
.hub-hero-v2__browser-dots span:nth-child(2) { background: #fde68a; }
.hub-hero-v2__browser-dots span:nth-child(3) { background: #86efac; }

.hub-hero-v2__browser-url {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 0.625rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-hero-v2__browser-url i {
    color: #10b981;
    font-size: 0.55rem;
}

.hub-hero-v2__browser-live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border-radius: 9999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hub-hero-v2__browser-live-dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 9999px;
    background: #2563eb;
}

.hub-hero-v2__browser-body {
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hub-hero-v2__dash-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.hub-hero-v2__dash-eyebrow {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hub-hero-v2__dash-title {
    margin-top: 0.15rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1e293b;
}

.hub-hero-v2__product-tabs {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.2rem;
    border-radius: 0.625rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.hub-hero-v2__product-tab {
    padding: 0.25rem 0.5rem;
    border-radius: 0.45rem;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #64748b;
}

.hub-hero-v2__product-tab--active {
    background: #ffffff;
    color: #1d4ed8;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.hub-hero-v2__dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.hub-hero-v2__dash-metrics article {
    padding: 0.65rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.hub-hero-v2__dash-metrics article:first-child {
    background: #eff6ff;
    border-color: #dbeafe;
}

.hub-hero-v2__dash-metrics p {
    font-size: 0.5rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.hub-hero-v2__dash-metrics strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.hub-hero-v2__dash-metrics small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.5rem;
    font-weight: 600;
    color: #059669;
}

.hub-hero-v2__dash-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hub-hero-v2__dash-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem;
    border-radius: 0.625rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.hub-hero-v2__dash-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    flex-shrink: 0;
}

.hub-hero-v2__dash-icon--tourism { background: #f0f9ff; color: #0284c7; }
.hub-hero-v2__dash-icon--indigo { background: #eef2ff; color: #4f46e5; }

.hub-hero-v2__dash-row div {
    flex: 1;
    min-width: 0;
}

.hub-hero-v2__dash-row p {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-hero-v2__dash-row small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.5rem;
    font-weight: 500;
    color: #94a3b8;
}

.hub-hero-v2__dash-row strong {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #047857;
}

.hub-hero-v2__panel-card {
    position: absolute;
    right: -0.5rem;
    bottom: -1.25rem;
    width: min(16rem, 72%);
    padding: 0.85rem;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
}

.hub-hero-v2__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.hub-hero-v2__panel-eyebrow {
    font-size: 0.5rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hub-hero-v2__panel-title {
    margin-top: 0.1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #1e293b;
}

.hub-hero-v2__panel-status {
    padding: 0.2rem 0.45rem;
    border-radius: 9999px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    font-size: 0.5rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
}

.hub-hero-v2__panel-preview {
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #ffffff;
}

.hub-hero-v2__panel-preview-bar {
    display: flex;
    gap: 0.25rem;
    padding: 0.45rem 0.55rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.hub-hero-v2__panel-preview-bar span {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #e2e8f0;
}

.hub-hero-v2__panel-preview-body {
    padding: 0.65rem;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.hub-hero-v2__panel-preview-body p {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #334155;
}

.hub-hero-v2__panel-preview-body strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.hub-hero-v2__panel-preview-body span {
    display: inline-flex;
    margin-top: 0.45rem;
    padding: 0.25rem 0.45rem;
    border-radius: 0.4rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.5rem;
    font-weight: 700;
}

.hub-hero-v2__float {
    position: absolute;
    display: none;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .hub-hero-v2__float {
        display: flex;
    }
}

.hub-hero-v2__float--setup {
    top: -0.75rem;
    right: -0.25rem;
    animation: float-delayed 7s ease-in-out infinite;
}

.hub-hero-v2__float--sync {
    left: -0.5rem;
    bottom: 4.5rem;
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: -3s;
}

.hub-hero-v2__float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
}

.hub-hero-v2__float-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.hub-hero-v2__float p {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-hero-v2__float strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
}

@media (max-width: 1023px) {
    .hub-hero-v2__panel-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 0.75rem;
    }

    .hub-hero-v2__float--sync {
        display: none;
    }
}

.hub-headline-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 55%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-header-brand:hover {
    opacity: 0.92;
}

.hub-header-logo {
    display: block;
    width: auto;
    max-width: 15rem;
    height: 3.3rem;
    object-fit: contain;
}

.hub-header-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1e293b;
}

.hub-header-actions {
    gap: 0.625rem;
    flex-shrink: 0;
}

.hub-header-user__guest-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.hub-header-user__register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.hub-header-user__register:hover {
    background: #dbeafe;
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateY(-1px);
}

.hub-header-locale,
.hub-header-user__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.5rem;
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    color: #334155;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hub-header-locale {
    padding-right: 0.75rem;
}

.hub-header-locale:hover,
.hub-header-user__trigger:hover,
.hub-header-user__dropdown.is-open .hub-header-user__trigger {
    background: #f8fafc;
    border-color: rgba(191, 219, 254, 0.9);
    box-shadow: 0 8px 20px -12px rgba(37, 99, 235, 0.22);
}

.hub-header-user__trigger--guest:hover {
    transform: translateY(-1px);
}

.hub-header-locale__icon,
.hub-header-user__avatar {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 9999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #2563eb;
    font-size: 0.625rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hub-header-locale__icon {
    font-size: 0.6875rem;
}

.hub-header-user__avatar--guest {
    font-size: 0.6875rem;
    color: #2563eb;
}

.hub-header-user__avatar--lg {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-color: transparent;
    color: #ffffff;
}

.hub-header-locale__label,
.hub-header-user__name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.hub-header-locale__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-header-locale:hover .hub-header-locale__label,
.hub-header-user__trigger:hover .hub-header-user__name,
.hub-header-user__dropdown.is-open .hub-header-user__name {
    color: #1e293b;
}

.hub-header-locale__caret,
.hub-header-user__caret {
    font-size: 0.5625rem;
    color: #94a3b8;
    transition: transform 0.22s ease, color 0.2s ease;
    flex-shrink: 0;
}

.hub-header-user__dropdown.is-open .hub-header-user__caret {
    transform: rotate(180deg);
    color: #2563eb;
}

.hub-header-user__menu {
    position: relative;
    flex-shrink: 0;
}

.hub-header-user__dropdown {
    position: relative;
}

.hub-header-user__dropdown-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 60;
    width: min(16.5rem, calc(100vw - 1.5rem));
    padding: 0.65rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow:
        0 4px 6px -2px rgba(15, 23, 42, 0.06),
        0 24px 48px -20px rgba(15, 23, 42, 0.22);
    transform-origin: top right;
    animation: hub-header-user-dropdown-in 0.2s ease;
}

.hub-header-user__dropdown-panel[hidden] {
    display: none;
}

@keyframes hub-header-user-dropdown-in {
    from {
        opacity: 0;
        transform: translateY(-0.35rem) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hub-header-user__card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.6rem 0.75rem;
}

.hub-header-user__meta {
    min-width: 0;
}

.hub-header-user__full {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.hub-header-user__email {
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-header-user__list {
    display: grid;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hub-header-user__item,
.hub-header-user__logout {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.65rem;
    border-radius: 0.7rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.hub-header-user__item i,
.hub-header-user__logout i {
    width: 1rem;
    text-align: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.hub-header-user__item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.hub-header-user__item:hover i {
    color: #2563eb;
}

.hub-header-user__divider {
    height: 1px;
    margin: 0.35rem 0.25rem;
    background: #e2e8f0;
}

.hub-header-user__logout {
    color: #dc2626;
}

.hub-header-user__logout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.hub-header-user__logout:hover i {
    color: #dc2626;
}

.hub-header-user__trigger--mobile,
.hub-header-locale--mobile {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
}

.hub-product-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.hub-product-pill-tourism {
    background: rgba(240, 249, 255, 0.9);
    border-color: rgba(186, 230, 253, 0.8);
    color: #0369a1;
}

.hub-product-pill-marin {
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(226, 232, 240, 0.9);
    color: #334155;
}

.hub-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 0.875rem;
    color: white;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(37, 99, 235, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.45);
}

.hub-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hub-cta-outline:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
}

.hub-stat-card {
    padding: 1rem;
    border-radius: 1.125rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.hub-stat-card:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.1);
}

.hub-mockup-shell {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.16), 0 0 100px -30px rgba(37, 99, 235, 0.2);
    overflow: hidden;
}

.hub-mockup-glow {
    position: absolute;
    inset: 8% 4% 4% 8%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hub-product-module {
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.35s ease;
}

.hub-product-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.08);
}

.hub-ecosystem-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: white;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.12);
}

.hub-ecosystem-card-tourism:hover {
    border-color: rgba(14, 165, 233, 0.35);
}

.hub-ecosystem-card-marin:hover {
    border-color: rgba(37, 99, 235, 0.35);
}

.hub-ecosystem-card-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.45s ease;
}

.hub-ecosystem-card:hover .hub-ecosystem-card-glow {
    opacity: 0.85;
}

.hub-float-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.5);
}

@media (max-width: 1023px) {
    .hub-mockup-perspective .hero-mockup-container {
        transform: none;
    }
}

/* ── tourismOS Product Showcase (Homepage) ── */
.tourism-product-section {
    background-color: #0b1220;
    background-image:
        radial-gradient(ellipse 70% 55% at 85% 15%, rgba(14, 165, 233, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 85%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
}

.tourism-product-grid-bg {
    background-image:
        linear-gradient(to right, rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 15%, transparent 75%);
}

.tourism-product-headline {
    background: linear-gradient(135deg, #ffffff 0%, #99f6e4 28%, #22d3ee 58%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tourism-product-headline-os {
    background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.tourism-product-shell {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.tourism-product-mockup {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 32px 64px -16px rgba(0, 0, 0, 0.45),
        0 0 80px -20px rgba(14, 165, 233, 0.35);
}

.tourism-bento-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tourism-bento-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(14, 165, 233, 0.25);
    transform: translateY(-3px);
}

.tourism-pricing-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.tourism-pricing-glass:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.tourism-pricing-featured {
    background: linear-gradient(160deg, rgba(14, 165, 233, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 0 40px -10px rgba(14, 165, 233, 0.3);
}

.tourism-pricing-trial {
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 0 32px -10px rgba(16, 185, 129, 0.2);
}

.tourism-module-tab-dark.module-tab:not(.active) {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.tourism-module-tab-dark.module-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.06);
    color: #7dd3fc;
    border-color: rgba(14, 165, 233, 0.2);
}

.tourism-module-tab-dark.module-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 4px 24px -4px rgba(14, 165, 233, 0.3);
}

.tourism-module-panel-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── tourismOS Showcase v2 (Homepage) ── */
.tourism-showcase-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.875rem 0.35rem 0.35rem;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.12);
    box-shadow: 0 0 28px -10px rgba(16, 185, 129, 0.45);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6ee7b7;
}

.tourism-showcase-v2__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.22);
    color: #34d399;
    font-size: 0.625rem;
}

.tourism-showcase-v2__title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #f8fafc 0%, #bae6fd 42%, #38bdf8 72%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tourism-showcase-v2__lead {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #94a3b8;
}

@media (min-width: 768px) {
    .tourism-showcase-v2__lead {
        font-size: 1rem;
    }
}

.tourism-showcase-v2__highlights {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.tourism-showcase-v2__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-showcase-v2__highlights i {
    color: #38bdf8;
    font-size: 0.625rem;
}

.tourism-showcase-v2__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tourism-showcase-v2__cta--primary {
    background: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 12px 28px -12px rgba(14, 165, 233, 0.55);
}

.tourism-showcase-v2__cta--primary:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

.tourism-showcase-v2__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.tourism-showcase-v2__pill i {
    color: #38bdf8;
    font-size: 0.5625rem;
}

.tourism-showcase-v2__pill:hover {
    border-color: rgba(14, 165, 233, 0.25);
    color: #cbd5e1;
}

.tourism-showcase-v2__pill--soon {
    opacity: 0.82;
}

.tourism-showcase-v2__pill--soon i {
    color: #64748b;
}

.tourism-showcase-v2__pill--soon .tourism-vertical-soon {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    text-transform: none;
    letter-spacing: 0.01em;
}

.tourism-showcase-v2__modules-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 1.25rem;
}

.tourism-showcase-v2__split {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .tourism-showcase-v2__split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

.tourism-showcase-v2__split > .tourism-product-shell,
.tourism-showcase-v2__split > .tourism-showcase-v2__mockup-wrap {
    height: 100%;
    min-height: 0;
}

.tourism-showcase-v2__modules-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
}

.tourism-showcase-v2__modules-tab {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.75rem;
    border-radius: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tourism-showcase-v2__modules-tab.module-tab {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: inherit;
    box-shadow: none;
}

.tourism-showcase-v2__modules-tab.module-tab:not(.active) {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: inherit;
}

.tourism-showcase-v2__modules-tab.module-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: inherit;
}

.tourism-showcase-v2__modules-tab.module-tab.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(14, 165, 233, 0.55);
    color: inherit;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.18);
}

.tourism-showcase-v2__modules-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.625rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.tourism-showcase-v2__modules-tab-icon--tourism { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.tourism-showcase-v2__modules-tab-icon--sky { background: rgba(56, 189, 248, 0.15); color: #7dd3fc; }
.tourism-showcase-v2__modules-tab-icon--emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.tourism-showcase-v2__modules-tab-icon--indigo { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; }

.tourism-showcase-v2__modules-tab-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.tourism-showcase-v2__modules-tab-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.3;
}

.tourism-showcase-v2__modules-tab-desc {
    font-size: 0.625rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.35;
}

.tourism-showcase-v2__modules-panel {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.tourism-showcase-v2__modules-panel-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.tourism-showcase-v2__modules-panel-lead {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tourism-showcase-v2__modules-features {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.tourism-showcase-v2__modules-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.tourism-showcase-v2__modules-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 9999px;
    flex-shrink: 0;
    font-size: 0.5rem;
    margin-top: 0.1rem;
}

.tourism-showcase-v2__modules-check--tourism { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.tourism-showcase-v2__modules-check--sky { background: rgba(56, 189, 248, 0.15); color: #7dd3fc; }
.tourism-showcase-v2__modules-check--emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.tourism-showcase-v2__modules-check--indigo { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; }

.tourism-showcase-v2__modules-feature-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.tourism-showcase-v2__modules-feature-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.35;
}

.tourism-showcase-v2__modules-feature-desc {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
}

.tourism-showcase-v2__modules-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tourism-showcase-v2__modules-footer-label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.tourism-showcase-v2__modules-metric-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.tourism-showcase-v2__modules-metric--tourism .tourism-showcase-v2__modules-metric-value { color: #38bdf8; }
.tourism-showcase-v2__modules-metric--sky .tourism-showcase-v2__modules-metric-value { color: #7dd3fc; }
.tourism-showcase-v2__modules-metric--indigo .tourism-showcase-v2__modules-metric-value { color: #a5b4fc; }

.tourism-showcase-v2__modules-metric-desc {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
}

.tourism-showcase-v2__modules-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tourism-showcase-v2__modules-tags span {
    padding: 0.3rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
}

.tourism-showcase-v2__modules-link-wrap {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.tourism-showcase-v2__modules-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px dashed rgba(56, 189, 248, 0.35);
    padding-bottom: 0.15rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.tourism-showcase-v2__modules-link:hover {
    color: #7dd3fc;
    border-color: rgba(125, 211, 252, 0.55);
}

.tourism-showcase-v2__mockup-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.tourism-showcase-v2__mockup-glow {
    position: absolute;
    inset: 8% 4% -4%;
    border-radius: 1.5rem;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.tourism-showcase-v2__mockup {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    box-shadow:
        0 28px 60px -24px rgba(15, 23, 42, 0.35),
        0 0 80px -24px rgba(14, 165, 233, 0.35);
    overflow: hidden;
}

.tourism-showcase-v2__chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.tourism-showcase-v2__dots {
    display: flex;
    gap: 0.35rem;
}

.tourism-showcase-v2__dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
}

.tourism-showcase-v2__dots span:nth-child(1) { background: #fda4af; }
.tourism-showcase-v2__dots span:nth-child(2) { background: #fde68a; }
.tourism-showcase-v2__dots span:nth-child(3) { background: #86efac; }

.tourism-showcase-v2__url {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 0.625rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tourism-showcase-v2__url i {
    color: #10b981;
    font-size: 0.55rem;
}

.tourism-showcase-v2__live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border-radius: 9999px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tourism-showcase-v2__live-dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 9999px;
    background: #10b981;
}

.tourism-showcase-v2__app {
    display: flex;
    flex: 1;
    min-height: 0;
}

.tourism-showcase-v2__sidebar {
    width: 9.5rem;
    flex-shrink: 0;
    align-self: stretch;
    padding: 1rem 0.75rem;
    border-right: 1px solid #f1f5f9;
    background: #f8fafc;
    flex-direction: column;
    gap: 0.25rem;
}

.tourism-showcase-v2__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.35rem 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.tourism-showcase-v2__brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: #0284c7;
    color: #ffffff;
    font-size: 0.625rem;
}

.tourism-showcase-v2__brand-name {
    font-size: 0.625rem;
    font-weight: 700;
    color: #334155;
    font-style: italic;
}

.tourism-showcase-v2__brand-name span {
    color: #0284c7;
    font-style: normal;
}

.tourism-showcase-v2__nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tourism-showcase-v2__nav-item {
    padding: 0.45rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.tourism-showcase-v2__nav-item.is-active {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0284c7;
    box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.12);
}

.tourism-showcase-v2__main {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tourism-showcase-v2__view {
    display: none;
    animation: showcase-view-in 0.35s ease;
}

.tourism-showcase-v2__view.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

@keyframes showcase-view-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.tourism-showcase-v2__view-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.tourism-showcase-v2__view-eyebrow {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

.tourism-showcase-v2__view-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.tourism-showcase-v2__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.5625rem;
    font-weight: 700;
    white-space: nowrap;
}

.tourism-showcase-v2__chip--emerald { background: #ecfdf5; color: #047857; border: 1px solid #d1fae5; }
.tourism-showcase-v2__chip--blue { background: #eff6ff; color: #1d4ed8; border: 1px solid #dbeafe; }
.tourism-showcase-v2__chip--violet { background: #f5f3ff; color: #6d28d9; border: 1px solid #ede9fe; }

.tourism-showcase-v2__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tourism-showcase-v2__stats article {
    padding: 0.625rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.tourism-showcase-v2__stats p {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

.tourism-showcase-v2__stats strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.tourism-showcase-v2__stats small {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #10b981;
}

.tourism-showcase-v2__chart {
    padding: 0.75rem;
    border-radius: 0.875rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    margin-bottom: 0.75rem;
}

.tourism-showcase-v2__chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-showcase-v2__bars {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 4.5rem;
}

.tourism-showcase-v2__bars span {
    flex: 1;
    height: var(--h);
    min-height: 12%;
    border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
    background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
    opacity: 0.85;
}

.tourism-showcase-v2__bars span:nth-child(even) {
    opacity: 0.65;
}

.tourism-showcase-v2__sparkline {
    display: block;
    width: 100%;
    height: 3.5rem;
}

.tourism-showcase-v2__feed {
    display: grid;
    gap: 0.45rem;
}

.tourism-showcase-v2__row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.tourism-showcase-v2__row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    flex-shrink: 0;
}

.tourism-showcase-v2__row-icon--tourism { background: #f0f9ff; color: #0284c7; }
.tourism-showcase-v2__row-icon--indigo { background: #eef2ff; color: #4f46e5; }
.tourism-showcase-v2__row-icon--emerald { background: #ecfdf5; color: #059669; }
.tourism-showcase-v2__row-icon--amber { background: #fffbeb; color: #d97706; }

.tourism-showcase-v2__row div {
    flex: 1;
    min-width: 0;
}

.tourism-showcase-v2__row p {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tourism-showcase-v2__row small {
    display: block;
    font-size: 0.5625rem;
    font-weight: 500;
    color: #94a3b8;
}

.tourism-showcase-v2__row strong {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #059669;
    flex-shrink: 0;
}

.tourism-showcase-v2__preview {
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    overflow: hidden;
}

.tourism-showcase-v2__preview-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-showcase-v2__preview-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.375rem;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.5rem;
    margin-right: 0.25rem;
}

.tourism-showcase-v2__preview-hero {
    padding: 0.875rem 0.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 100%);
}

.tourism-showcase-v2__preview-hero p {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.tourism-showcase-v2__preview-hero strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
}

.tourism-showcase-v2__preview-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.625rem 0.75rem 0.75rem;
}

.tourism-showcase-v2__preview-cards article {
    padding: 0.5rem;
    border-radius: 0.625rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    text-align: center;
}

.tourism-showcase-v2__preview-cards i {
    display: block;
    font-size: 0.625rem;
    color: #0284c7;
    margin-bottom: 0.25rem;
}

.tourism-showcase-v2__preview-cards span {
    display: block;
    font-size: 0.5rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.15rem;
}

.tourism-showcase-v2__preview-cards strong {
    font-size: 0.625rem;
    font-weight: 700;
    color: #0f172a;
}

.tourism-showcase-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tourism-showcase-v2__tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #64748b;
}

.tourism-showcase-v2__tags i {
    color: #0284c7;
    font-size: 0.5rem;
}

.tourism-showcase-v2__float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 32px -16px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(12px);
}

.tourism-showcase-v2__float p {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-bottom: 0.1rem;
}

.tourism-showcase-v2__float strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

.tourism-showcase-v2__float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #0284c7;
    font-size: 0.75rem;
}

.tourism-showcase-v2__float-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.tourism-showcase-v2__float--setup {
    left: -0.75rem;
    bottom: 2.5rem;
}

.tourism-showcase-v2__float--payment {
    right: -0.5rem;
    top: 3rem;
}

.tourism-showcase-v2__feature {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.tourism-showcase-v2__feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(14, 165, 233, 0.25);
    transform: translateY(-2px);
}

.tourism-showcase-v2__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.tourism-showcase-v2__feature-icon--tourism { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.tourism-showcase-v2__feature-icon--rose { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.tourism-showcase-v2__feature-icon--emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.tourism-showcase-v2__feature-icon--violet { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }

.tourism-showcase-v2__feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.35rem;
}

.tourism-showcase-v2__feature-desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.55;
}

.tourism-showcase-v2__bottom-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: #38bdf8;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .tourism-showcase-v2__float--setup,
    .tourism-showcase-v2__float--payment {
        display: none !important;
    }
}

/* ── Corporate Trust (Homepage) ── */
.trust-section-premium {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
}

.trust-grid-bg {
    background-image:
        linear-gradient(to right, rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 78%);
}

.trust-stat-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-stat-card:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.1);
}

.trust-bento-primary {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #0f2744 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.25);
}

.trust-bento-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-bento-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.1);
}

.trust-compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.125rem;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.trust-compliance-badge:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
}

.trust-headline-accent {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-trust-v2 {
    background-color: #f8f9fa;
}

.hub-trust-v2__title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 52%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-trust-v2__metric {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hub-trust-v2__metric:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -18px rgba(15, 23, 42, 0.12);
}

.hub-trust-v2__metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.hub-trust-v2__metric-icon--blue { background: #eff6ff; color: #2563eb; }
.hub-trust-v2__metric-icon--slate { background: #f8fafc; color: #475569; }
.hub-trust-v2__metric-icon--violet { background: #f5f3ff; color: #7c3aed; }
.hub-trust-v2__metric-icon--emerald { background: #ecfdf5; color: #059669; }

.hub-trust-v2__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.hub-trust-v2__metric-label {
    margin-top: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-trust-v2__feature {
    position: relative;
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(30, 58, 138, 0.18);
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 58%, #172554 100%);
    box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

.hub-trust-v2__feature-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.22);
    filter: blur(48px);
    pointer-events: none;
}

.hub-trust-v2__feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hub-trust-v2__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    font-size: 1rem;
}

.hub-trust-v2__feature-pill {
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #cbd5e1;
}

.hub-trust-v2__feature-title {
    position: relative;
    z-index: 1;
    font-size: 1.375rem;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.hub-trust-v2__feature-desc {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 36rem;
}

.hub-trust-v2__feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .hub-trust-v2__feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hub-trust-v2__feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
}

.hub-trust-v2__feature-list i {
    color: #34d399;
    font-size: 0.625rem;
}

.hub-trust-v2__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hub-trust-v2__card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -18px rgba(15, 23, 42, 0.12);
}

.hub-trust-v2__card--row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hub-trust-v2__card--row {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
        align-items: center;
    }
}

.hub-trust-v2__card-row-copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hub-trust-v2__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hub-trust-v2__card-row-copy .hub-trust-v2__card-icon {
    margin-bottom: 0;
}

.hub-trust-v2__card-icon--blue { background: #eff6ff; color: #2563eb; }
.hub-trust-v2__card-icon--emerald { background: #ecfdf5; color: #059669; }
.hub-trust-v2__card-icon--violet { background: #f5f3ff; color: #7c3aed; }
.hub-trust-v2__card-icon--slate { background: #f8fafc; color: #64748b; }

.hub-trust-v2__card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

.hub-trust-v2__card-sub {
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hub-trust-v2__card-desc {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
}

.hub-trust-v2__card-desc--row {
    margin: 0;
}

.hub-trust-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.hub-trust-v2__tags span {
    padding: 0.3rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
}

.hub-trust-v2__card-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
}

.hub-trust-v2__card-meta-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #10b981;
}

.hub-trust-v2__uptime-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    width: 8.5rem;
    height: 3.5rem;
    padding: 0.65rem;
    border-radius: 0.875rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
}

.hub-trust-v2__uptime-chart span {
    flex: 1;
    border-radius: 0.2rem 0.2rem 0 0;
    background: linear-gradient(to top, #34d399, #6ee7b7);
}

.hub-trust-v2__compliance-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #475569;
}

.hub-trust-v2__compliance-item i {
    color: #2563eb;
    font-size: 0.625rem;
}

.hub-trust-v2__quote {
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.hub-trust-v2__quote p {
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.hub-trust-v2__quote footer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hub-trust-v2__quote-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.6875rem;
    font-weight: 700;
}

.hub-trust-v2__quote cite {
    display: block;
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.hub-trust-v2__quote small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
}

.hub-integrations-v2__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hub-integrations-v2__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -18px rgba(15, 23, 42, 0.12);
}

.hub-integrations-v2__card--emerald:hover { border-color: rgba(16, 185, 129, 0.28); }
.hub-integrations-v2__card--rose:hover { border-color: rgba(244, 63, 94, 0.24); }
.hub-integrations-v2__card--violet:hover { border-color: rgba(139, 92, 246, 0.24); }
.hub-integrations-v2__card--tourism:hover { border-color: rgba(14, 165, 233, 0.28); }

.hub-integrations-v2__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hub-integrations-v2__icon--emerald { background: #ecfdf5; color: #059669; }
.hub-integrations-v2__icon--rose { background: #fff1f2; color: #e11d48; }
.hub-integrations-v2__icon--violet { background: #f5f3ff; color: #7c3aed; }
.hub-integrations-v2__icon--tourism { background: #f0f9ff; color: #0284c7; }

.hub-integrations-v2__card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.hub-integrations-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: auto;
}

.hub-integrations-v2__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    font-size: 0.625rem;
    font-weight: 600;
    color: #475569;
}

.hub-integrations-v2__tag--soon {
    border-style: dashed;
    border-color: #e2e8f0;
    background: #f8fafc;
    color: #94a3b8;
}

.hub-integrations-v2__strip-label {
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-integrations-v2__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(14, 165, 233, 0.25);
    background: #f0f9ff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0369a1;
    transition: all 0.2s ease;
}

.hub-integrations-v2__cta:hover {
    background: #0284c7;
    border-color: #0284c7;
    color: #ffffff;
    box-shadow: 0 12px 24px -12px rgba(2, 132, 199, 0.45);
}

.hub-blog-v2__card {
    height: 100%;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hub-blog-v2__card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.12);
}

.hub-blog-v2__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.hub-blog-v2__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
}

.hub-blog-v2__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hub-blog-v2__card:hover .hub-blog-v2__cover {
    transform: scale(1.03);
}

.hub-blog-v2__cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 55%, #e0f2fe 100%);
    color: #2563eb;
    font-size: 1.75rem;
}

.hub-blog-v2__category {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0369a1;
}

.hub-blog-v2__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.375rem 1.375rem;
}

.hub-blog-v2__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-blog-v2__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hub-blog-v2__meta i {
    font-size: 0.625rem;
    opacity: 0.85;
}

.hub-blog-v2__title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: #1e293b;
    margin-bottom: 0.625rem;
    transition: color 0.2s ease;
}

.hub-blog-v2__card:hover .hub-blog-v2__title {
    color: #0284c7;
}

.hub-blog-v2__excerpt {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.hub-blog-v2__read {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0284c7;
}

.hub-blog-v2__read-icon {
    font-size: 0.625rem;
    transition: transform 0.2s ease;
}

.hub-blog-v2__card:hover .hub-blog-v2__read-icon {
    transform: translateX(2px);
}

.hub-blog-v2__empty {
    padding: 3rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px dashed rgba(226, 232, 240, 0.95);
    background: #ffffff;
    text-align: center;
}

.hub-blog-v2__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.875rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1rem;
}

.hub-blog-v2__empty-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.hub-blog-v2__empty-desc {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
}

.hub-blog-v2__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.hub-blog-v2__cta:hover {
    border-color: rgba(37, 99, 235, 0.25);
    color: #0284c7;
    box-shadow: 0 12px 24px -14px rgba(15, 23, 42, 0.12);
}

.hub-faq-v2 {
    background-color: #f8f9fa;
    background-image:
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

.hub-faq-v2__glow {
    background: rgba(37, 99, 235, 0.06);
}

.hub-faq-v2__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
    border-bottom: 1px dashed rgba(14, 165, 233, 0.45);
    padding-bottom: 0.1rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hub-faq-v2__footer-link:hover {
    color: #0369a1;
    border-color: rgba(3, 105, 161, 0.65);
}

.hub-faq-v2__footer-link--inline {
    margin-top: 1rem;
}

.hub-faq-v2__empty {
    padding: 3rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px dashed rgba(226, 232, 240, 0.95);
    background: #ffffff;
    text-align: center;
}

.hub-faq-v2__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.875rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1rem;
}

.hub-faq-v2__empty-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.hub-faq-v2__empty-desc {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
}

.integrations-headline-accent {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 55%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: 1.25rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    animation: trust-pulse-ring 3s ease-in-out infinite;
}

@keyframes trust-pulse-ring {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* ── marinOS Product Showcase (Homepage — Light) ── */
.marin-product-section {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse 70% 55% at 10% 0%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.marin-product-headline {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marin-product-shell {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 48px -16px rgba(15, 23, 42, 0.08);
}

.marin-product-mockup {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.12), 0 0 80px -20px rgba(37, 99, 235, 0.15);
}

.marin-bento-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marin-bento-card:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.08);
}

.marin-pricing-glass {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    transition: all 0.35s ease;
}

.marin-pricing-glass:hover {
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.1);
}

.marin-pricing-featured {
    background: linear-gradient(160deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 40px -10px rgba(37, 99, 235, 0.18);
}

.marin-pricing-trial {
    background: linear-gradient(160deg, rgba(236, 253, 245, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 0 32px -10px rgba(16, 185, 129, 0.15);
}

.marin-cta-band {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.1);
}

.marin-module-tab-light.module-tab:not(.active) {
    background: #f8fafc;
    border-color: rgba(226, 232, 240, 0.95);
    color: #64748b;
}

.marin-module-tab-light.module-tab:not(.active):hover {
    background: #eff6ff;
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.2);
}

.marin-module-tab-light.module-tab.active {
    background: white;
    color: #0f172a;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 4px 20px -4px rgba(37, 99, 235, 0.15);
}

.marin-module-panel-light {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

/* ── Minimal Hub Products Strip ── */
.hub-products-strip-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: white;
    transition: all 0.3s ease;
}

.hub-products-strip-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.hub-products-strip-card-tourism:hover {
    border-color: rgba(14, 165, 233, 0.35);
}

/* ── Contact & Newsletter (Homepage) ── */
.hub-ecosystem-section {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

.hub-contact-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 2rem;
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-contact-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.1);
}

.hub-newsletter-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #0f2744 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.hub-newsletter-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hub-newsletter-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hub-form-field {
    position: relative;
}

.hub-form-field-icon {
    position: absolute;
    left: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.8125rem;
    pointer-events: none;
    transition: color 0.25s ease;
}

.hub-form-field:focus-within .hub-form-field-icon {
    color: #2563eb;
}

.hub-form-input {
    width: 100%;
    padding: 0.9375rem 1.125rem 0.9375rem 2.75rem;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.25s ease;
}

.hub-form-input::placeholder {
    color: #94a3b8;
}

.hub-form-input:focus {
    outline: none;
    background: white;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.hub-form-field-icon-top {
    top: 1.125rem;
    transform: none;
}

.hub-form-textarea {
    padding-top: 0.9375rem;
    min-height: 5.5rem;
}

.hub-form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

.hub-form-select-chevron {
    position: absolute;
    right: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.6875rem;
    pointer-events: none;
}

.hub-form-input-dark {
    width: 100%;
    padding: 0.9375rem 1.125rem 0.9375rem 2.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    transition: all 0.25s ease;
}

.hub-form-input-dark::placeholder {
    color: #64748b;
}

.hub-form-input-dark:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.hub-contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hub-contact-meta-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 0.875rem;
    transition: all 0.25s ease;
}

.hub-contact-meta-item:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.2);
}

.hub-newsletter-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hub-newsletter-benefit-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 0.625rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.hub-ecosystem-headline-accent {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-ecosystem-v2 {
    background-color: #f8f9fa;
    background-image:
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

.hub-ecosystem-v2__glow {
    background: rgba(37, 99, 235, 0.06);
}

.hub-ecosystem-v2__contact {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
    .hub-ecosystem-v2__contact {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hub-ecosystem-v2__contact {
        padding: 3rem;
    }
}

.hub-ecosystem-v2__contact:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.1);
}

.hub-ecosystem-v2__contact-head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .hub-ecosystem-v2__contact-head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.hub-ecosystem-v2__contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.875rem;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1d4ed8;
}

.hub-ecosystem-v2__contact-badge i {
    font-size: 0.625rem;
}

.hub-ecosystem-v2__contact-title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.hub-ecosystem-v2__contact-desc {
    max-width: 28rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
}

.hub-ecosystem-v2__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #d1fae5;
    background: #ecfdf5;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #047857;
}

.hub-ecosystem-v2__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.hub-ecosystem-v2__meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 10rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.875rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hub-ecosystem-v2__meta-item:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.15);
}

.hub-ecosystem-v2__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.hub-ecosystem-v2__meta-icon--blue { background: #eff6ff; color: #2563eb; }
.hub-ecosystem-v2__meta-icon--violet { background: #f5f3ff; color: #7c3aed; }
.hub-ecosystem-v2__meta-icon--emerald { background: #ecfdf5; color: #059669; }

.hub-ecosystem-v2__meta-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.1rem;
}

.hub-ecosystem-v2__meta-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.hub-ecosystem-v2__address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.55;
}

.hub-ecosystem-v2__address i {
    margin-top: 0.15rem;
    color: #94a3b8;
}

.hub-ecosystem-v2__newsletter {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #0f2744 100%);
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.22);
}

@media (min-width: 768px) {
    .hub-ecosystem-v2__newsletter {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hub-ecosystem-v2__newsletter {
        padding: 3rem;
    }
}

.hub-ecosystem-v2__newsletter::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -18%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hub-ecosystem-v2__newsletter-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hub-ecosystem-v2__newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-ecosystem-v2__newsletter-badge i {
    color: #93c5fd;
    font-size: 0.625rem;
}

.hub-ecosystem-v2__newsletter-pill {
    padding: 0.3rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    background: rgba(37, 99, 235, 0.12);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #93c5fd;
}

.hub-ecosystem-v2__newsletter-title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.25;
    margin-bottom: 0.625rem;
}

.hub-ecosystem-v2__newsletter-desc {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.hub-ecosystem-v2__benefits {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hub-ecosystem-v2__benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hub-ecosystem-v2__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    font-size: 0.6875rem;
    flex-shrink: 0;
}

.hub-ecosystem-v2__benefit-icon--blue { background: rgba(37, 99, 235, 0.15); color: #93c5fd; }
.hub-ecosystem-v2__benefit-icon--emerald { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }
.hub-ecosystem-v2__benefit-icon--violet { background: rgba(139, 92, 246, 0.15); color: #c4b5fd; }

.hub-ecosystem-v2__benefit-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.15rem;
}

.hub-ecosystem-v2__benefit-desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.hub-ecosystem-v2__subscribe {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
}

.hub-ecosystem-v2__subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 0.875rem;
    background: #2563eb;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.55);
    transition: all 0.2s ease;
}

.hub-ecosystem-v2__subscribe-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.hub-ecosystem-v2__privacy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    line-height: 1.55;
}

.hub-ecosystem-v2__privacy i {
    margin-top: 0.1rem;
    font-size: 0.5625rem;
    opacity: 0.75;
}

.hub-ecosystem-v2__subscribers {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-ecosystem-v2__avatars {
    display: flex;
}

.hub-ecosystem-v2__avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: -0.4rem;
    border-radius: 9999px;
    border: 2px solid #1e293b;
    font-size: 0.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hub-ecosystem-v2__avatars span:first-child {
    margin-left: 0;
    background: #2563eb;
}

.hub-ecosystem-v2__avatars span:nth-child(2) {
    background: #0284c7;
}

.hub-ecosystem-v2__avatars span:nth-child(3) {
    background: #059669;
}

.hub-ecosystem-v2__subscribers p {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
}

.hub-ecosystem-v2__subscribers strong {
    font-weight: 700;
    color: #f8fafc;
}

.hub-ecosystem-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 0.875rem;
    background: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.45);
    transition: all 0.2s ease;
}

.hub-ecosystem-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.hub-ecosystem-v2 .platform-callback-form label {
    font-size: 0.75rem;
    color: #64748b;
}

/* ── marinOS Product Page ── */
.marin-hero-premium {
    background-color: #fafbfc;
    background-image:
        radial-gradient(ellipse 90% 70% at 85% 0%, rgba(37, 99, 235, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
}

.hero-glow-orb-marin-1 {
    background: rgba(37, 99, 235, 0.18);
}

.hero-glow-orb-marin-2 {
    background: rgba(59, 130, 246, 0.12);
}

.hero-headline-accent-marin {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 45%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta-primary-marin {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 12px 32px -8px rgba(37, 99, 235, 0.45),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.hero-cta-primary-marin:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 20px 40px -10px rgba(37, 99, 235, 0.5),
        0 0 0 1px rgba(37, 99, 235, 0.25);
}

.hero-service-pill-marin:hover {
    border-color: rgba(37, 99, 235, 0.3);
    color: #2563eb;
}

.marin-workflow-section {
    background-color: #0f172a;
    background-image:
        radial-gradient(ellipse 70% 55% at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

/* ── About Page ── */
.about-hero-premium {
    background-color: #fafbfc;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
}

.about-headline-accent {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 40%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 2rem;
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.1);
}

.about-vision-panel {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.35);
}

.about-timeline-item {
    position: relative;
    padding-left: 1.75rem;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.about-value-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.5rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

.about-product-link {
    display: block;
    border-radius: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-product-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12);
}

.about-product-link-tourism:hover {
    border-color: rgba(14, 165, 233, 0.35);
}

.about-product-link-marin:hover {
    border-color: rgba(37, 99, 235, 0.35);
}

.about-team-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-team-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.about-team-avatar {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: white;
}

.about-cta-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
    border-radius: 2.5rem;
    box-shadow: 0 32px 64px -16px rgba(37, 99, 235, 0.35);
}

/* ── Contact Page ── */
.contact-hero-premium {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse 75% 55% at 15% 0%, rgba(37, 99, 235, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 70%, rgba(14, 165, 233, 0.07) 0%, transparent 50%);
}

.contact-headline-accent {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-channels-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-channels-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.contact-form-section {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .contact-form-section {
        padding-top: 3rem;
        padding-bottom: 7rem;
    }
}

.contact-channel-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel-card > p:last-child {
    margin-top: auto;
    padding-top: 1rem;
}

.contact-channel-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

.contact-channel-card-active {
    border-color: rgba(37, 99, 235, 0.35);
    background: linear-gradient(145deg, #f8fafc 0%, #eff6ff 100%);
    box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.12);
}

.contact-intent-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: white;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-intent-chip:hover {
    border-color: rgba(37, 99, 235, 0.3);
    color: #2563eb;
}

.contact-intent-chip-active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-office-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-office-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.1);
}

.contact-office-map {
    background: linear-gradient(145deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    min-height: 10rem;
    position: relative;
    overflow: hidden;
}

.contact-office-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
}

.contact-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5);
}

.contact-map-pin::after {
    content: '';
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(241, 245, 249, 0.95);
}

.contact-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-row:first-child {
    padding-top: 0;
}

/* ── Contact Page v2 (aligned with hub-trust / hub-ecosystem) ── */
.contact-page-v2__hero {
    background-color: #f8f9fa;
    background-image:
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

.contact-page-v2__hero-glow {
    background: rgba(37, 99, 235, 0.06);
}

.contact-page-v2__hero-actions {
    margin-top: 2rem;
}

.contact-page-v2__office--horizontal {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact-page-v2__office--horizontal {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

.contact-page-v2__office-map-wrap {
    position: relative;
    min-height: 16rem;
    background: #e2e8f0;
}

@media (min-width: 1024px) {
    .contact-page-v2__office-map-wrap {
        min-height: 100%;
    }
}

.contact-page-v2__office-map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 16rem;
    border: 0;
}

@media (min-width: 1024px) {
    .contact-page-v2__office-map-iframe {
        min-height: 22rem;
    }
}

.contact-page-v2__office-body--horizontal {
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-page-v2__office-body--horizontal {
        padding: 2.5rem 3rem;
    }
}

.contact-page-v2__office-grid {
    display: grid;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .contact-page-v2__office-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem 1.5rem;
    }
}

.contact-page-v2__office-label {
    margin-bottom: 0.2rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-form-v2__newsletter--compact {
    gap: 1rem;
}

@media (min-width: 1024px) {
    .contact-form-v2__newsletter--compact {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .contact-form-v2__newsletter--compact .contact-form-v2__newsletter-copy {
        flex: 1 1 auto;
        max-width: 28rem;
    }

    .contact-form-v2__newsletter--compact .contact-form-v2__subscribe {
        flex: 0 0 auto;
        min-width: 20rem;
        margin-top: 0;
    }

    .contact-form-v2__newsletter--compact .contact-form-v2__newsletter-privacy {
        display: none;
    }
}

.contact-page-v2__channel {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.contact-page-v2__channel:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -18px rgba(15, 23, 42, 0.12);
}

.contact-page-v2__channel--active {
    border-color: rgba(37, 99, 235, 0.28);
    background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 12px 32px -12px rgba(37, 99, 235, 0.14);
}

.contact-page-v2__channel .hub-trust-v2__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    font-size: 0.9375rem;
}

.contact-page-v2__channel-email {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-page-v2__channel-email--blue { color: #2563eb; }
.contact-page-v2__channel-email--emerald { color: #059669; }
.contact-page-v2__channel-email--violet { color: #7c3aed; }

.contact-page-v2__office {
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-v2__office:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.1);
}

.contact-page-v2__office-map {
    background: linear-gradient(145deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    min-height: 10rem;
    position: relative;
    overflow: hidden;
}

.contact-page-v2__office-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
}

.contact-page-v2__office-body {
    padding: 1.5rem 2rem 2rem;
}

.contact-page-v2__office-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-page-v2__office-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.contact-page-v2__office-row {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-page-v2__office-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-page-v2__office-row .hub-trust-v2__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.contact-page-v2__office-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
}

.contact-page-v2__office-sub {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
}

.contact-page-v2__office-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
}

.contact-page-v2__office-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.hub-ecosystem-v2 .contact-intent-chip {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* ── Contact Form v2 ── */
.contact-form-v2 {
    background-color: #f8f9fa;
    background-image:
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

.contact-form-v2__glow {
    background: rgba(37, 99, 235, 0.06);
}

.contact-form-v2__aside {
    background: #ffffff;
}

.contact-form-v2__aside-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-v2__aside-title {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1e293b;
}

.contact-form-v2__aside-lead {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.contact-form-v2__metric {
    padding: 1rem 0.75rem;
}

.contact-form-v2__metric .hub-trust-v2__metric-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.contact-form-v2__metric .hub-trust-v2__metric-value {
    font-size: 1.125rem;
}

.contact-form-v2__expert-panel {
    position: relative;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(30, 58, 138, 0.22);
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 58%, #172554 100%);
    overflow: hidden;
}

.contact-form-v2__expert-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.22);
    filter: blur(32px);
    pointer-events: none;
}

.contact-form-v2__expert-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}

.contact-form-v2__expert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: #93c5fd;
    font-size: 0.875rem;
}

.contact-form-v2__expert-pill {
    display: inline-flex;
    align-items: center;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background: rgba(37, 99, 235, 0.12);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #bfdbfe;
}

.contact-form-v2__expert-quote {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.65;
    color: #cbd5e1;
}

.contact-form-v2__expert-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-form-v2__expert-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.45);
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
}

.contact-form-v2__expert-tags i {
    font-size: 0.55rem;
    color: #60a5fa;
}

.contact-form-v2__direct {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.contact-form-v2__direct-label {
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-form-v2__direct-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-form-v2__direct-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.875rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    text-decoration: none;
}

.contact-form-v2__direct-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 20px -14px rgba(15, 23, 42, 0.18);
}

.contact-form-v2__direct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.contact-form-v2__direct-icon--blue { background: #eff6ff; color: #2563eb; }
.contact-form-v2__direct-icon--emerald { background: #ecfdf5; color: #059669; }

.contact-form-v2__direct-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.contact-form-v2__direct-title {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-form-v2__direct-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    word-break: break-word;
}

.contact-form-v2__aside-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.contact-form-v2__aside-meta-item {
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    text-align: center;
}

.contact-form-v2__aside-meta-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.contact-form-v2__aside-meta-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-form-v2__steps {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.contact-form-v2__steps-title {
    margin-bottom: 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-form-v2__steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-form-v2__step {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contact-form-v2__step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563eb;
}

.contact-form-v2__step-copy {
    min-width: 0;
    padding-top: 0.1rem;
}

.contact-form-v2__step-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

.contact-form-v2__step-desc {
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.45;
}

.contact-form-v2__card-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .contact-form-v2__card-head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.contact-form-v2__card-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}

.contact-form-v2__card-desc {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
}

.contact-form-v2__intent {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .contact-form-v2__intent {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.contact-form-v2__intent-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f8fafc;
    text-align: left;
    cursor: pointer;
}

.contact-form-v2__intent-btn:hover {
    border-color: rgba(37, 99, 235, 0.22);
    background: #ffffff;
}

.contact-form-v2__intent-btn--active {
    border-color: rgba(37, 99, 235, 0.35);
    background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 8px 24px -12px rgba(37, 99, 235, 0.2);
}

.contact-form-v2__intent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.625rem;
    font-size: 0.75rem;
}

.contact-form-v2__intent-icon--blue { background: #eff6ff; color: #2563eb; }
.contact-form-v2__intent-icon--emerald { background: #ecfdf5; color: #059669; }
.contact-form-v2__intent-icon--violet { background: #f5f3ff; color: #7c3aed; }
.contact-form-v2__intent-icon--amber { background: #fffbeb; color: #d97706; }

.contact-form-v2__intent-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.contact-form-v2__intent-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.contact-form-v2__intent-desc {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
}

.contact-form-v2__intent-btn--active .contact-form-v2__intent-title {
    color: #1d4ed8;
}

.contact-form-v2__newsletter-pill {
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-form-v2__subscribe {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .contact-form-v2__subscribe {
        flex-direction: row;
        align-items: flex-end;
    }

    .contact-form-v2__subscribe .tourism-contact-v2__field {
        flex: 1;
        margin-bottom: 0;
    }
}

.contact-form-v2__subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.25rem;
    border: none;
    border-radius: 0.875rem;
    background: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.45);
    white-space: nowrap;
}

.contact-form-v2__subscribe-btn:hover {
    background: #1d4ed8;
}

.contact-form-v2 .platform-callback-form-message {
    margin-top: 0.25rem;
}

.contact-form-v2 .platform-callback-form-message.is-success,
.contact-form-v2 .platform-callback-form-message:not(.hidden):not(.text-rose-600) {
    color: #059669;
}

.platform-callback-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ── Legal / KVKK Pages ── */
.legal-hero-premium {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 55%);
}

.legal-doc-layout {
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .legal-doc-layout {
        padding-bottom: 7rem;
    }
}

.legal-toc-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) {
    .legal-toc-card {
        position: sticky;
        top: 6.5rem;
        max-height: calc(100vh - 8rem);
        overflow-y: auto;
    }
}

.legal-toc-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
}

.legal-toc-link:hover {
    background: #f8fafc;
    color: #2563eb;
}

.legal-toc-link-active {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 700;
}

.legal-content-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .legal-content-card {
        padding: 2.5rem 3rem;
    }
}

.legal-content-card h2 {
    scroll-margin-top: 6.5rem;
}

.legal-section + .legal-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(241, 245, 249, 0.95);
}

.legal-prose p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.legal-prose p:last-child {
    margin-bottom: 0;
}

.legal-prose ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.legal-prose ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.legal-prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #2563eb;
}

.legal-info-box {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}

.legal-info-box dt {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.legal-info-box dd {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1rem;
}

.legal-info-box dd:last-child {
    margin-bottom: 0;
}

.legal-rights-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .legal-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.legal-right-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.5;
}

.legal-right-item i {
    color: #2563eb;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.legal-toc-related {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(241, 245, 249, 0.95);
}

.legal-toc-related-title {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.legal-toc-related a {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

.legal-toc-related a:hover {
    color: #2563eb;
}

/* ── Hub Footer v3 ── */
.hub-footer-v3 {
    position: relative;
    overflow: hidden;
    background: #070b12;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hub-footer-v3__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hub-footer-v3__grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
}

.hub-footer-v3__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.hub-footer-v3__glow--left {
    top: -120px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: rgba(37, 99, 235, 0.14);
}

.hub-footer-v3__glow--right {
    bottom: -160px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: rgba(14, 165, 233, 0.1);
}

.hub-footer-v3__inner {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 1.5rem;
}

@media (min-width: 640px) {
    .hub-footer-v3__inner {
        padding: 0 1.5rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .hub-footer-v3__inner {
        padding: 0 2rem 2rem;
    }
}

.hub-footer-v3__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
    .hub-footer-v3__cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 3.5rem;
        padding: 1.75rem 2rem;
    }
}

.hub-footer-v3__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-footer-v3__eyebrow-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.hub-footer-v3__cta-title {
    margin: 0;
    max-width: 36rem;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #e2e8f0;
}

@media (min-width: 768px) {
    .hub-footer-v3__cta-title {
        font-size: 1.125rem;
    }
}

.hub-footer-v3__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    border-radius: 0.875rem;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 24px -12px rgba(255, 255, 255, 0.35);
}

.hub-footer-v3__cta-btn:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    box-shadow: 0 12px 28px -10px rgba(255, 255, 255, 0.4);
}

.hub-footer-v3__cta-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.hub-footer-v3__cta-btn:hover i {
    transform: translateX(2px);
}

.hub-footer-v3__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 1024px) {
    .hub-footer-v3__body {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
        gap: 4rem;
        align-items: start;
    }
}

.hub-footer-v3__brand {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.hub-footer-v3__logo-link {
    display: inline-flex;
    width: fit-content;
    transition: opacity 0.2s ease;
}

.hub-footer-v3__logo-link:hover {
    opacity: 0.88;
}

.hub-footer-v3__logo {
    display: block;
    width: auto;
    max-width: 10rem;
    height: 2.375rem;
    object-fit: contain;
}

.hub-footer-v3__logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f8fafc;
}

.hub-footer-v3__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.hub-footer-v3__stats-sep {
    width: 3px;
    height: 3px;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.45);
}

.hub-footer-v3__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hub-footer-v3__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-size: 0.8125rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hub-footer-v3__social:hover {
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.hub-footer-v3__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.75rem;
}

@media (min-width: 640px) {
    .hub-footer-v3__columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 2.5rem;
    }
}

.hub-footer-v3__col-title {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #f1f5f9;
}

.hub-footer-v3__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hub-footer-v3__link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hub-footer-v3__link:hover {
    color: #f8fafc;
}

.hub-footer-v3__link--muted {
    color: #64748b;
    cursor: default;
}

.hub-footer-v3__bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 768px) {
    .hub-footer-v3__bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hub-footer-v3__copy {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.hub-footer-v3__powered {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #64748b;
}

.hub-footer-v3__powered-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(135deg, #93c5fd 0%, #ffffff 45%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.25s ease, transform 0.2s ease, filter 0.2s ease;
}

.hub-footer-v3__powered-link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #bae6fd 40%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(1.15);
    transform: translateY(-1px);
}

/* Legacy footer aliases */
.hub-footer-v2,
.hub-footer-premium {
    background-color: #0f172a;
    color: #94a3b8;
}

.hub-footer-brand:hover {
    opacity: 0.92;
}

.hub-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.hub-footer-link:hover {
    color: #f8fafc;
}

.hub-footer-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    transition: all 0.25s ease;
}

.hub-footer-social:hover {
    background: #2563eb;
    border-color: transparent;
    color: white;
}

.hub-footer-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbd5e1;
}

/* ── Blog Pages ── */
.blog-hero-premium {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse 70% 55% at 20% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 95% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
}

.blog-layout-section {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .blog-layout-section {
        padding-top: 3rem;
        padding-bottom: 7rem;
    }
}

.hub-latest-blogs .blog-post-card {
    height: 100%;
}

.blog-post-card {
    display: block;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-post-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 18px 36px -12px rgba(15, 23, 42, 0.12);
    transform: translateY(-3px);
}

.blog-cover-placeholder {
    aspect-ratio: 16/9;
    background:
        linear-gradient(135deg, rgba(30, 64, 175, 0.92) 0%, rgba(37, 99, 235, 0.9) 55%, rgba(14, 165, 233, 0.88) 100%);
}

.blog-sidebar-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

@media (min-width: 1024px) {
    .blog-sidebar-sticky {
        position: sticky;
        top: 6.5rem;
    }
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f8fafc;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.blog-rich-content p {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
}

.blog-rich-content h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 900;
    color: #0f172a;
    margin-top: 2.2rem;
    margin-bottom: 0.9rem;
    scroll-margin-top: 6.5rem;
}

.blog-rich-content ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.blog-rich-content ul li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.45rem;
    color: #475569;
    line-height: 1.7;
}

.blog-rich-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: #2563eb;
}

.blog-pagination-wrap {
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.blog-pagination-meta {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 1rem;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: white;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #64748b;
    transition: all 0.25s ease;
    cursor: pointer;
}

.blog-pagination-btn:hover:not(:disabled):not(.blog-pagination-btn-active) {
    border-color: rgba(37, 99, 235, 0.3);
    color: #2563eb;
    background: #f8fafc;
}

.blog-pagination-btn:disabled,
.blog-pagination-btn.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-pagination-btn-active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.45);
}

.blog-pagination-btn-nav {
    padding: 0 1rem;
    gap: 0.375rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-pagination-ellipsis {
    min-width: 2rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #cbd5e1;
    user-select: none;
}

/* Skip link — erişilebilirlik & SEO landmark */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #0f172a;
    color: white;
    font-size: 0.8125rem;
    font-weight: 800;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .campaign-popup,
    .campaign-popup-panel,
    .reveal,
    .hub-cta-primary,
    .blog-post-card {
        transition: none !important;
        animation: none !important;
    }
}

/* Campaign popup — premium */
.campaign-popup {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.campaign-popup.campaign-popup-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.campaign-popup.hidden {
    display: none;
}

.campaign-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(10px);
}

.campaign-popup-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 52rem;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.03),
        0 24px 64px -24px rgba(15, 23, 42, 0.35),
        0 0 80px -32px rgba(37, 99, 235, 0.18);
    overflow: hidden;
    transform: translateY(1rem) scale(0.98);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-popup-open .campaign-popup-panel {
    transform: translateY(0) scale(1);
}

.campaign-popup-close {
    position: absolute;
    top: 1.125rem;
    right: 1.125rem;
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #64748b;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.2);
    transition: all 0.25s ease;
}

.campaign-popup-close:hover {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.campaign-popup-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .campaign-popup-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .campaign-popup-close {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.22);
        color: rgba(255, 255, 255, 0.85);
        box-shadow: none;
    }

    .campaign-popup-close:hover {
        background: rgba(255, 255, 255, 0.22);
        color: white;
    }
}

.campaign-popup-visual {
    position: relative;
    min-height: 280px;
    padding: 2.25rem 2rem 2rem;
    background: linear-gradient(155deg, #0f172a 0%, #1e3a8a 38%, #2563eb 72%, #1d4ed8 100%);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.campaign-popup-visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, black 20%, transparent 95%);
}

.campaign-popup-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.campaign-popup-orb-1 {
    top: -25%;
    right: -15%;
    width: 280px;
    height: 280px;
    background: rgba(96, 165, 250, 0.45);
    filter: blur(56px);
}

.campaign-popup-orb-2 {
    bottom: -30%;
    left: -20%;
    width: 240px;
    height: 240px;
    background: rgba(14, 165, 233, 0.28);
    filter: blur(48px);
}

.campaign-popup-visual-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.campaign-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.campaign-popup-badge-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.8);
    animation: campaign-pulse 2s ease-in-out infinite;
}

@keyframes campaign-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.85); }
}

.campaign-popup-callback-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.35);
}

.campaign-popup-visual-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: white;
    margin: 0 0 0.45rem;
}

.campaign-popup-visual-caption {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(191, 219, 254, 0.88);
    margin: 0 0 1.25rem;
}

.campaign-popup-visual-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.campaign-popup-visual-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    width: fit-content;
}

.campaign-popup-visual-list i {
    font-size: 0.625rem;
    color: rgba(147, 197, 253, 0.95);
}

.campaign-popup-body {
    padding: 1.75rem 1.5rem 1.25rem;
    background: #f8fafc;
}

@media (min-width: 768px) {
    .campaign-popup-body {
        padding: 2rem 2rem 1.5rem;
    }
}

.campaign-popup-head {
    margin-bottom: 1.25rem;
}

.campaign-popup-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #2563eb;
}

.campaign-popup-eyebrow::before {
    content: '';
    width: 1rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
}

.campaign-popup-body h2 {
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.03em;
    margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
    .campaign-popup-body h2 {
        font-size: 1.5rem;
    }
}

.campaign-popup-lead {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

.campaign-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.campaign-popup-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 480px) {
    .campaign-popup-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.campaign-popup-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.campaign-popup-field--full {
    grid-column: 1 / -1;
}

.campaign-popup-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #475569;
}

.campaign-popup-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.campaign-popup-input-icon {
    position: absolute;
    left: 0.875rem;
    font-size: 0.75rem;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.2s ease;
}

.campaign-popup-input-wrap:focus-within .campaign-popup-input-icon {
    color: #2563eb;
}

.campaign-popup-input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 2.35rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.campaign-popup-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.campaign-popup-input:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.campaign-popup-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.55;
    color: #64748b;
    cursor: pointer;
}

.campaign-popup-kvkk input {
    margin-top: 0.12rem;
    width: 0.9rem;
    height: 0.9rem;
    accent-color: #2563eb;
    flex-shrink: 0;
}

.campaign-popup-kvkk a {
    color: #2563eb;
    font-weight: 600;
}

.campaign-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: white;
    cursor: pointer;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    box-shadow: 0 10px 28px -8px rgba(37, 99, 235, 0.45);
    transition: all 0.25s ease;
}

.campaign-popup-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -8px rgba(37, 99, 235, 0.5);
}

.campaign-popup-cta i {
    font-size: 0.7rem;
    opacity: 0.9;
}

.campaign-popup-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.campaign-popup-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.campaign-popup-ghost:hover {
    color: #475569;
}

.campaign-popup-dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    cursor: pointer;
    user-select: none;
}

.campaign-popup-dismiss input {
    width: 0.9rem;
    height: 0.9rem;
    accent-color: #2563eb;
}

@media (max-width: 767px) {
    .campaign-popup-panel {
        max-height: min(92vh, 52rem);
        overflow-y: auto;
        border-radius: 1.25rem;
    }

    .campaign-popup-visual {
        min-height: 200px;
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .campaign-popup-callback-icon {
        width: 3.75rem;
        height: 3.75rem;
        margin-bottom: 1rem;
        border-radius: 1rem;
        font-size: 1.35rem;
    }

    .campaign-popup-visual-title {
        font-size: 1.25rem;
    }

    .campaign-popup-visual-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Changelog page — split layout, full viewport shell */
html:has(.changelog-page),
html:has(.changelog-page) body {
    background: #020617;
}

.changelog-page ~ .hub-footer-v3 {
    display: none;
}

.changelog-page {
    --changelog-header-offset: 0;
    --changelog-date-color: #ffffff;
    --changelog-axis-color: rgba(96, 165, 250, 0.28);
    --changelog-tick-color: rgba(96, 165, 250, 0.5);
    width: 100%;
    min-height: 100dvh;
    background: #020617;
}

@media (min-width: 1024px) {
    .changelog-page {
        display: block;
        height: 100dvh;
        max-height: 100dvh;
        min-height: 100dvh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .changelog-page__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
        align-items: stretch;
        width: 100%;
        min-height: 100dvh;
        height: auto;
        overflow: visible;
    }

    .changelog-page__aside {
        grid-column: 1;
        grid-row: 1;
    }

    .changelog-page__axis {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        width: 1px;
        height: auto;
        min-height: 0;
        background: var(--changelog-axis-color);
        pointer-events: none;
        z-index: 5;
    }

    .changelog-page__feed {
        grid-column: 3;
        grid-row: 1;
    }
}

.changelog-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100dvh;
}

@media (min-width: 1024px) {
    html:has(.changelog-page),
    html:has(.changelog-page) body {
        height: 100%;
        overflow: hidden;
    }
}

.changelog-page__aside {
    background: #020617;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
    .changelog-page__aside {
        position: sticky;
        top: 0;
        align-self: start;
        height: 100dvh;
        min-height: 100dvh;
        overflow-y: auto;
        border-bottom: none;
        border-right: none;
        z-index: 1;
    }
}

.changelog-page__aside-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, black 0%, transparent 88%);
    pointer-events: none;
}

.changelog-page__aside-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(64px);
}

.changelog-page__aside-orb--1 {
    top: -18%;
    right: -12%;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.18);
}

.changelog-page__aside-orb--2 {
    bottom: 8%;
    left: -16%;
    width: 280px;
    height: 280px;
    background: rgba(14, 165, 233, 0.1);
}

.changelog-page__aside::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.35) 0%,
        rgba(2, 6, 23, 0.72) 42%,
        rgba(2, 6, 23, 0.96) 100%
    );
    pointer-events: none;
}

.changelog-page__aside-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.5rem;
    min-height: 100%;
    padding: 2rem clamp(1.25rem, 4vw, 2rem) 2rem;
}

@media (min-width: 1024px) {
    .changelog-page__aside-inner {
        min-height: 100dvh;
        padding:
            clamp(2.5rem, 5vh, 3.5rem)
            clamp(3.25rem, 6vw, 5.25rem)
            clamp(2rem, 3vh, 2.5rem)
            clamp(2.5rem, 5vw, 4rem);
    }
}

.changelog-page__aside-top {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    width: 100%;
}

.changelog-page__aside-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
    .changelog-page__aside-top,
    .changelog-page__aside-bottom {
        max-width: none;
        padding-right: 0;
    }
}

.changelog-page__header {
    margin: 0;
}

.changelog-page__brand {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.changelog-page__brand:hover {
    opacity: 0.88;
}

.changelog-page__logo {
    height: 2.125rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.changelog-page__brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.changelog-page__intro {
    display: flex;
    flex-direction: column;
}

.changelog-page__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.45rem;
    margin-bottom: 1.125rem;
    padding: 0.35rem 0.75rem 0.35rem 0.55rem;
    border-radius: 9999px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.18);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(191, 219, 254, 0.92);
    backdrop-filter: blur(8px);
}

.changelog-page__eyebrow-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.65);
}

.changelog-page__title {
    font-size: clamp(2.125rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.05;
    color: #f8fafc;
    margin: 0 0 1rem;
}

.changelog-page__lead {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(148, 163, 184, 0.95);
    margin: 0;
}

.changelog-page__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1.25rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.88);
}

.changelog-page__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.625rem;
    background: rgba(37, 99, 235, 0.12);
    color: #93c5fd;
    font-size: 0.75rem;
}

.changelog-page__subscribe {
    margin-top: 0;
    padding-top: 0;
}

.changelog-page__subscribe-card {
    padding: 1.125rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 40px -24px rgba(0, 0, 0, 0.45);
}

.changelog-page__subscribe-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.changelog-page__subscribe-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.14);
    color: #93c5fd;
    font-size: 0.875rem;
}

.changelog-page__subscribe-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 0.2rem;
}

.changelog-page__subscribe-desc {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(148, 163, 184, 0.92);
    margin: 0;
}

.changelog-page__subscribe-form {
    display: block;
}

.changelog-page__subscribe-field {
    display: flex;
    align-items: stretch;
    gap: 0.375rem;
    padding: 0.3125rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.changelog-page__subscribe-field:focus-within {
    border-color: rgba(96, 165, 250, 0.42);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.changelog-page__subscribe-input {
    flex: 1;
    min-width: 0;
    padding: 0.6875rem 0.75rem;
    border: none;
    border-radius: 0.625rem;
    background: transparent;
    color: #f8fafc;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.changelog-page__subscribe-input::placeholder {
    color: rgba(100, 116, 139, 0.95);
}

.changelog-page__subscribe-input:focus {
    outline: none;
    box-shadow: none;
}

.changelog-page__subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.6875rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #f8fafc;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 20px -14px rgba(0, 0, 0, 0.55);
}

.changelog-page__subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 10px 24px -14px rgba(0, 0, 0, 0.5);
}

.changelog-page__subscribe-btn i {
    font-size: 0.75rem;
    opacity: 0.9;
}

.changelog-page__subscribe-note {
    margin: 0.75rem 0 0;
    font-size: 0.6875rem;
    line-height: 1.5;
    color: rgba(100, 116, 139, 0.95);
}

.changelog-page__footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.changelog-page__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.88);
    border-bottom: 1px dashed transparent;
    transition: all 0.2s ease;
}

.changelog-page__footer-link i {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.85);
    transition: color 0.2s ease;
}

.changelog-page__footer-link:hover {
    color: #f8fafc;
    border-bottom-color: rgba(147, 197, 253, 0.45);
}

.changelog-page__footer-link:hover i {
    color: #93c5fd;
}

.changelog-page__footer-sep {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.55);
}

.changelog-page__aside-credit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    font-size: 0.6875rem;
    color: rgba(100, 116, 139, 0.88);
    letter-spacing: 0.01em;
}

.changelog-page__aside-credit span:first-child {
    color: rgba(148, 163, 184, 0.95);
    font-weight: 600;
}

.changelog-page__feed {
    background: #030712;
    min-height: 100dvh;
}

@media (min-width: 1024px) {
    .changelog-page__feed {
        position: relative;
        z-index: 2;
        min-height: 100dvh;
        height: auto;
        overflow: visible;
    }
}

.changelog-page__feed-inner {
    width: 100%;
    max-width: none;
    padding: 2rem clamp(1.25rem, 4vw, 2rem) 3rem;
    margin: 0;
}

@media (min-width: 768px) {
    .changelog-page__feed-inner {
        padding: 2.25rem clamp(1.5rem, 4vw, 2.5rem) 3.5rem;
    }
}

@media (min-width: 1024px) {
    .changelog-page__feed-inner {
        padding:
            clamp(2.5rem, 5vh, 3.5rem)
            clamp(2.5rem, 5vw, 4.5rem)
            clamp(3rem, 6vh, 4.5rem)
            0;
    }
}

.changelog-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.changelog-entry {
    position: relative;
    padding-bottom: 2.75rem;
}

@media (min-width: 1024px) {
    .changelog-entry {
        padding-bottom: 3.25rem;
    }
}

.changelog-entry:last-child {
    padding-bottom: 0;
}

.changelog-entry::after {
    content: '';
    position: absolute;
    top: 0.65rem;
    height: 1px;
    background: var(--changelog-tick-color);
}

@media (min-width: 1024px) {
    .changelog-entry::after {
        left: 0;
        width: 1.125rem;
        transform: translateX(-100%);
    }
}

.changelog-entry__date-col {
    position: relative;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .changelog-entry__date-col {
        position: absolute;
        top: 0.125rem;
        left: 0;
        margin-bottom: 0;
        transform: translateX(calc(-100% - 1.125rem));
        z-index: 6;
        pointer-events: none;
    }
}

.changelog-page__feed time,
.changelog-entry__date {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--changelog-date-color);
    text-align: right;
    line-height: 1.35;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .changelog-entry__date {
        font-size: 0.8125rem;
        margin-right: 0.4rem;
    }
}

.changelog-entry__card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

@media (min-width: 1024px) {
    .changelog-entry__card {
        padding-left: clamp(2rem, 3.5vw, 3rem);
        max-width: 44rem;
    }
}

.changelog-entry__title {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f8fafc;
    margin: 0 0 0.875rem;
    line-height: 1.2;
}

.changelog-entry__body {
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.changelog-entry__body.is-collapsed {
    max-height: 16rem;
    mask-image: linear-gradient(180deg, #000 72%, transparent);
}

.changelog-entry__body.is-expanded {
    mask-image: none;
}

.changelog-entry__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.875rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #93c5fd;
    cursor: pointer;
    border-bottom: 1px dashed rgba(147, 197, 253, 0.35);
    transition: color 0.2s ease;
}

.changelog-entry__toggle:hover {
    color: #bfdbfe;
}

.changelog-prose {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #94a3b8;
}

.changelog-prose h2,
.changelog-prose h3 {
    color: #e2e8f0;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
}

.changelog-prose h2 { font-size: 1.05rem; }
.changelog-prose h3 { font-size: 0.95rem; }

.changelog-prose p {
    margin: 0 0 0.875rem;
}

.changelog-prose ul,
.changelog-prose ol {
    margin: 0 0 0.875rem;
    padding-left: 1.25rem;
}

.changelog-prose li {
    margin-bottom: 0.35rem;
}

.changelog-prose a {
    color: #93c5fd;
    font-weight: 600;
}

.changelog-prose strong {
    color: #e2e8f0;
    font-weight: 600;
}

.changelog-empty {
    text-align: center;
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.changelog-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.875rem;
    background: rgba(37, 99, 235, 0.12);
    color: #93c5fd;
    font-size: 1.125rem;
}

.changelog-empty__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 0.35rem;
}

.changelog-empty__desc {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 1023px) {
    .changelog-page {
        display: flex;
        flex-direction: column;
    }

    .changelog-page__layout {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 100dvh;
    }

    .changelog-page__feed {
        flex: 1 1 auto;
    }

    .changelog-page__axis {
        display: none;
    }

    .changelog-timeline::before {
        content: '';
        position: absolute;
        left: 0.75rem;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--changelog-axis-color);
    }

    .changelog-entry {
        padding-left: 2rem;
    }

    .changelog-entry::after {
        left: 0.75rem;
        width: 0.875rem;
        transform: none;
    }

    .changelog-page__feed time,
    .changelog-entry__date {
        text-align: left;
    }
}

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

/* Auth Pages */
.auth-page {
    --auth-nav-height: 5rem;
    background: #f8fafc;
    color: #475569;
}

.auth-layout {
    min-height: 100dvh;
}

.auth-brand-panel {
    position: relative;
    display: none;
    overflow: hidden;
    background:
        linear-gradient(145deg, #0f172a 0%, #1e3a8a 42%, #1d4ed8 100%);
    color: white;
}

@media (min-width: 1024px) {
    .auth-brand-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        min-height: 100dvh;
        padding: calc(var(--auth-nav-height) + 2rem) 3rem 2.5rem;
        text-align: center;
    }
}

.auth-brand-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.auth-brand-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
}

.auth-brand-orb-1 {
    top: -4rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    background: rgba(14, 165, 233, 0.22);
}

.auth-brand-orb-2 {
    bottom: -5rem;
    left: -3rem;
    width: 16rem;
    height: 16rem;
    background: rgba(37, 99, 235, 0.28);
}

.auth-brand-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 28rem;
}

.auth-brand-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.98;
    margin-bottom: 1rem;
}

.auth-brand-title em {
    font-style: italic;
    color: #93c5fd;
}

.auth-brand-lead {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.88);
    font-weight: 500;
    margin-bottom: 2rem;
}

.auth-brand-features {
    display: grid;
    gap: 0.875rem;
    text-align: left;
}

.auth-brand-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.auth-brand-feature i {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.auth-brand-feature strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.15rem;
}

.auth-brand-feature span {
    font-size: 0.75rem;
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.45;
}

.auth-brand-footer {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 28rem;
}

.auth-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.92);
}

.auth-form-shell {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow-y: auto;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: calc(var(--auth-nav-height) + 1.25rem) 1.25rem 1.5rem;
}

@media (min-width: 640px) {
    .auth-main {
        padding: calc(var(--auth-nav-height) + 1.5rem) 2rem 2rem;
    }
}

@media (min-width: 1024px) {
    .auth-main {
        padding: calc(var(--auth-nav-height) + 2rem) 2.5rem 2.5rem;
    }
}

.auth-card {
    width: 100%;
    max-width: 28rem;
}

@media (min-width: 1024px) {
    .auth-card {
        max-width: 34rem;
    }
}

.auth-card-panel {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.75rem;
    padding: 1.75rem;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 50px -24px rgba(15, 23, 42, 0.18);
}

@media (min-width: 640px) {
    .auth-card-panel {
        padding: 2rem 2rem 2.25rem;
    }
}

@media (min-width: 1024px) {
    .auth-card-panel {
        padding: 2.25rem 2.5rem 2.5rem;
    }
}

.auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1d4ed8;
    margin-bottom: 1rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.auth-lead {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .auth-form-row--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

.auth-form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.auth-form-field-group {
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.hub-form-field-toggle {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.hub-form-field-toggle:hover {
    color: #2563eb;
    background: #eff6ff;
}

.hub-form-field--password .hub-form-input {
    padding-right: 3rem;
}

.auth-form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
    font-weight: 500;
}

.auth-checkbox input {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    accent-color: #2563eb;
    flex-shrink: 0;
}

.auth-checkbox a {
    color: #2563eb;
    font-weight: 700;
}

.auth-checkbox a:hover {
    text-decoration: underline;
}

.auth-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563eb;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 1rem;
    background: #0f172a;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 16px 30px -18px rgba(15, 23, 42, 0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-submit:hover {
    background: #2563eb;
}

.auth-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.25rem 0;
}

.auth-divider--spaced {
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.auth-switch {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.auth-switch a {
    color: #2563eb;
    font-weight: 800;
}

.auth-footer {
    flex-shrink: 0;
    padding: 0 1.25rem 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .auth-footer {
        padding: 0 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .auth-footer {
        padding: 0 2.5rem 2rem;
    }
}

.auth-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 0.75rem;
}

.auth-footer-links a {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.auth-footer-links a:hover {
    color: #2563eb;
}

.auth-footer-copy {
    font-size: 0.6875rem;
    color: #cbd5e1;
    font-weight: 600;
}

.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 1rem;
}

.auth-alert i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.auth-alert--info {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1e40af;
}

.auth-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.auth-alert--warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #b45309;
}

.auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.auth-success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.auth-success-icon--info {
    background: #eff6ff;
    color: #2563eb;
}

.auth-success-icon--success {
    background: #ecfdf5;
    color: #059669;
}

.auth-success-icon--warning {
    background: #fffbeb;
    color: #d97706;
}

.auth-password-strength {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.auth-password-strength span {
    height: 0.25rem;
    border-radius: 9999px;
    background: #e2e8f0;
    transition: background 0.25s ease;
}

.auth-password-strength[data-level="1"] span:nth-child(-n+1) { background: #ef4444; }
.auth-password-strength[data-level="2"] span:nth-child(-n+2) { background: #f59e0b; }
.auth-password-strength[data-level="3"] span:nth-child(-n+3) { background: #2563eb; }
.auth-password-strength[data-level="4"] span:nth-child(-n+4) { background: #059669; }

.auth-password-hint {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 0.35rem;
}

.auth-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.auth-resend button {
    border: none;
    background: none;
    color: #2563eb;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

.auth-resend button:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.auth-steps {
    display: grid;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
}

.auth-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.auth-step-num {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.6875rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-step p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #475569;
    font-weight: 500;
}

.auth-step strong {
    color: #0f172a;
    font-weight: 800;
}

.auth-otp {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.auth-otp__digit {
    width: 2.75rem;
    height: 3.25rem;
    padding: 0;
    border-radius: 0.875rem;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-otp__digit:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

@media (max-width: 380px) {
    .auth-otp {
        gap: 0.35rem;
    }

    .auth-otp__digit {
        width: 2.35rem;
        height: 2.85rem;
        font-size: 1.0625rem;
    }
}

/* Account console */
.account-page {
    --account-header-height: 4rem;
    background: #eef2f7;
    color: #475569;
    font-family: 'Inter', sans-serif;
}

.hub-account-shell {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100dvh;
}

.hub-account-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--account-header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.94) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px -28px rgba(15, 23, 42, 0.65);
}

.hub-account-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
    max-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hub-account-header__inner {
        padding: 0 1.5rem;
    }
}

.hub-account-header__start,
.hub-account-header__end {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.hub-account-header__end {
    justify-content: flex-end;
}

.hub-account-header__menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-account-header__menu:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

@media (min-width: 1024px) {
    .hub-account-header__menu {
        display: none;
    }
}

.hub-account-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.hub-account-header__logo {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px -14px rgba(37, 99, 235, 0.85);
    flex-shrink: 0;
}

.hub-account-header__brand-text {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.hub-account-header__brand-text span {
    color: #93c5fd;
    font-weight: 300;
}

.hub-account-header__badge {
    display: none;
    padding: 0.3rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid rgba(147, 197, 253, 0.22);
    background: rgba(37, 99, 235, 0.14);
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bfdbfe;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hub-account-header__badge {
        display: inline-flex;
    }
}

.hub-account-header__link {
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border-radius: 0.7rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #cbd5e1;
    transition: background 0.2s ease, color 0.2s ease;
}

.hub-account-header__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

@media (min-width: 900px) {
    .hub-account-header__link {
        display: inline-flex;
    }
}

.hub-account-header__prefs,
.hub-account-header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 2.35rem;
    padding: 0 0.7rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e2e8f0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-account-header__icon-btn {
    width: 2.35rem;
    padding: 0;
}

.hub-account-header__prefs:hover,
.hub-account-header__icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hub-account-header__prefs span {
    display: none;
}

@media (min-width: 640px) {
    .hub-account-header__prefs span {
        display: inline;
    }
}

.hub-account-header__user-menu {
    position: relative;
    flex-shrink: 0;
}

.hub-account-header__notif-menu {
    position: relative;
    flex-shrink: 0;
}

.hub-account-header__notif-toggle {
    position: relative;
}

.hub-account-header__dropdown.is-open .hub-account-header__notif-toggle,
.hub-account-header__dropdown.is-open .hub-account-header__icon-btn.hub-account-header__notif-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hub-account-header__notif-badge {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: #ef4444;
    border: 1.5px solid #0f172a;
    color: #ffffff;
    font-size: 0.5625rem;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hub-account-header__notif-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 60;
    width: min(22rem, calc(100vw - 1.5rem));
    padding: 0.55rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow:
        0 4px 6px -2px rgba(15, 23, 42, 0.06),
        0 24px 48px -20px rgba(15, 23, 42, 0.22);
    transform-origin: top right;
    animation: hub-account-user-dropdown-in 0.2s ease;
}

.hub-account-header__notif-dropdown[hidden] {
    display: none;
}

.hub-account-header__notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0.55rem 0.65rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.35rem;
}

.hub-account-header__notif-title-bar {
    font-size: 0.8125rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hub-account-header__notif-mark {
    border: none;
    background: transparent;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #2563eb;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.hub-account-header__notif-mark:hover {
    color: #1d4ed8;
}

.hub-account-header__notif-list {
    display: grid;
    gap: 0.2rem;
    max-height: 18rem;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    overscroll-behavior: contain;
}

.hub-account-header__notif-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.65rem 0.55rem;
    border-radius: 0.75rem;
    transition: background 0.2s ease;
}

.hub-account-header__notif-item:hover {
    background: #f8fafc;
}

.hub-account-header__notif-item.is-unread {
    background: #f8fbff;
}

.hub-account-header__notif-item.is-unread:hover {
    background: #eff6ff;
}

.hub-account-header__notif-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hub-account-header__notif-icon--tourism {
    background: #f0f9ff;
    color: #0284c7;
}

.hub-account-header__notif-icon--billing {
    background: #fef3c7;
    color: #d97706;
}

.hub-account-header__notif-icon--team {
    background: #f1f5f9;
    color: #64748b;
}

.hub-account-header__notif-icon--marin {
    background: #eef2ff;
    color: #4f46e5;
}

.hub-account-header__notif-body {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.hub-account-header__notif-item-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.hub-account-header__notif-item.is-unread .hub-account-header__notif-item-title {
    color: #1e3a8a;
}

.hub-account-header__notif-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
}

.hub-account-header__notif-time {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-header__notif-item.is-unread .hub-account-header__notif-time::before {
    content: '';
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    margin-right: 0.35rem;
    border-radius: 9999px;
    background: #2563eb;
    vertical-align: middle;
}

.hub-account-header__notif-all {
    display: block;
    margin-top: 0.35rem;
    padding: 0.7rem 0.55rem 0.45rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    color: #2563eb;
    transition: color 0.2s ease;
}

.hub-account-header__notif-all:hover {
    color: #1d4ed8;
}

.hub-account-header__user {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.55rem 0.25rem 0.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-account-header__user:hover,
.hub-account-header__dropdown.is-open .hub-account-header__user {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.hub-account-header__avatar {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hub-account-header__avatar--lg {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.6875rem;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-color: transparent;
}

.hub-account-header__user-name {
    display: none;
    font-size: 0.75rem;
    font-weight: 800;
    color: #f8fafc;
}

.hub-account-header__user-caret {
    font-size: 0.5625rem;
    color: #94a3b8;
    transition: transform 0.22s ease, color 0.2s ease;
    flex-shrink: 0;
}

.hub-account-header__dropdown.is-open .hub-account-header__user-caret {
    transform: rotate(180deg);
    color: #bfdbfe;
}

@media (min-width: 640px) {
    .hub-account-header__user-name {
        display: inline;
    }
}

.hub-account-header__user-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 60;
    width: min(16.5rem, calc(100vw - 1.5rem));
    padding: 0.65rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow:
        0 4px 6px -2px rgba(15, 23, 42, 0.06),
        0 24px 48px -20px rgba(15, 23, 42, 0.22);
    transform-origin: top right;
    animation: hub-account-user-dropdown-in 0.2s ease;
}

.hub-account-header__user-dropdown[hidden] {
    display: none;
}

@keyframes hub-account-user-dropdown-in {
    from {
        opacity: 0;
        transform: translateY(-0.35rem) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hub-account-header__user-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.6rem 0.75rem;
}

.hub-account-header__user-meta {
    min-width: 0;
}

.hub-account-header__user-full {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.hub-account-header__user-email {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-account-header__user-list {
    display: grid;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hub-account-header__user-item,
.hub-account-header__user-logout {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.65rem;
    border-radius: 0.7rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    transition: background 0.2s ease, color 0.2s ease;
}

.hub-account-header__user-item i,
.hub-account-header__user-logout i {
    width: 1rem;
    text-align: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.hub-account-header__user-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.hub-account-header__user-item:hover i {
    color: #2563eb;
}

.hub-account-header__user-divider {
    height: 1px;
    margin: 0.35rem 0.25rem;
    background: #e2e8f0;
}

.hub-account-header__user-logout {
    color: #dc2626;
}

.hub-account-header__user-logout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.hub-account-header__user-logout:hover i {
    color: #dc2626;
}

.hub-account-workspace {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    overflow-x: clip;
}

@media (min-width: 1024px) {
    .hub-account-workspace {
        grid-template-columns: 16.25rem minmax(0, 1fr);
    }
}

.hub-account-sidebar__backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(2, 6, 23, 0.58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hub-account-sidebar__backdrop[hidden] {
    display: none;
}

.hub-account-sidebar {
    position: fixed;
    top: var(--account-header-height);
    left: 0;
    bottom: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: min(18rem, 88vw);
    max-width: 100%;
    min-width: 0;
    padding: 1.25rem 1rem 1.5rem;
    background:
        linear-gradient(180deg, #0f172a 0%, #172554 52%, #1e3a8a 100%);
    color: #e2e8f0;
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-x: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hub-account-sidebar::-webkit-scrollbar {
    display: none;
}

.hub-account-sidebar.is-open {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .hub-account-sidebar {
        position: sticky;
        top: var(--account-header-height);
        bottom: auto;
        align-self: start;
        height: calc(100dvh - var(--account-header-height));
        max-height: calc(100dvh - var(--account-header-height));
        width: 100%;
        max-width: 100%;
        min-width: 0;
        transform: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .hub-account-sidebar__nav {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hub-account-sidebar__nav::-webkit-scrollbar {
        display: none;
    }
}

.hub-account-sidebar__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hub-account-sidebar__orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(72px);
    pointer-events: none;
}

.hub-account-sidebar__orb--1 {
    top: -2rem;
    right: -2rem;
    width: 10rem;
    height: 10rem;
    background: rgba(14, 165, 233, 0.24);
}

.hub-account-sidebar__orb--2 {
    bottom: 4rem;
    left: -2.5rem;
    width: 9rem;
    height: 9rem;
    background: rgba(37, 99, 235, 0.3);
}

.hub-account-sidebar__top,
.hub-account-sidebar__nav,
.hub-account-sidebar__foot {
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
}

.hub-account-sidebar__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .hub-account-sidebar__close {
        display: none;
    }
}

.hub-account-sidebar__label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(147, 197, 253, 0.85);
    margin-bottom: 0.55rem;
    padding: 0 0.35rem;
}

.hub-account-sidebar__products {
    display: grid;
    gap: 0.45rem;
}

.hub-account-product {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-width: 0;
    padding: 0.68rem 0.8rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.8125rem;
    font-weight: 800;
    font-style: italic;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-account-product i {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-style: normal;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.hub-account-product > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-account-product__accent {
    font-style: normal;
}

.hub-account-product--tourism.is-active {
    border-color: rgba(14, 165, 233, 0.45);
    background: rgba(14, 165, 233, 0.14);
    color: #ffffff;
}

.hub-account-product--tourism.is-active i {
    background: rgba(14, 165, 233, 0.25);
    color: #7dd3fc;
}

.hub-account-product--tourism.is-active .hub-account-product__accent {
    color: #38bdf8;
}

.hub-account-product--marin.is-active {
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.16);
    color: #ffffff;
}

.hub-account-product--marin.is-active i {
    background: rgba(99, 102, 241, 0.28);
    color: #c7d2fe;
}

.hub-account-product--marin.is-active .hub-account-product__accent {
    color: #a5b4fc;
}

.hub-account-product:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hub-account-sidebar__menu {
    display: grid;
    gap: 0.2rem;
}

.hub-account-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    min-width: 0;
    padding: 0.68rem 0.75rem;
    border-radius: 0.85rem;
    border: 1px solid transparent;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(203, 213, 225, 0.9);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hub-account-sidebar__link i {
    width: 1rem;
    text-align: center;
    color: rgba(148, 163, 184, 0.95);
    flex-shrink: 0;
}

.hub-account-sidebar__link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-account-sidebar__link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.hub-account-sidebar__link.is-active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 197, 253, 0.22);
    color: #ffffff;
    box-shadow: inset 3px 0 0 #60a5fa;
}

.hub-account-sidebar__link.is-active i {
    color: #93c5fd;
}

.hub-account-sidebar__group {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.hub-account-sidebar__toggle {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    min-width: 0;
    padding: 0.68rem 0.75rem;
    border-radius: 0.85rem;
    border: 1px solid transparent;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(203, 213, 225, 0.9);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hub-account-sidebar__toggle > i:first-child {
    width: 1rem;
    text-align: center;
    color: rgba(148, 163, 184, 0.95);
    flex-shrink: 0;
}

.hub-account-sidebar__toggle > span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-account-sidebar__caret {
    font-size: 0.625rem;
    color: rgba(148, 163, 184, 0.9);
    transition: transform 0.22s ease, color 0.2s ease;
    flex-shrink: 0;
}

.hub-account-sidebar__group.is-open .hub-account-sidebar__caret {
    transform: rotate(180deg);
    color: #93c5fd;
}

.hub-account-sidebar__toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.hub-account-sidebar__toggle:hover > i:first-child {
    color: #93c5fd;
}

.hub-account-sidebar__group.is-open > .hub-account-sidebar__toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(147, 197, 253, 0.16);
    color: #ffffff;
}

.hub-account-sidebar__submenu {
    display: grid;
    gap: 0.15rem;
    margin: 0 0 0.15rem 0.35rem;
    padding: 0.15rem 0 0.15rem 0.85rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, margin 0.22s ease, padding 0.22s ease;
}

.hub-account-sidebar__group.is-open .hub-account-sidebar__submenu {
    max-height: 20rem;
    opacity: 1;
}

.hub-account-sidebar__sublink {
    display: block;
    padding: 0.5rem 0.65rem;
    border-radius: 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.82);
    transition: background 0.2s ease, color 0.2s ease;
}

.hub-account-sidebar__sublink span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-account-sidebar__sublink:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.hub-account-sidebar__sublink.is-active {
    background: rgba(37, 99, 235, 0.18);
    color: #dbeafe;
    box-shadow: inset 2px 0 0 #60a5fa;
}

.hub-account-sidebar__foot {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-account-sidebar__logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(248, 113, 113, 0.24);
    background: rgba(248, 113, 113, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    color: #fecaca;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-account-sidebar__logout:hover {
    background: rgba(248, 113, 113, 0.16);
    border-color: rgba(248, 113, 113, 0.35);
    color: #ffffff;
}

.hub-account-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: calc(100dvh - var(--account-header-height));
    background: #f8fafc;
}

.hub-account-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1.15rem 1.15rem 0;
}

@media (min-width: 640px) {
    .hub-account-content {
        padding: 1.35rem 1.75rem 0;
    }
}

@media (min-width: 1024px) {
    .hub-account-content {
        padding: 1.5rem 2rem 0;
    }
}

.hub-account-content__head {
    margin-bottom: 0.85rem;
}

.hub-account-content__eyebrow {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.hub-account-content__title {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #334155;
}

.hub-account-content__title em {
    font-style: normal;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-canvas {
    flex: 1;
    min-height: 0;
    padding-bottom: 1rem;
}

/* Account list pages (subscriptions, invoices) */
.hub-account-list {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.hub-account-list__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hub-account-list__summary {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-list__action {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563eb;
    transition: color 0.2s ease;
}

.hub-account-list__action:hover {
    color: #1d4ed8;
}

.hub-account-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-account-list__item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-account-list__item:last-child {
    border-bottom: none;
}

.hub-account-list__item--muted {
    opacity: 0.72;
}

.hub-account-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    color: #2563eb;
    background: #eff6ff;
}

.hub-account-list__icon--tourism {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-list__icon--marin {
    color: #0284c7;
    background: #e0f2fe;
}

.hub-account-list__icon--addon {
    color: #7c3aed;
    background: #f5f3ff;
}

.hub-account-list__body {
    min-width: 0;
}

.hub-account-list__title {
    margin: 0 0 0.2rem;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

a.hub-account-list__title:hover {
    color: #2563eb;
}

.hub-account-list__accent {
    font-style: normal;
    font-weight: 800;
    color: #2563eb;
}

.hub-account-list__meta {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-list__status {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.hub-account-list__status--active {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-list__status--expired {
    color: #64748b;
    background: #f1f5f9;
}

.hub-account-list__amount {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    text-align: right;
}

.hub-account-list__amount span {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-list__link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
}

.hub-account-list__link:hover {
    color: #1d4ed8;
}

.hub-account-table-wrap {
    overflow-x: auto;
}

.hub-account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.hub-account-table th,
.hub-account-table td {
    padding: 0.85rem 1.15rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.hub-account-table th {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    background: #f8fafc;
}

.hub-account-table tbody tr:last-child td {
    border-bottom: none;
}

.hub-account-table__link {
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.hub-account-table__link:hover {
    color: #2563eb;
}

.hub-account-table__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.hub-account-table__badge--paid {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-table__action {
    font-weight: 700;
    color: #2563eb;
}

.hub-account-table__action:hover {
    color: #1d4ed8;
}

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

@media (max-width: 767px) {
    .hub-account-list__item {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon body"
            "status amount"
            "link link";
    }

    .hub-account-list__icon {
        grid-area: icon;
    }

    .hub-account-list__body {
        grid-area: body;
    }

    .hub-account-list__status {
        grid-area: status;
        justify-self: start;
    }

    .hub-account-list__amount {
        grid-area: amount;
        justify-self: end;
    }

    .hub-account-list__link {
        grid-area: link;
    }
}

/* Account overview dashboard */
.hub-account-overview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-account-overview__welcome {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #dbeafe;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hub-account-overview__org {
    margin: 0 0 0.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2563eb;
}

.hub-account-overview__lead {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.hub-account-overview__lead strong {
    font-weight: 800;
    color: #0f172a;
}

.hub-account-overview__welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hub-account-overview__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hub-account-overview__btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.hub-account-overview__btn--primary {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.hub-account-overview__btn--primary:hover {
    border-color: #1d4ed8;
    background: #1d4ed8;
    color: #fff;
}

.hub-account-overview__btn--block {
    width: 100%;
    margin-top: 0.85rem;
}

.hub-account-overview__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 1024px) {
    .hub-account-overview__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hub-account-overview__stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.hub-account-overview__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hub-account-overview__stat-icon--blue {
    color: #2563eb;
    background: #eff6ff;
}

.hub-account-overview__stat-icon--green {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-overview__stat-icon--violet {
    color: #7c3aed;
    background: #f5f3ff;
}

.hub-account-overview__stat-icon--slate {
    color: #475569;
    background: #f1f5f9;
}

.hub-account-overview__stat-label {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-account-overview__stat-value {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-overview__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .hub-account-overview__grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.hub-account-overview__panel {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.hub-account-overview__panel--highlight {
    border-color: #bfdbfe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hub-account-overview__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.hub-account-overview__panel-title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-overview__panel-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
}

.hub-account-overview__panel-link:hover {
    color: #1d4ed8;
}

.hub-account-overview__subs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-account-overview__sub {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-account-overview__sub:last-child {
    border-bottom: none;
}

.hub-account-overview__sub-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
}

.hub-account-overview__sub-icon--tourism {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-overview__sub-icon--addon {
    color: #7c3aed;
    background: #f5f3ff;
}

.hub-account-overview__sub-body {
    min-width: 0;
}

.hub-account-overview__sub-title {
    margin: 0 0 0.15rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

a.hub-account-overview__sub-title:hover {
    color: #2563eb;
}

.hub-account-overview__sub-meta {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-overview__next {
    padding: 1.15rem;
}

.hub-account-overview__next-badge {
    margin: 0 0 0.35rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2563eb;
}

.hub-account-overview__next-amount {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.hub-account-overview__next-date {
    margin: 0.35rem 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-overview__next-bar {
    height: 0.4rem;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.hub-account-overview__next-bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}

.hub-account-overview__next-note {
    margin: 0.55rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-table--compact th,
.hub-account-table--compact td {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

/* Account settings (profile, notifications) */
.hub-account-settings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-account-settings__profile-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hub-account-settings__avatar-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hub-account-settings__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.hub-account-settings__avatar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hub-account-settings__avatar-btn {
    padding: 0;
    border: none;
    background: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    cursor: pointer;
}

.hub-account-settings__avatar-btn--muted {
    color: #94a3b8;
}

.hub-account-settings__avatar-btn:hover {
    color: #1d4ed8;
}

.hub-account-settings__profile-name {
    margin: 0 0 0.15rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-settings__profile-email {
    margin: 0 0 0.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-settings__profile-role {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-account-settings__panel {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.hub-account-settings__panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.hub-account-settings__panel-title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-settings__panel-lead {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-settings__fields {
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem;
}

.hub-account-settings__fields--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .hub-account-settings__fields--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hub-account-settings__field--full {
    grid-column: 1 / -1;
}

.hub-account-settings__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-account-settings__input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-account-settings__input:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hub-account-settings__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2rem;
}

.hub-account-settings__toggles {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-account-settings__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-account-settings__toggle-row:last-child {
    border-bottom: none;
}

.hub-account-settings__toggle-label {
    margin: 0 0 0.15rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.hub-account-settings__toggle-hint {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-settings__switch {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    cursor: pointer;
}

.hub-account-settings__switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hub-account-settings__switch-ui {
    display: block;
    width: 2.75rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background 0.2s ease;
}

.hub-account-settings__switch-ui::after {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
    transition: transform 0.2s ease;
}

.hub-account-settings__switch input:checked + .hub-account-settings__switch-ui {
    background: #2563eb;
}

.hub-account-settings__switch input:checked + .hub-account-settings__switch-ui::after {
    transform: translateX(1.25rem);
}

.hub-account-settings__switch input:focus-visible + .hub-account-settings__switch-ui {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.hub-account-settings__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.25rem 0 0.5rem;
}

.hub-account-settings__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    background: #2563eb;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hub-account-settings__submit:hover {
    background: #1d4ed8;
}

.hub-account-settings__cancel {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748b;
}

.hub-account-settings__cancel:hover {
    color: #0f172a;
}

.hub-account-settings__actions--inset {
    margin: 0;
    padding: 1rem 1.15rem 1.15rem;
    border-top: 1px solid #f1f5f9;
}

.hub-account-settings__submit--muted {
    background: #f1f5f9;
    color: #334155;
}

.hub-account-settings__submit--muted:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Account security page */
.hub-account-security__status {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .hub-account-security__status {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hub-account-security__status-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.hub-account-security__status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hub-account-security__status-icon--green {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-security__status-icon--blue {
    color: #2563eb;
    background: #eff6ff;
}

.hub-account-security__status-icon--slate {
    color: #475569;
    background: #f1f5f9;
}

.hub-account-security__status-label {
    margin: 0 0 0.15rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-account-security__status-value {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.hub-account-security__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    vertical-align: middle;
}

.hub-account-security__badge--active {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-security__badge--current {
    color: #2563eb;
    background: #eff6ff;
}

.hub-account-security__2fa {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem;
}

.hub-account-security__2fa-method {
    margin: 0 0 0.2rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-security__2fa-method i {
    margin-right: 0.35rem;
    color: #64748b;
}

.hub-account-security__2fa-meta {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-security__2fa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hub-account-security__danger {
    padding: 0.65rem 0.85rem;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hub-account-security__danger:hover {
    background: #fef2f2;
    border-color: #fca5a5;
}

.hub-account-security__danger--compact {
    flex-shrink: 0;
}

.hub-account-security__sessions {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-account-security__session {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-account-security__session:last-child {
    border-bottom: none;
}

.hub-account-security__session--current {
    background: #f8fbff;
}

.hub-account-security__session-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: #f1f5f9;
    color: #475569;
    font-size: 1rem;
}

.hub-account-security__session-title {
    margin: 0 0 0.1rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-security__session-meta {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-security__session-revoke {
    padding: 0;
    border: none;
    background: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    cursor: pointer;
    white-space: nowrap;
}

.hub-account-security__session-revoke:hover {
    color: #b91c1c;
}

.hub-account-table__badge--failed {
    color: #dc2626;
    background: #fef2f2;
}

/* Account support tickets */
.hub-support {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-support__form-panel {
    scroll-margin-top: 1rem;
}

.hub-support__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.hub-support__badge--open {
    color: #2563eb;
    background: #eff6ff;
}

.hub-support__badge--answered {
    color: #059669;
    background: #ecfdf5;
}

.hub-support__badge--pending {
    color: #d97706;
    background: #fffbeb;
}

.hub-support__badge--closed {
    color: #64748b;
    background: #f1f5f9;
}

.hub-support__badge--low {
    color: #64748b;
    background: #f8fafc;
}

.hub-support__badge--normal {
    color: #2563eb;
    background: #eff6ff;
}

.hub-support__badge--urgent {
    color: #dc2626;
    background: #fef2f2;
}

.hub-account-settings__textarea {
    min-height: 7rem;
    resize: vertical;
    line-height: 1.5;
}

.hub-account-settings__file {
    padding: 0.55rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.hub-account-settings__optional {
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: #94a3b8;
}

.hub-support__ticket-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hub-support__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}

.hub-support__back:hover {
    color: #2563eb;
}

.hub-support__ticket-title {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-support__ticket-meta {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-support__thread {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hub-support__message {
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.hub-support__message--customer {
    border-color: #dbeafe;
    background: #f8fbff;
}

.hub-support__message--staff {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.hub-support__message-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.55rem;
}

.hub-support__message-author {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-support__message-time {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-support__message-body {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.6;
    color: #334155;
}

.hub-support__message-body p {
    margin: 0;
}

.hub-support__reply {
    margin-top: 0.25rem;
}

/* Account team management */
.hub-team {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-team__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .hub-team__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hub-team__members,
.hub-team__invites {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-team__member,
.hub-team__invite {
    display: grid;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-team__member {
    grid-template-columns: auto 1fr auto auto auto;
}

.hub-team__invite {
    grid-template-columns: 1fr auto auto auto;
}

.hub-team__member:last-child,
.hub-team__invite:last-child {
    border-bottom: none;
}

.hub-team__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 800;
    color: #475569;
    flex-shrink: 0;
}

.hub-team__avatar--owner {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

.hub-team__member-body {
    min-width: 0;
}

.hub-team__member-name {
    margin: 0 0 0.1rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-team__member-you {
    font-weight: 700;
    color: #64748b;
}

.hub-team__member-email {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-team__role {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.hub-team__role--owner {
    color: #2563eb;
    background: #eff6ff;
}

.hub-team__role--admin {
    color: #7c3aed;
    background: #f5f3ff;
}

.hub-team__role--ops {
    color: #059669;
    background: #ecfdf5;
}

.hub-team__role--readonly {
    color: #64748b;
    background: #f1f5f9;
}

.hub-team__meta {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
}

.hub-team__action {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

button.hub-team__action {
    font-family: inherit;
}

.hub-team__action:hover {
    color: #1d4ed8;
}

.hub-team__action--danger {
    color: #dc2626;
}

.hub-team__action--danger:hover {
    color: #b91c1c;
}

.hub-team__invite-status {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #d97706;
    background: #fffbeb;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.hub-team__invite-panel {
    scroll-margin-top: 1rem;
}

.hub-team__edit-head {
    padding: 1.15rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hub-team__edit-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.hub-team__edit-info {
    flex: 1;
    min-width: 12rem;
}

.hub-team__edit-name {
    margin: 0 0 0.15rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-team__edit-email {
    margin: 0 0 0.2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.hub-team__edit-meta {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-team__edit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-team__field-hint {
    margin: 0.35rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-team__danger-panel .hub-account-settings__panel-head {
    border-bottom-color: #fecaca;
    background: #fef2f2;
}

.hub-team__danger-panel .hub-account-settings__panel-title {
    color: #991b1b;
}

.hub-team__danger-actions {
    padding: 1.15rem;
}

@media (max-width: 767px) {
    .hub-team__member,
    .hub-team__invite {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "avatar body"
            "role meta"
            "actions actions";
    }

    .hub-team__avatar {
        grid-area: avatar;
    }

    .hub-team__member-body {
        grid-area: body;
    }

    .hub-team__role,
    .hub-team__invite-status {
        grid-area: role;
        justify-self: start;
    }

    .hub-team__meta {
        grid-area: meta;
        justify-self: end;
    }

    .hub-team__action {
        grid-area: actions;
    }

    .hub-team__invite .hub-team__action:nth-of-type(1) {
        margin-right: 0.75rem;
    }
}

/* Account API access */
.hub-api {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-api__notice {
    margin: 0;
}

.hub-api__keys {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-api__key {
    padding: 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-api__key:last-child {
    border-bottom: none;
}

.hub-api__key--expired {
    opacity: 0.72;
    background: #fafafa;
}

.hub-api__key-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.hub-api__key-name {
    margin: 0 0 0.15rem;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-api__key-meta {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-api__badge {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.hub-api__badge--live {
    color: #059669;
    background: #ecfdf5;
}

.hub-api__badge--test {
    color: #2563eb;
    background: #eff6ff;
}

.hub-api__badge--expired {
    color: #64748b;
    background: #f1f5f9;
}

.hub-api__token {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hub-api__token--inline {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.hub-api__token-value {
    flex: 1;
    min-width: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    word-break: break-all;
}

.hub-api__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hub-api__copy:hover {
    border-color: #cbd5e1;
    color: #2563eb;
}

.hub-api__scopes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.hub-api__scope {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
}

.hub-api__key-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.hub-api__action {
    padding: 0;
    border: none;
    background: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    cursor: pointer;
    font-family: inherit;
}

.hub-api__action:hover {
    color: #1d4ed8;
}

.hub-api__action--danger {
    color: #dc2626;
}

.hub-api__action--danger:hover {
    color: #b91c1c;
}

.hub-api__docs-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hub-api__docs-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.hub-api__docs-label {
    min-width: 7rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-api__docs-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.hub-api__docs-text code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    color: #0f172a;
}

.hub-api__docs-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563eb;
}

.hub-api__docs-link:hover {
    color: #1d4ed8;
}

.hub-api__create-panel {
    scroll-margin-top: 1rem;
}

.hub-api__scope-picker {
    border-top: 1px solid #f1f5f9;
}

.hub-api__scope-picker-title {
    margin: 0;
    padding: 1rem 1.15rem 0;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

/* Account extra pages */
.hub-account-extra__toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.hub-account-extra__cards {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-account-extra__card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-account-extra__card:last-child {
    border-bottom: none;
}

.hub-account-extra__card--default {
    background: #f8fbff;
}

.hub-account-extra__card--muted {
    opacity: 0.75;
}

.hub-account-extra__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #f1f5f9;
    color: #475569;
    font-size: 1rem;
    flex-shrink: 0;
}

.hub-account-extra__card-icon--iyzico {
    color: #2563eb;
    background: #eff6ff;
}

.hub-account-extra__card-icon--stripe {
    color: #635bff;
    background: #f5f3ff;
}

.hub-account-extra__card-icon--transfer {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-extra__card-icon--tourism {
    color: #059669;
    background: #ecfdf5;
}

.hub-account-extra__card-title {
    margin: 0 0 0.1rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-account-extra__card-meta {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-extra__panel-body {
    padding: 1.15rem;
}

.hub-notif-feed {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-notif-feed__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.hub-notif-feed__item:last-child {
    border-bottom: none;
}

.hub-notif-feed__item--unread {
    background: #f8fbff;
}

.hub-notif-feed__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hub-notif-feed__icon--tourism {
    color: #059669;
    background: #ecfdf5;
}

.hub-notif-feed__icon--billing {
    color: #2563eb;
    background: #eff6ff;
}

.hub-notif-feed__icon--support {
    color: #7c3aed;
    background: #f5f3ff;
}

.hub-notif-feed__icon--team {
    color: #475569;
    background: #f1f5f9;
}

.hub-notif-feed__title {
    margin: 0 0 0.1rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-notif-feed__text {
    margin: 0 0 0.15rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-notif-feed__time {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-usage-list {
    list-style: none;
    margin: 0;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-usage-list__head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.hub-usage-list__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
}

.hub-usage-list__value {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-usage-list__bar {
    height: 0.45rem;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.hub-usage-list__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}

.hub-account-overview__stat-link {
    color: inherit;
    text-decoration: none;
}

.hub-account-overview__stat-link:hover {
    color: #2563eb;
}

@media (max-width: 767px) {
    .hub-account-extra__card {
        grid-template-columns: auto 1fr;
        grid-template-areas: "icon body" "badge actions";
    }

    .hub-account-extra__card-icon {
        grid-area: icon;
    }

    .hub-account-extra__card-body {
        grid-area: body;
    }

    .hub-account-extra__card .hub-support__badge {
        grid-area: badge;
        justify-self: start;
    }

    .hub-account-extra__card .hub-team__action {
        grid-area: actions;
    }

    .hub-notif-feed__item {
        grid-template-columns: auto 1fr;
        grid-template-areas: "icon body" "action action";
    }

    .hub-notif-feed__icon {
        grid-area: icon;
    }

    .hub-notif-feed__body {
        grid-area: body;
    }

    .hub-notif-feed__item .hub-account-table__action {
        grid-area: action;
    }
}

.hub-account-canvas__surface {
    min-height: 18rem;
    height: 100%;
    border-radius: 1.25rem;
    border: 1px dashed #dbeafe;
    background:
        linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-size: 32px 32px, 32px 32px, auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (min-width: 1024px) {
    .hub-account-canvas__surface {
        min-height: calc(100dvh - var(--account-header-height) - 12rem);
    }
}

.hub-account-footer {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hub-account-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1.15rem;
}

@media (min-width: 768px) {
    .hub-account-footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.9rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .hub-account-footer__inner {
        padding: 0.9rem 2rem;
    }
}

.hub-account-footer__copy {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-account-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
}

.hub-account-footer__nav a {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    transition: color 0.2s ease;
}

.hub-account-footer__nav a:hover {
    color: #2563eb;
}

.hub-account-page--nav-open {
    overflow: hidden;
}

/* Checkout flow (cart, kasa, payment result) */
.hub-checkout-steps {
    margin-bottom: 1.25rem;
}

.hub-checkout-steps__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
}

.hub-checkout-steps__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hub-checkout-steps__item:last-child {
    border-right: none;
}

.hub-checkout-steps__item.is-done {
    color: #2563eb;
    background: #eff6ff;
}

.hub-checkout-steps__item.is-current {
    color: #0f172a;
    background: #fff;
    box-shadow: inset 0 -2px 0 #2563eb;
}

.hub-checkout-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    background: #e2e8f0;
    color: #64748b;
}

.hub-checkout-steps__item.is-done .hub-checkout-steps__num,
.hub-checkout-steps__item.is-current .hub-checkout-steps__num {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 639px) {
    .hub-checkout-steps__label {
        display: none;
    }
}

.hub-checkout-layout {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hub-checkout-layout {
        grid-template-columns: minmax(0, 1fr) 18.5rem;
        gap: 1.5rem;
    }
}

.hub-checkout-main {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .hub-checkout-main {
        padding: 1.5rem;
    }
}

.hub-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hub-cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

@media (max-width: 639px) {
    .hub-cart-item {
        grid-template-columns: auto 1fr auto;
    }

    .hub-cart-item__price {
        grid-column: 2 / -1;
        text-align: left;
        padding-left: calc(2.5rem + 0.85rem);
    }
}

.hub-cart-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
}

.hub-cart-item__icon--tourism {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
}

.hub-cart-item__icon--addon {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
}

.hub-cart-item__name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-cart-item__accent {
    color: #2563eb;
}

.hub-cart-item__meta {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-cart-item__amount {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
    text-align: right;
}

.hub-cart-item__period {
    margin: 0.1rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: right;
}

.hub-cart-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.hub-cart-item__remove:hover {
    color: #dc2626;
    background: #fef2f2;
}

.hub-cart-coupon {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
    .hub-cart-coupon__row {
        max-width: 22rem;
    }
}

.hub-cart-coupon__label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-cart-coupon__row {
    display: flex;
    gap: 0.5rem;
}

.hub-cart-coupon__input {
    flex: 1;
    min-width: 0;
    padding: 0.6rem 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hub-cart-coupon__input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.hub-cart-coupon__input:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hub-cart-coupon__apply {
    flex-shrink: 0;
    padding: 0.6rem 0.85rem;
    border-radius: 0.625rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hub-cart-coupon__apply:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.hub-cart-coupon__hint {
    margin: 0.5rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.45;
}

.hub-cart-coupon.is-applied .hub-cart-coupon__row {
    display: none;
}

.hub-cart-coupon.is-applied .hub-cart-coupon__hint {
    display: none;
}

.hub-cart-coupon__applied {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.hub-cart-coupon.is-applied .hub-cart-coupon__applied {
    display: flex;
}

.hub-cart-coupon__applied-code {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #15803d;
}

.hub-cart-coupon__applied-code i {
    font-size: 0.6875rem;
}

.hub-cart-coupon__remove {
    padding: 0;
    border: none;
    background: none;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.hub-cart-coupon__remove:hover {
    color: #dc2626;
}

.hub-checkout-summary__row--discount dt,
.hub-checkout-summary__row--discount dd {
    color: #16a34a;
    font-weight: 800;
}

.hub-checkout-summary {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 1024px) {
    .hub-checkout-summary {
        position: sticky;
        top: calc(var(--account-header-height) + 1rem);
    }
}

.hub-checkout-summary__title {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-checkout-summary__items {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}

.hub-checkout-summary__items li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.hub-checkout-summary__items strong {
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

.hub-checkout-summary__rows {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hub-checkout-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.8125rem;
}

.hub-checkout-summary__row dt {
    margin: 0;
    font-weight: 600;
    color: #64748b;
}

.hub-checkout-summary__row dd {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-summary__row--total {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9375rem;
}

.hub-checkout-summary__row--total dt,
.hub-checkout-summary__row--total dd {
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-summary__note {
    margin: 0.85rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #16a34a;
    line-height: 1.45;
}

.hub-checkout-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    border: none;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hub-checkout-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    color: #fff;
}

.hub-checkout-submit--inline {
    margin-top: 1.25rem;
}

.hub-checkout-back {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hub-checkout-back:hover {
    color: #2563eb;
}

.hub-checkout-section {
    margin-bottom: 1.5rem;
}

.hub-checkout-section:last-of-type {
    margin-bottom: 0;
}

.hub-checkout-section__title {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-checkout-fields {
    display: grid;
    gap: 0.75rem;
}

.hub-checkout-fields--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .hub-checkout-fields--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hub-checkout-field--full {
    grid-column: 1 / -1;
}

.hub-checkout-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
}

.hub-checkout-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 0.625rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-checkout-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hub-checkout-pay-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hub-checkout-pay-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 3.25rem;
    padding: 0.55rem 0.45rem;
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hub-checkout-pay-tab__label {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.hub-checkout-pay-tab__meta {
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.2;
}

.hub-checkout-pay-tab.is-active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.hub-checkout-pay-tab.is-active .hub-checkout-pay-tab__meta {
    color: #60a5fa;
}

.hub-checkout-pay-panel[hidden] {
    display: none;
}

.hub-checkout-provider {
    margin-bottom: 1rem;
}

.hub-checkout-provider__badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.45rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hub-checkout-provider__badge--stripe {
    background: #eef2ff;
    color: #4338ca;
}

.hub-checkout-provider__badge--iyzico {
    background: #ecfdf5;
    color: #047857;
}

.hub-checkout-provider__lead {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.5;
}

.hub-checkout-provider__note {
    margin: 0.85rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.45;
}

.hub-checkout-transfer {
    padding: 0;
    border: none;
    background: transparent;
}

.hub-checkout-transfer__lead {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.5;
}

.hub-checkout-transfer__ref {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.hub-checkout-transfer__ref-label {
    flex-shrink: 0;
}

.hub-checkout-transfer__ref-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    min-width: 0;
}

.hub-checkout-transfer__ref-value {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #1d4ed8;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.hub-checkout-transfer-accounts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.hub-checkout-transfer-account[hidden] {
    display: none;
}

.hub-checkout-transfer__picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.hub-checkout-transfer__pick {
    display: flex;
    cursor: pointer;
}

.hub-checkout-transfer__pick input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hub-checkout-transfer__pick-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
    padding: 0.7rem 0.45rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hub-checkout-transfer__pick.is-active .hub-checkout-transfer__pick-body {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.hub-checkout-transfer__pick-bank {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #475569;
    line-height: 1.3;
}

.hub-checkout-transfer__pick-amount {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-transfer-account {
    padding: 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hub-checkout-transfer-account__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.hub-checkout-transfer-account__currency {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hub-checkout-transfer-account__currency--usd {
    background: #dcfce7;
    color: #15803d;
}

.hub-checkout-transfer-account__currency--eur {
    background: #ede9fe;
    color: #6d28d9;
}

.hub-checkout-transfer-account__amount {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-transfer__details {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hub-checkout-transfer__details div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.8125rem;
}

.hub-checkout-transfer__details dt {
    margin: 0;
    font-weight: 600;
    color: #64748b;
    flex-shrink: 0;
}

.hub-checkout-transfer__details dd {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
    text-align: right;
}

.hub-checkout-transfer__iban dd {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
}

@media (min-width: 640px) {
    .hub-checkout-transfer__iban dd {
        flex-direction: row;
        align-items: center;
    }
}

.hub-checkout-transfer__iban-value,
.hub-checkout-transfer__account-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.hub-checkout-transfer__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hub-checkout-transfer__copy:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.hub-checkout-transfer__note {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.45;
}

.hub-checkout-installment {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.hub-checkout-installment__head {
    margin-bottom: 0.85rem;
}

.hub-checkout-installment__title {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-checkout-installment__lead {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.45;
}

.hub-checkout-installment__ownership {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid #bfdbfe;
    border-left: 3px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.06);
}

.hub-checkout-installment__ownership-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    border-radius: 0.65rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px -12px rgba(37, 99, 235, 0.85);
}

.hub-checkout-installment__ownership-title {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.35;
}

.hub-checkout-installment__ownership-text {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.55;
}

.hub-checkout-installment__ownership-text strong {
    font-weight: 800;
    color: #1d4ed8;
}

.hub-checkout-installment__modes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.hub-checkout-installment__mode {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hub-checkout-installment__mode input {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: #2563eb;
}

.hub-checkout-installment__mode-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.hub-checkout-installment__mode-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.hub-checkout-installment__mode-meta {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.35;
}

.hub-checkout-installment__mode.is-active {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.hub-checkout-installment__mode.is-active .hub-checkout-installment__mode-title {
    color: #1d4ed8;
}

.hub-checkout-installment__options[hidden] {
    display: none;
}

.hub-checkout-installment__select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 0.625rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-checkout-installment__select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hub-checkout-installment__preview {
    margin: 0.75rem 0 0;
    padding: 0.7rem 0.85rem;
    border-radius: 0.625rem;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1d4ed8;
    line-height: 1.45;
}

.hub-checkout-installment__preview--free {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #15803d;
}

.hub-checkout-installment__preview--surcharge {
    border-color: #fde68a;
    background: #fffbeb;
    color: #b45309;
}

.hub-checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.5;
    cursor: pointer;
}

.hub-checkout-terms input {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: #2563eb;
}

.hub-checkout-terms a {
    color: #2563eb;
    font-weight: 700;
}

.hub-checkout-result {
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .hub-checkout-result {
        padding: 2.5rem 2rem;
    }
}

.hub-checkout-result__icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.hub-checkout-result--success .hub-checkout-result__icon {
    color: #16a34a;
}

.hub-checkout-result--failed .hub-checkout-result__icon {
    color: #dc2626;
}

.hub-checkout-result__title {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-result__lead {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.55;
}

.hub-checkout-result__ownership {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.75rem;
    border: 1px solid #bfdbfe;
    border-left: 3px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    text-align: left;
}

.hub-checkout-result__ownership-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.8rem;
}

.hub-checkout-result__ownership-text {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.5;
}

.hub-checkout-result__ownership-text strong {
    font-weight: 800;
    color: #1d4ed8;
}

.hub-checkout-result__ownership--failed {
    border-color: #fecaca;
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.hub-checkout-result__ownership--failed .hub-checkout-result__ownership-icon {
    background: #dc2626;
}

.hub-checkout-result__ownership--failed .hub-checkout-result__ownership-text strong {
    color: #b91c1c;
}

.hub-checkout-result__tips {
    margin-bottom: 1.25rem;
    padding: 0.95rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    text-align: left;
}

.hub-checkout-result__tips-title {
    margin: 0 0 0.55rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-checkout-result__tips-list {
    margin: 0;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.45;
}

.hub-checkout-result__alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #fecaca;
    background: #fef2f2;
    font-size: 0.75rem;
    font-weight: 600;
    color: #991b1b;
    text-align: left;
    line-height: 1.45;
}

.hub-checkout-result__alert i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.hub-checkout-result__meta {
    margin: 0 0 1.5rem;
    padding: 1rem;
    border-radius: 0.875rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: left;
}

.hub-checkout-result__meta div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
}

.hub-checkout-result__meta dt {
    margin: 0;
    font-weight: 600;
    color: #64748b;
}

.hub-checkout-result__meta dd {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
    text-align: right;
}

.hub-checkout-result__schedule {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: left;
}

.hub-checkout-result__schedule-title {
    margin: 0 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-checkout-result__schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hub-checkout-result__schedule-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem 0.85rem;
    padding: 0.7rem 0.75rem;
    border-radius: 0.65rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hub-checkout-result__schedule-item.is-paid {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.hub-checkout-result__schedule-step {
    font-size: 0.6875rem;
    font-weight: 800;
    color: #64748b;
    white-space: nowrap;
}

.hub-checkout-result__schedule-item.is-paid .hub-checkout-result__schedule-step {
    color: #15803d;
}

.hub-checkout-result__schedule-body {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.hub-checkout-result__schedule-amount {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-result__schedule-date {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.hub-checkout-result__schedule-status {
    font-size: 0.6875rem;
    font-weight: 800;
    color: #64748b;
    white-space: nowrap;
}

.hub-checkout-result__schedule-item.is-paid .hub-checkout-result__schedule-status {
    color: #15803d;
}

.hub-checkout-result__schedule-status i {
    margin-right: 0.2rem;
}

.hub-checkout-result__schedule-note {
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.45;
}

.hub-checkout-result__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hub-checkout-result__actions .hub-checkout-submit {
    margin-top: 0;
}

.hub-checkout-result__actions .hub-checkout-back {
    margin-top: 0;
}

.hub-checkout-empty {
    max-width: 28rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.hub-checkout-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.5rem;
}

.hub-checkout-empty__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-checkout-empty__lead {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.55;
}

.hub-checkout-empty__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hub-checkout-result--pending .hub-checkout-result__icon {
    color: #d97706;
}

.hub-checkout-result--review .hub-checkout-result__icon {
    color: #2563eb;
}

.hub-checkout-result--cancelled .hub-checkout-result__icon {
    color: #64748b;
}

.hub-checkout-result__ownership--pending {
    border-color: #fde68a;
    border-left-color: #d97706;
    background: linear-gradient(135deg, #fffbeb 0%, #f8fafc 100%);
}

.hub-checkout-result__ownership--pending .hub-checkout-result__ownership-icon {
    background: #d97706;
}

.hub-checkout-result__ownership--review {
    border-color: #bfdbfe;
    border-left-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.hub-checkout-result__ownership--cancelled {
    border-color: #e2e8f0;
    border-left-color: #64748b;
    background: #f8fafc;
}

.hub-checkout-result__ownership--cancelled .hub-checkout-result__ownership-icon {
    background: #64748b;
}

.hub-checkout-pending-bank {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: left;
}

.hub-checkout-pending-bank__title {
    margin: 0 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-payment-plan {
    max-width: 40rem;
    margin: 0 auto;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .hub-payment-plan {
        padding: 1.5rem;
    }
}

.hub-payment-plan__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hub-payment-plan__badge {
    margin: 0 0 0.35rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
}

.hub-payment-plan__title {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-payment-plan__sub {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.hub-payment-plan__status {
    flex-shrink: 0;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    background: #dcfce7;
    color: #15803d;
}

.hub-payment-plan__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 1rem 0;
}

@media (min-width: 640px) {
    .hub-payment-plan__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hub-payment-plan__stat {
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hub-payment-plan__stat-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-payment-plan__stat-value {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-payment-plan__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hub-invoice {
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .hub-invoice {
        padding: 1.75rem;
    }
}

.hub-invoice__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.hub-invoice__label {
    margin: 0 0 0.25rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-invoice__number {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-invoice__meta {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hub-invoice__status {
    flex-shrink: 0;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    background: #dcfce7;
    color: #15803d;
}

.hub-invoice__parties {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .hub-invoice__parties {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hub-invoice__party-label {
    margin: 0 0 0.35rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-invoice__party-name {
    margin: 0 0 0.2rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.hub-invoice__party-detail {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.45;
}

.hub-invoice__table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.hub-invoice__table th,
.hub-invoice__table td {
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.hub-invoice__table th {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.hub-invoice__table td:last-child,
.hub-invoice__table th:last-child {
    text-align: right;
}

.hub-invoice__totals {
    margin: 0 0 1rem;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hub-invoice__totals div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
}

.hub-invoice__totals dt {
    margin: 0;
    font-weight: 600;
    color: #64748b;
}

.hub-invoice__totals dd {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
}

.hub-invoice__totals-row--total {
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9375rem;
}

.hub-invoice__note {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.45;
}

.hub-invoice__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Partnership public page */
.partnership-page {
    background: #f8f9fa;
}

.partnership-page__container {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

@media (min-width: 640px) {
    .partnership-page__container {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .partnership-page__container {
        padding-inline: 2rem;
    }
}

.partnership-page__section {
    padding-block: 4rem;
}

@media (min-width: 1024px) {
    .partnership-page__section {
        padding-block: 5.5rem;
    }
}

.partnership-page__section--steps {
    background: #ffffff;
}

.partnership-page__section--benefits {
    background: #f8f9fa;
}

.partnership-page__section--faq {
    background: #ffffff;
}

.partnership-page__section--cta {
    background: #ffffff;
    padding-top: 0;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .partnership-page__section--cta {
        padding-bottom: 5.5rem;
    }
}

.partnership-page__section-head {
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .partnership-page__section-head {
        margin-bottom: 3.5rem;
    }
}

.partnership-page__section-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.partnership-page__section-title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1e293b;
}

.partnership-page__section-lead {
    margin: 1rem auto 0;
    max-width: 38rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 500;
    color: #64748b;
}

.partnership-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.partnership-page__eyebrow--center {
    margin-inline: auto;
}

.partnership-page__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: #f5f3ff;
    color: #7c3aed;
}

.partnership-page__hero {
    position: relative;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 3.5rem;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

@media (min-width: 1024px) {
    .partnership-page__hero {
        padding-top: 9rem;
        padding-bottom: 4.5rem;
    }
}

.partnership-page__hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 85%);
}

.partnership-page__hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
}

.partnership-page__hero-orb--primary {
    top: -5rem;
    right: -2rem;
    width: 22rem;
    height: 22rem;
    background: rgba(14, 165, 233, 0.18);
}

.partnership-page__hero-orb--secondary {
    bottom: -4rem;
    left: -3rem;
    width: 18rem;
    height: 18rem;
    background: rgba(16, 185, 129, 0.12);
}

.partnership-page__hero-inner {
    position: relative;
    z-index: 1;
}

.partnership-page__hero-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .partnership-page__hero-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3.5rem;
    }
}

.partnership-page__hero-copy {
    max-width: 40rem;
}

.partnership-page__hero-title {
    margin: 1.25rem 0 0;
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.partnership-page__hero-highlight {
    margin: 1rem 0 0;
    font-size: clamp(1.125rem, 2.2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #0284c7;
}

.partnership-page__hero-lead {
    margin: 1.25rem 0 0;
    max-width: 36rem;
    font-size: 0.975rem;
    line-height: 1.75;
    font-weight: 500;
    color: #64748b;
}

@media (min-width: 768px) {
    .partnership-page__hero-lead {
        font-size: 1.05rem;
    }
}

.partnership-page__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 1.75rem;
}

.partnership-page__hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.partnership-page__pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.partnership-page__pill--emerald {
    border-color: rgba(16, 185, 129, 0.2);
    background: #ecfdf5;
    color: #047857;
}

.partnership-page__pill--sky {
    border-color: rgba(14, 165, 233, 0.2);
    background: #f0f9ff;
    color: #0369a1;
}

.partnership-page__hero-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partnership-page__hero-panel-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    padding: 1.25rem 1.35rem;
    box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(10px);
}

.partnership-page__hero-panel-card--featured {
    padding: 1.5rem 1.5rem 1.35rem;
}

.partnership-page__hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.partnership-page__hero-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    margin-bottom: 0.875rem;
}

.partnership-page__hero-panel-icon--violet {
    background: #f5f3ff;
    color: #7c3aed;
}

.partnership-page__hero-panel-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.partnership-page__hero-panel-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.partnership-page__hero-panel-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.partnership-page__hero-panel-value {
    margin: 0.35rem 0 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.partnership-page__hero-panel-card--featured .partnership-page__hero-panel-value {
    font-size: 2.25rem;
}

.partnership-page__hero-panel-desc {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 500;
    color: #64748b;
}

.partnership-page__hero-panel-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(14, 165, 233, 0.16);
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 1rem 1.15rem;
}

.partnership-page__hero-panel-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    background: #e0f2fe;
    color: #0284c7;
    flex-shrink: 0;
}

.partnership-page__hero-panel-banner-title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
}

.partnership-page__hero-panel-banner-desc {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.partnership-page__steps {
    display: grid;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .partnership-page__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.partnership-page__step-card {
    height: 100%;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partnership-page__step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -20px rgba(15, 23, 42, 0.22);
}

.partnership-page__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
}

.partnership-page__step-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.partnership-page__step-icon--violet {
    background: #f5f3ff;
    color: #7c3aed;
}

.partnership-page__step-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.partnership-page__step-index {
    margin: 1rem 0 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.partnership-page__step-title {
    margin: 0.5rem 0 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.partnership-page__step-copy {
    margin: 0.625rem 0 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
}

.partnership-page__benefits-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .partnership-page__benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .partnership-page__benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.partnership-page__benefit-card {
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.14);
}

.partnership-page__benefit-card--wide {
    grid-column: span 2;
}

@media (max-width: 639px) {
    .partnership-page__benefit-card--wide {
        grid-column: span 1;
    }
}

.partnership-page__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
}

.partnership-page__benefit-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.partnership-page__benefit-icon--violet {
    background: #f5f3ff;
    color: #7c3aed;
}

.partnership-page__benefit-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.partnership-page__benefit-icon--amber {
    background: #fffbeb;
    color: #d97706;
}

.partnership-page__benefit-icon--slate {
    background: #f1f5f9;
    color: #475569;
}

.partnership-page__benefit-title {
    margin: 1rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.partnership-page__benefit-metric {
    margin: 0.5rem 0 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.partnership-page__benefit-copy {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
}

.partnership-page__benefit-copy--spaced {
    margin-top: 0.75rem;
}

.partnership-page__faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 56rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .partnership-page__faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

/* Referral program public CTA */
/* Legacy wrapper kept for compatibility; spacing handled by .partnership-page__section--cta */
.referral-program-cta-section {
    padding: 0;
    background: transparent;
}

.referral-program-cta {
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.22), transparent 42%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0c4a6e 100%);
}

.referral-program-cta__glow {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    filter: blur(70px);
}

.referral-program-cta__glow--left {
    top: -4rem;
    left: -3rem;
    width: 14rem;
    height: 14rem;
    background: rgba(56, 189, 248, 0.22);
}

.referral-program-cta__glow--right {
    right: -2rem;
    bottom: -3rem;
    width: 16rem;
    height: 16rem;
    background: rgba(16, 185, 129, 0.16);
}

.referral-program-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.95rem 1.35rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.referral-program-cta__btn--primary {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 16px 32px -18px rgba(255, 255, 255, 0.55);
}

.referral-program-cta__btn--primary:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    box-shadow: 0 20px 36px -16px rgba(255, 255, 255, 0.6);
}

.referral-program-cta__btn--primary i {
    transition: transform 0.2s ease;
}

.referral-program-cta__btn--primary:hover i {
    transform: translateX(2px);
}

.referral-program-cta__btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
}

.referral-program-cta__btn--secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Homepage partnership CTA band */
.hub-partnership-cta {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
    background-image:
        radial-gradient(ellipse 50% 42% at 0% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 45% 38% at 100% 0%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

@media (min-width: 1024px) {
    .hub-partnership-cta {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.hub-partnership-cta__panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 52%, rgba(239, 246, 255, 0.92) 100%);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.04),
        0 24px 64px -28px rgba(37, 99, 235, 0.18);
}

.hub-partnership-cta__orb {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    filter: blur(70px);
}

.hub-partnership-cta__orb--sky {
    top: -5rem;
    right: -2rem;
    width: 18rem;
    height: 18rem;
    background: rgba(56, 189, 248, 0.16);
}

.hub-partnership-cta__orb--violet {
    bottom: -4rem;
    left: -3rem;
    width: 16rem;
    height: 16rem;
    background: rgba(129, 140, 248, 0.12);
}

.hub-partnership-cta__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .hub-partnership-cta__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: center;
        gap: 3rem;
        padding: 2.75rem 3rem;
    }
}

.hub-partnership-cta__copy {
    max-width: 38rem;
}

.hub-partnership-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.hub-partnership-cta__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8125rem;
}

.hub-partnership-cta__title {
    margin: 0;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1e293b;
}

.hub-partnership-cta__highlight {
    margin: 1rem 0 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #2563eb;
}

.hub-partnership-cta__lead {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 500;
    color: #64748b;
}

.hub-partnership-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hub-partnership-cta__login {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.55);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hub-partnership-cta__login:hover {
    color: #2563eb;
    border-bottom-color: rgba(37, 99, 235, 0.45);
}

.hub-partnership-cta__visual {
    display: grid;
    gap: 0.875rem;
}

.hub-partnership-cta__metric {
    padding: 1.25rem 1.35rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hub-partnership-cta__metric:hover {
    transform: translateY(-2px);
    border-color: rgba(191, 219, 254, 0.9);
    box-shadow: 0 16px 32px -18px rgba(37, 99, 235, 0.16);
}

.hub-partnership-cta__metric--featured {
    padding: 1.5rem 1.5rem 1.35rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.hub-partnership-cta__metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}

.hub-partnership-cta__metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.875rem;
    border-radius: 0.875rem;
    font-size: 0.9375rem;
}

.hub-partnership-cta__metric-icon--violet {
    background: #f5f3ff;
    color: #7c3aed;
}

.hub-partnership-cta__metric-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.hub-partnership-cta__metric-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.hub-partnership-cta__metric-label {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hub-partnership-cta__metric-value {
    margin: 0.35rem 0 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1e293b;
}

.hub-partnership-cta__metric--featured .hub-partnership-cta__metric-value {
    font-size: 2rem;
    color: #4f46e5;
}

.hub-partnership-cta__metric-desc {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 500;
    color: #64748b;
}

.hub-partnership-cta__banner {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(167, 243, 208, 0.7);
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(240, 253, 250, 0.9) 100%);
}

.hub-partnership-cta__banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0.875rem;
    background: #d1fae5;
    color: #059669;
    font-size: 0.9375rem;
}

.hub-partnership-cta__banner-title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #065f46;
}

.hub-partnership-cta__banner-desc {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 500;
    color: #047857;
}
