:root {
    --color-primary: #0D9A8A;
    --color-secondary: #0B1A2E;
    --color-accent: #F59E0B;
    --color-background: #070F1C;
    --color-surface: #0F1F35;
}

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

html {
    scroll-behavior: smooth;
}

body.landing-body {
    background: var(--color-background);
    color: #fff;
    font-family: 'Inter', 'Noto Sans Georgian', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 154, 138, 0.45); }
    50% { box-shadow: 0 0 0 14px rgba(13, 154, 138, 0); }
}

.navbar {
    background: rgba(7, 15, 28, 0.35);
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 15, 28, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-link {
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.pill-link {
    transition: all 0.2s ease;
}

.pill-link:hover {
    background: rgba(13, 154, 138, 0.22);
    border-color: rgba(13, 154, 138, 0.7);
    color: #fff;
    transform: translateY(-1px);
}

.btn-consult {
    transition: background 0.2s, transform 0.2s;
}

.btn-consult:hover {
    background: #0fb3a1;
    transform: translateY(-1px);
}

.btn-login {
    transition: all 0.25s ease;
    box-shadow: 0 0 0 0 rgba(13, 154, 138, 0);
}

.btn-login:hover {
    background: #0B8A7A;
    box-shadow: 0 4px 20px rgba(13, 154, 138, 0.4);
    transform: translateY(-1px);
}

.btn-login:active {
    box-shadow: 0 2px 10px rgba(13, 154, 138, 0.3);
    transform: translateY(0);
}

.btn-hero-primary {
    transition: background 0.2s, transform 0.2s;
}

.btn-hero-primary:hover {
    background: #0fb3a1;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    transition: border-color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.45);
}

.feature-card {
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
    border-color: #0D9A8A;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.price-btn-dark {
    transition: opacity 0.2s;
}

.price-btn-dark:hover {
    opacity: 0.88;
}

.price-btn-teal {
    transition: background 0.2s;
}

.price-btn-teal:hover {
    background: #0fb3a1;
}

.contact-input {
    transition: border-color 0.2s;
}

.contact-input:focus {
    border-color: var(--color-primary);
}

.btn-contact {
    transition: background 0.2s;
}

.btn-contact:hover {
    background: #0fb3a1;
}

.footer-link {
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-primary) !important;
}

@media (max-width: 1280px) {
    .hero-grid {
        gap: 48px !important;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none !important;
    }

    .nav-inner {
        padding: 0 20px !important;
    }

    .hero-grid {
        gap: 56px !important;
        grid-template-columns: 1fr !important;
        padding: 120px 20px 64px !important;
    }

    .headline {
        font-size: 44px !important;
    }

    .phone-wrap {
        justify-self: center !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .steps-row {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .steps-row .dash-line {
        display: none !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .section-pad {
        padding: 72px 20px !important;
    }

    .footer-grid {
        gap: 32px !important;
        grid-template-columns: 1fr !important;
    }

    .cta-title {
        font-size: 36px !important;
    }

    .sec-title {
        font-size: 30px !important;
    }
}

@media (max-width: 375px) {
    .headline {
        font-size: 38px !important;
    }

    .hero-cta {
        align-items: stretch !important;
        flex-direction: column !important;
    }
}
