@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff88;
    --secondary: #00d4ff;
    --dark: #0a0a0f;
    --darker: #05050a;
    --light: #ffffff;
    --gray: #8b8b9f;
    --gradient: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Neural Network Background */
#neuralNetwork {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.ai-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orbs::before,
.gradient-orbs::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.gradient-orbs::before {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.gradient-orbs::after {
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, 100px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1000;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tag {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
}

.nav-cta:hover {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease;
    animation-fill-mode: both;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease 0.8s;
    animation-fill-mode: both;
}

/* Hero Metrics */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    animation: fadeIn 1s ease;
    animation-fill-mode: both;
}

.metric-card:nth-child(1) { animation-delay: 1s; }
.metric-card:nth-child(2) { animation-delay: 1.1s; }
.metric-card:nth-child(3) { animation-delay: 1.2s; }
.metric-card:nth-child(4) { animation-delay: 1.3s; }

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease 1.4s;
    animation-fill-mode: both;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.ai-brain {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.3;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
    animation: pulse 3s ease-in-out infinite;
}

.brain-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation-duration: 25s;
}

.ring-3 {
    width: 360px;
    height: 360px;
    animation-duration: 30s;
}

.brain-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 20%; right: 20%; animation-delay: 0.3s; }
.node-3 { top: 50%; left: 5%; animation-delay: 0.6s; }
.node-4 { top: 50%; right: 5%; animation-delay: 0.9s; }
.node-5 { bottom: 20%; left: 30%; animation-delay: 1.2s; }
.node-6 { bottom: 20%; right: 30%; animation-delay: 1.5s; }

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease 0.3s;
    animation-fill-mode: both;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    font-size: 14px;
    color: var(--gray);
}

.protocol-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

/* FIX: Country code dropdown text color */
.form-group select {
    color: var(--light);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a2e;
    color: var(--light);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 14px;
    color: var(--gray);
    transition: all 0.3s;
    pointer-events: none;
    background: rgba(10, 10, 15, 0.8);
    padding: 0 8px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label {
    top: -10px;
    font-size: 11px;
    color: var(--primary);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-small {
    flex: 0 0 90px;
}

.form-large {
    flex: 1;
}

.form-submit {
    width: 100%;
    background: var(--gradient);
    color: var(--dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.form-submit:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.form-submit.loading .submit-text {
    opacity: 0;
}

.submit-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(10, 10, 15, 0.3);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
}

.form-submit.loading .submit-loader {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* Continue with rest of CSS... (keeping all other sections the same) */
/* I'll add a note that this is a partial file showing the key fixes */

/* The rest of the CSS remains exactly the same as before */
/* Just replacing these sections above fixes the dropdown issue */

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.features-section,
.tech-section,
.benefits-section,
.packages-section,
.roadmap-section,
.contact-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 14px;
    color: var(--gray);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 136, 0.3);
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-number {
    font-size: 14px;
    color: var(--gray);
    font-family: 'Space Grotesk', sans-serif;
}

.benefit-percentage {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card > p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-item {
    font-size: 14px;
    color: var(--gray);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    box-shadow: 0 0 10px var(--primary);
    animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
    from { width: 0; }
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.package-card.featured {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.05);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.package-tier {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.package-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.package-name {
    font-size: 14px;
    color: var(--light);
    font-weight: 500;
}

/* Roadmap */
.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--dark);
    border: 4px solid var(--gray);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.timeline-item.active .timeline-marker {
    border-color: var(--secondary);
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    width: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 36px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
}

.contact-card.telegram:hover {
    border-color: #0088cc;
}

.contact-card.platform:hover {
    border-color: var(--primary);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card.whatsapp .contact-icon {
    color: #25D366;
}

.contact-card.telegram .contact-icon {
    color: #0088cc;
}

.contact-card.platform .contact-icon {
    color: var(--primary);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray);
}

/* Footer */
.footer {
    background: rgba(10, 10, 15, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-desc {
    color: var(--gray);
    margin: 20px 0;
    line-height: 1.6;
}

.footer-contract {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.footer-contract span:first-child {
    color: var(--gray);
}

.contract-address {
    color: var(--primary);
    font-family: 'Space Grotesk', monospace;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.modal-icon svg {
    width: 100%;
    height: 100%;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .ai-brain {
        opacity: 0.2;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .features-grid,
    .tech-grid,
    .benefits-grid,
    .packages-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 40px);
    }
    
    .roadmap-timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: 10px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .metric-value,
    .benefit-percentage,
    .package-price {
        font-size: 32px;
    }
}
/* ==== DROPDOWN & BUTTON FIXES ==== */

/* Fixed: Country code dropdown - no overlay */
.form-group select {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e !important;
    color: #ffffff !important;
    padding: 10px;
}

/* Fixed: Get Started Button */
.btn-get-started {
    width: 100%;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #0a0a0f;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    text-decoration: none;
}

.btn-get-started:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.btn-get-started svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ==== MOBILE RESPONSIVE FIXES ==== */

@media (max-width: 768px) {
    /* Fix form card on mobile */
    .hero-form-card {
        padding: 20px !important;
        margin: 0 10px !important;
    }
    
    /* Fix buttons text overflow */
    .form-submit {
        font-size: 14px !important;
        padding: 14px 12px !important;
        white-space: nowrap;
    }
    
    .btn-get-started {
        font-size: 14px !important;
        padding: 14px 12px !important;
        white-space: nowrap;
    }
    
    /* Fix form inputs */
    .form-group input,
    .form-group select {
        font-size: 14px !important;
        padding: 12px !important;
    }
    
    /* Fix form row on mobile */
    .form-row {
        gap: 8px !important;
    }
    
    .form-small {
        flex: 0 0 85px !important;
    }
    
    /* Fix hero section padding */
    .hero-section {
        padding: 120px 15px 80px !important;
    }
    
    /* Fix hero container */
    .hero-container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-form-card {
        padding: 16px !important;
        margin: 0 5px !important;
    }
    
    .form-submit,
    .btn-get-started {
        font-size: 13px !important;
        padding: 12px 10px !important;
    }
    
    .form-small {
        flex: 0 0 75px !important;
    }
    
    .hero-section {
        padding: 100px 10px 60px !important;
    }
}

/* Fix mobile menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 280px;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex !important;
    }
}