/* Inter self-hosted (v20, variable font — weight axis 100–900) */
/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-cyrillic-ext.woff2') format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-greek-ext.woff2') format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-greek.woff2') format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-vietnamese.woff2') format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg:           #0d1117;
    --bg-raised:    #161b22;
    --bg-elevated:  #1f2937;
    --border:       rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --border-focus: rgba(59, 130, 246, 0.4);

    --text-primary:   #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted:     #6e7681;

    --accent:       #3b82f6;
    --accent-hover: #2563eb;
    --accent-dim:   rgba(59, 130, 246, 0.12);

    --success: #22c55e;
    --warning: #f59e0b;
    --danger:  #ef4444;

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-link {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 46px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
    position: relative;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 6px 11px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.login-btn {
    background: var(--accent) !important;
    color: #ffffff !important;
    padding: 5px 14px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 500 !important;
    font-size: 0.8125rem !important;
    transition: background 0.15s ease !important;
    display: inline-block !important;
    border: none !important;
    margin-left: 6px !important;
}
.login-btn:hover { background: var(--accent-hover) !important; color: #fff !important; }

.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-toggle::after { content: '▾'; font-size: 0.7em; opacity: 0.6; transition: transform 0.15s ease; }
.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); opacity: 1; }
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 4px; min-width: 185px;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease; z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block; padding: 7px 12px; color: var(--text-secondary); text-decoration: none;
    border-radius: 6px; font-size: 0.8125rem; font-weight: 400;
    transition: background 0.12s ease, color 0.12s ease;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.dropdown-menu a::after { display: none !important; }
.dropdown-separator { height: 1px; background: rgba(255,255,255,0.07); margin: 3px 0; }

/* Flyout submenu */
.has-flyout { position: relative; }
.has-flyout > a { padding-right: 24px; }
.has-flyout > a::before { content: '›'; position: absolute; right: 10px; font-size: 0.9rem; line-height: 1; opacity: 0.6; }
.flyout-menu {
    position: absolute; top: -4px; left: calc(100% + 4px);
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 4px; min-width: 185px;
    opacity: 0; visibility: hidden; transform: translateX(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease; z-index: 1001;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.has-flyout:hover .flyout-menu { opacity: 1; visibility: visible; transform: translateX(0); }
.flyout-menu li { list-style: none; }
.flyout-menu a {
    display: block; padding: 7px 12px; color: var(--text-secondary); text-decoration: none;
    border-radius: 6px; font-size: 0.8125rem; font-weight: 400;
    transition: background 0.12s ease, color 0.12s ease;
}
.flyout-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.flyout-menu a::after { display: none !important; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.cta-button.secondary:hover {
    background: var(--bg-raised);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* Section Styling */
.section {
    padding: 120px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 80px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 20px;
    align-items: stretch;
}

.feature-card {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    display: block;
    -webkit-line-clamp: unset;
    flex-grow: 1;
    margin: 0;
}

/* Technical Specs */
.tech-specs {
    background: var(--bg-raised);
    padding: 100px 0;
    margin: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.spec-category {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
}

.spec-category h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 22px;
}

.spec-list li::before {
    content: '▶';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 11px;
}

/* Data Center Section */
.datacenter {
    background: var(--bg-raised);
    padding: 100px 0;
    margin: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.datacenter-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.datacenter-info h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.datacenter-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.datacenter-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat {
    padding: 24px 20px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s ease;
}

.stat:hover {
    border-color: var(--border-strong);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--accent);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Network section */
.network-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.network-feature {
    background: var(--bg-raised);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}

.network-feature h4 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* VPS Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 20px;
}

.plan {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.plan.featured {
    border-color: var(--accent);
    transform: scale(1.03);
}

.plan.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.plan:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.plan.featured:hover {
    transform: translateY(-6px) scale(1.03);
}

.plan h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.plan-price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 28px;
    font-size: 0.97rem;
    border-bottom: 1px solid var(--border);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.plan-button {
    width: 100%;
    padding: 14px;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan.featured .plan-button {
    background: var(--accent);
    color: #ffffff;
}

.plan-button:hover {
    background: var(--accent);
    color: #ffffff;
}

/* About section */
.about {
    background: var(--bg-raised);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-secondary);
}

.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.value {
    padding: 28px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: left;
}

.value h4 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item strong {
    color: var(--accent);
    min-width: 80px;
}

.contact-form {
    background: var(--bg-raised);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background: var(--accent-hover);
}

/* Footer */
footer {
    background: var(--bg-raised);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section:first-child img {
    max-width: 100%;
    height: auto;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 1500px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-subtitle {
        margin-bottom: 50px;
    }

    .plan {
        padding: 35px 25px;
    }

    .plan.featured {
        transform: none;
    }

    .plan.featured:hover {
        transform: translateY(-6px);
    }

    .feature-card {
        padding: 32px;
    }

    .plans-grid {
        gap: 20px;
    }

    .features-grid {
        gap: 20px;
    }

    .datacenter-grid {
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 15px;
    }
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .footer-section a,
    .footer-section p,
    .footer-section li {
        font-size: 0.8rem;
    }
    .footer-section:first-child img {
        height: 40px !important;
    }
    .social-links {
        gap: 6px;
        margin-top: 12px;
    }
    .social-links a {
        width: 28px;
        height: 28px;
    }
    .social-links a svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .datacenter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 10px;
    }
    .footer-section:first-child img {
        height: 32px !important;
    }
    .social-links a {
        width: 24px;
        height: 24px;
    }
    .social-links a svg {
        width: 12px;
        height: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        padding: 28px 20px;
    }

    .plan-price {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer-section:first-child img {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .plan {
        padding: 22px 14px;
    }

    .plan h3 {
        font-size: 1.4rem;
    }

    .plan-price {
        font-size: 2.2rem;
    }

    .plan-features li {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 24px 18px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.97rem;
    }
}


/* Improved select styling */
select#lgTest {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--bg-raised) url("data:image/svg+xml;utf8,<svg fill='%238b949e' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right 10px center;
    background-size: 20px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding-right: 30px;
}

select#lgTest option {
    background: var(--bg-raised);
    color: var(--text-primary);
}

select#lgTest:focus {
    outline: none;
    border-color: var(--accent);
}
