:root {
    --primary: #0b0f19;
    --navy: #151e2e;
    --navy-light: #1e293b;
    --accent: #fdbb2d;
    --accent-hover: #e5a720;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(11, 15, 25, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

nav {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 38px !important;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    display: block;
}

.logo-text {
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

nav .links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav .links a:hover {
    color: var(--text);
}

/* HIGH-ATTENTION NAVIGATION ITEM FOR GLOBAL DATA */
nav .links a.nav-highlight {
    color: var(--accent) !important;
    font-weight: 700;
    border: 1px solid rgba(253, 187, 45, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(253, 187, 45, 0.05);
    box-shadow: 0 0 10px rgba(253, 187, 45, 0.1);
}

nav .links a.nav-highlight:hover {
    background: rgba(253, 187, 45, 0.15);
    box-shadow: 0 0 15px rgba(253, 187, 45, 0.25);
    border-color: var(--accent);
}

header {
    min-height: 55vh !important;
    background: radial-gradient(circle at top right, rgba(30, 41, 59, 0.65), rgba(11, 15, 25, 1)),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 40px 20px !important;
    text-align: center;
}

.header-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo {
    height: 85px !important;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px !important;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    display: block;
}

header h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px !important;
}

header .tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
    color: var(--text-muted);
    margin-bottom: 25px !important;
}

header .tagline span {
    color: var(--accent);
    padding: 0 8px;
}

.telemetry-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(21, 30, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.metric-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-num {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.metric-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.hosting-section {
    background: #090d16;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 40px 0 !important;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.hosting-card {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 30px !important;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
}

.hosting-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hosting-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 60px;
}

.hosting-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.hosting-card .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hosting-features {
    list-style: none;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.hosting-features li {
    margin-bottom: 10px;
    color: var(--text);
    display: flex;
    align-items: center;
}

.hosting-features li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

.enterprise-tier {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, var(--navy) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.tier-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.domain-footer-box {
    margin-top: 30px;
    background: rgba(21, 30, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
}

.maya-banner-section {
    background: #0d1321;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0 !important;
}

.maya-banner-card {
    background: linear-gradient(135deg, #151e2e 0%, #1e293b 100%);
    border: 1px solid rgba(253, 187, 45, 0.2);
    border-radius: 16px;
    padding: 35px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.maya-content {
    flex: 1;
}

.maya-banner-card h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px;
}

.maya-banner-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.qr-bundle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px 5% !important;
}

.section-header {
    text-align: center;
    margin-bottom: 25px !important;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--white);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px !important;
}

.card {
    background: var(--navy);
    padding: 24px !important;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--accent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-5px);
    background: var(--navy-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 1.5rem !important;
    color: var(--accent);
    margin-bottom: 12px !important;
}

.card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card-specs {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--accent);
    font-family: monospace;
    background: rgba(11, 15, 25, 0.4);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.02);
    text-align: left;
}

.trade-section {
    background: #0e1422;
    padding: 30px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.dual-grid {
    max-width: 600px;
    margin: auto;
}

.card.light-card {
    border-top-color: var(--text-muted);
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px !important;
}

.affiliate-card {
    background: var(--navy);
    padding: 24px !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}

.affiliate-card:hover {
    border-color: rgba(253, 187, 45, 0.2);
    background: linear-gradient(180deg, var(--navy) 0%, rgba(30, 41, 59, 0.3) 100%);
}

.affiliate-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
}

.affiliate-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.feature-partner {
    border: 1px solid rgba(253, 187, 45, 0.15);
    background: linear-gradient(145deg, rgba(21, 30, 46, 0.8) 0%, rgba(11, 15, 25, 0.9) 100%);
}

.partner-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    color: var(--accent);
    background: rgba(253, 187, 45, 0.08);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--navy-light);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--navy-light);
    border-color: var(--text-muted);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
}

.single-contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-box {
    padding: 40px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    text-align: left;
}

.executive-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(253, 187, 45, 0.2);
}

.executive-box h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.executive-box .title {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.executive-box .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.qr-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.contact-qr {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.qr-caption {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(253, 187, 45, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

footer {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: #060910;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.05);
}

footer p {
    margin-bottom: 6px;
}

.legal-text {
    color: #475569;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    nav .links {
        display: none;
    }
    .btn-group {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 40px 5% !important;
    }
    .telemetry-bar {
        flex-direction: column;
        gap: 15px;
        border-radius: 16px;
        padding: 15px;
    }
    .metric-divider {
        display: none;
    }
    .maya-banner-card {
        flex-direction: column;
        text-align: center;
    }
}