:root {
    --primary: #1ebbd7;
    --primary-dark: #0e8a9e;
    --bg-dark: #0a0a0f;
    --bg-card: #111118;
    --bg-elevated: #16161f;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: #27272a;
    --border-light: #3f3f46;
    --gradient-primary: linear-gradient(135deg, #1ebbd7 0%, #0e8a9e 100%);
    --gradient-text: linear-gradient(135deg, #3ecde6 0%, #1ebbd7 50%, #14a3c7 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    z-index: 1200;
    background: rgba(6, 6, 10, 0.95);
    border-bottom: 1px solid var(--border);
}

.topbar-container {
    height: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-right {
    font-size: 12px;
    color: var(--text-muted);
}

.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 14px 0;
    border-bottom: 1px solid transparent;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;
    background: var(--gradient-primary);
}

.btn-outline {
    color: var(--text-primary);
    border-color: var(--border-light);
    background: transparent;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
}

.brand-switcher {
    position: relative;
}

.brand-switcher-btn {
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
}

.switcher-chevron {
    font-size: 9px;
    transition: transform 0.2s ease;
}

.brand-switcher.open .switcher-chevron {
    transform: rotate(180deg);
}

.brand-switcher-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.brand-switcher.open .brand-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-option {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
}

.brand-option:hover {
    background: rgba(255, 255, 255, 0.04);
}

.brand-option.active {
    background: rgba(30, 187, 215, 0.1);
}

.brand-option-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 13px;
}

.brand-option-info {
    display: flex;
    flex-direction: column;
}

.brand-option-name {
    font-size: 14px;
    font-weight: 600;
}

.brand-option-current {
    font-size: 10px;
    padding: 1px 8px;
    border-radius: 999px;
    background: rgba(30, 187, 215, 0.2);
    color: var(--primary);
    margin-left: 6px;
}

.brand-option-desc {
    color: var(--text-muted);
    font-size: 12px;
}

.brand-divider {
    height: 1px;
    margin: 6px 4px;
    background: var(--border);
}

.hero {
    padding: 170px 0 90px;
    text-align: center;
}

.hero-small {
    padding-bottom: 52px;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(32px, 6vw, 58px);
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 34px;
}

.section-header h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 4vw, 40px);
}

.section-header p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--text-secondary);
}

.narrow {
    max-width: 860px;
}

.lead-copy {
    color: var(--text-secondary);
    margin: 0 0 18px;
}

.services-list {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
}

.service-line {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-secondary);
}

.about-intro {
    max-width: 840px;
    margin: 0 auto 28px;
    text-align: center;
}

.about-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(30, 187, 215, 0.3);
    background: rgba(30, 187, 215, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.about-intro h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
}

.about-intro p {
    margin: 0;
    color: var(--text-secondary);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.about-highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.about-highlight-card i {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.about-highlight-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.about-highlight-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.about-offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.about-offering-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.about-offering-card i {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(30, 187, 215, 0.14);
    color: var(--primary);
    margin-bottom: 10px;
}

.about-offering-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.about-offering-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.about-ecosystem {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    align-items: center;
}

.about-ecosystem-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3.5vw, 32px);
}

.about-ecosystem-copy p {
    margin: 0;
    color: var(--text-secondary);
}

.about-brand-list {
    display: grid;
    gap: 10px;
}

.about-brand-list a {
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-elevated);
    padding: 10px 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.about-brand-list a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.about-cta {
    margin-top: 16px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg-card);
    border-radius: 14px;
    padding: 24px 20px;
}

.about-cta h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.about-cta p {
    margin: 0 0 16px;
    color: var(--text-secondary);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.2s ease;
}

.brand-card:hover {
    border-color: var(--primary);
}

.brand-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.brand-card p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 14px;
}

.contact-card h2 {
    margin-top: 0;
}

.contact-card p,
.contact-card a {
    color: var(--text-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}

.c-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.c-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.c-method-body h3 {
    margin: 0 0 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-code {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--primary);
    border: 1px solid rgba(30, 187, 215, 0.35);
    background: rgba(30, 187, 215, 0.1);
    border-radius: 6px;
    padding: 2px 6px;
}

.c-method-body .desc {
    margin: 0 0 8px;
    color: var(--text-secondary);
    font-size: 13px;
}

.c-link {
    color: var(--primary);
    font-weight: 600;
}

.c-link:hover {
    color: #5ed8eb;
}

.c-portal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.c-portal-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.c-portal-text h3 i {
    color: var(--primary);
    margin-right: 6px;
}

.c-portal-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.c-hours h3,
.c-address h3 {
    margin: 0 0 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: auto;
}

.status-dot.closed {
    background: #ef4444;
}

.status-label {
    font-size: 12px;
    font-weight: 600;
}

.status-label.closed {
    color: #ef4444;
}

.hours-table {
    display: grid;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 7px;
    color: var(--text-secondary);
    font-size: 14px;
}

.hours-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hours-row .time {
    color: var(--text-primary);
    font-weight: 600;
}

.hours-row.off .time {
    color: var(--text-muted);
}

.address-body {
    color: var(--text-secondary);
    font-size: 14px;
}

.address-body strong {
    color: var(--text-primary);
}

.address-meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.visit-notice {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.visit-notice-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
}

.visit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
}

.visit-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
}

.visit-notice p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-card);
    padding: 64px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 26px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-email {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-links h4 {
    margin: 0 0 10px;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover,
.footer-email:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

.copyright {
    color: var(--text-secondary);
}

.center {
    text-align: center;
}

@media (max-width: 940px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .topbar-right {
        display: none;
    }

    .navbar.menu-open .nav-container {
        flex-wrap: wrap;
    }

    .navbar.menu-open .nav-links,
    .navbar.menu-open .nav-buttons {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid var(--border);
        padding-top: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-highlights,
    .about-offerings-grid,
    .about-ecosystem {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 144px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
