/* ===========================================
   GROWTH INFINITY - MIDNIGHT TECH THEME
   Market Data Vendor - Professional Website
   =========================================== */

/* CSS Variables - Midnight Tech Palette */
:root {
    --deep-navy: #060B13;
    --navy-light: #0A1120;
    --navy-lighter: #0F1A2E;
    --electric-cyan: #00F2FF;
    --teal-blue: #008491;
    --off-white: #E1E8F0;
    --text-muted: #8892A0;
    --coral: #FF6B6B;
    --green: #00D68F;
    --shadow-glow: 0 0 30px rgba(0, 242, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--deep-navy);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(10, 17, 32, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

/* Glow Text */
.glow-text {
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background: var(--electric-cyan);
    color: var(--deep-navy);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-cyan);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--electric-cyan);
    color: var(--electric-cyan);
}

.btn-full {
    width: 100%;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(6, 11, 19, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--off-white);
}

.logo-highlight {
    color: var(--electric-cyan);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-cyan);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--off-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    background: var(--electric-cyan);
    color: var(--deep-navy);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--off-white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-icon {
    font-size: 1rem;
}

.lang-arrow {
    font-size: 0.6rem;
    opacity: 0.6;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--navy-light);
    border: var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--electric-cyan);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--off-white);
    transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.bg-glow-1 {
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--teal-blue);
}

.bg-glow-2 {
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(102, 126, 234, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--electric-cyan);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--electric-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-highlight {
    color: var(--electric-cyan);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--electric-cyan);
}

.hero-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Ticker */
.hero-ticker {
    position: relative;
}

.ticker-card {
    padding: 24px;
    border-left: 4px solid var(--electric-cyan);
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ticker-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ticker-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.ticker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ticker-asset {
    display: flex;
    flex-direction: column;
}

.asset-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.asset-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ticker-data {
    text-align: right;
}

.asset-price {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: var(--electric-cyan);
}

.asset-change {
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.asset-change.positive {
    color: var(--green);
}

.asset-change.negative {
    color: var(--coral);
}

.ticker-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.info-value {
    color: var(--electric-cyan);
}

.ticker-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    width: 70%;
    height: 100%;
    background: var(--electric-cyan);
    box-shadow: 0 0 10px var(--electric-cyan);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--electric-cyan);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ===========================================
   SECTION COMMON STYLES
   =========================================== */
section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--electric-cyan);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   PRODUCTS SECTION
   =========================================== */
.products {
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--navy-light) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.1);
}

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

.product-hex {
    width: 80px;
    height: 92px;
    margin: 0 auto 24px;
    position: relative;
}

.hex-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal-blue) 0%, var(--electric-cyan) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.product-card:hover .hex-inner {
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.product-icon {
    font-size: 2rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-cyan);
}

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

.products-cta {
    margin-top: 40px;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
}

.cta-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===========================================
   PRICING SECTION
   =========================================== */
.pricing {
    background: var(--navy-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    border: 2px solid var(--electric-cyan);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--electric-cyan);
    color: var(--deep-navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-target {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--electric-cyan);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--off-white);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features .feature-icon {
    color: var(--electric-cyan);
    font-size: 1rem;
}

.pricing-features .feature-disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features .feature-disabled .feature-icon {
    color: var(--text-muted);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===========================================
   DEVELOPERS SECTION
   =========================================== */
.developers {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--deep-navy) 100%);
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.dev-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dev-feature {
    padding: 24px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.feature-num {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--electric-cyan);
}

.feature-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.dev-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.dev-code {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.code-window {
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: var(--border-glass);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }

.code-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: auto;
}

.code-body {
    padding: 20px;
    overflow-x: auto;
}

.code-body pre,
.code-body code {
    margin: 0;
    font-family: 'JetBrains Mono', Consolas, 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.code-comment { color: #6A737D; }
.code-keyword { color: #FF79C6; }
.code-string { color: #F1FA8C; }
.code-class { color: #8BE9FD; }
.code-method { color: #50FA7B; }
.code-property { color: #FFB86C; }
.code-variable { color: #BD93F9; }

.dev-endpoints {
    padding: 24px;
}

.dev-endpoints h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.endpoint {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.method {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.method.get { background: rgba(40, 202, 65, 0.2); color: #28CA41; }
.method.post { background: rgba(0, 242, 255, 0.2); color: var(--electric-cyan); }
.method.ws { background: rgba(255, 121, 198, 0.2); color: #FF79C6; }

.path {
    color: var(--text-muted);
}

.dev-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about {
    background: var(--deep-navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--off-white);
}

.about-licenses {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.license-icon {
    font-size: 2rem;
}

.license-info {
    display: flex;
    flex-direction: column;
}

.license-name {
    font-weight: 600;
    font-size: 1rem;
}

.license-issuer {
    font-size: 0.85rem;
    color: var(--electric-cyan);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 24px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--electric-cyan);
}

.stat-card .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-cyan);
}

.stat-card .stat-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.data-centers {
    padding: 24px;
}

.data-centers h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.dc-list {
    display: flex;
    justify-content: space-around;
}

.dc-item {
    text-align: center;
}

.dc-code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--electric-cyan);
}

.dc-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact {
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--navy-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.contact-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--electric-cyan);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-trust {
    padding: 16px 20px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 8px;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--electric-cyan);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--off-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--coral);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.checkbox-label:hover {
    border-color: var(--electric-cyan);
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--electric-cyan);
    border-color: var(--electric-cyan);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--deep-navy);
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--navy-light);
    padding: 60px 0 30px;
    border-top: var(--border-glass);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: var(--border-glass);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--off-white);
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--electric-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badges .badge {
    padding: 6px 12px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--electric-cyan);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy-light);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: right var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-ticker {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-featured {
        transform: none;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

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

    .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
