:root {
    --bg: #06070b;
    --bg-soft: #0f111b;
    --card: #131726;
    --text: #e8ecf8;
    --muted: #9ba3be;
    --primary: #6f5bff;
    --primary-2: #9c6dff;
    --accent: #b8a4ff;
    --border: #23283c;
    --highlight: #c4b5fd;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

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

html,
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #12162a, var(--bg) 35%);
    color: var(--text);
}

body {
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(6, 7, 11, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    box-shadow: 0 0 20px rgba(156, 109, 255, 0.6);
}

.brand-text {
    letter-spacing: 0.3px;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.main-nav a {
    font-size: 0.94rem;
    color: var(--muted);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    padding: 0.88rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 12px 30px rgba(111, 91, 255, 0.4);
}

.btn-secondary {
    padding: 0.88rem 1.2rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

.btn-panel {
    padding: 0.7rem 1rem;
    background: rgba(111, 91, 255, 0.15);
    border: 1px solid rgba(156, 109, 255, 0.4);
    color: var(--accent);
    font-size: 0.88rem;
    white-space: nowrap;
}

.hero {
    padding: 5rem 0 3rem;
}

.hero-bg {
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background1.png') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.12;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(111, 91, 255, 0.5));
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content .lead {
    margin: 0 auto 1.5rem;
    text-align: center;
}

.hero-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, rgba(111, 91, 255, 0.15), rgba(156, 109, 255, 0.08));
    border: 1px solid rgba(111, 91, 255, 0.4);
    border-radius: 14px;
    animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(111, 91, 255, 0.3), 0 0 40px rgba(156, 109, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(111, 91, 255, 0.5), 0 0 60px rgba(156, 109, 255, 0.25);
    }
}

.price-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: -0.3rem;
}

.price-value {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(111, 91, 255, 0.4);
}

.price-asterisk {
    font-size: 1.5rem;
    vertical-align: super;
}

.hero-actions-large {
    justify-content: center;
    gap: 1.2rem;
}

.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-primary.btn-large {
    box-shadow: 0 15px 40px rgba(111, 91, 255, 0.5);
}

.btn-secondary.btn-large {
    border-width: 2px;
}

.hero-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #b6c7ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(156, 109, 255, 0.4);
    background: rgba(156, 109, 255, 0.12);
}

h1 {
    font-size: clamp(1.95rem, 5vw, 3.3rem);
    line-height: 1.1;
    margin: 1rem 0;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.1rem;
}

.lead {
    color: var(--muted);
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
}

.hero-card {
    background: linear-gradient(160deg, rgba(111, 91, 255, 0.22), rgba(156, 109, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.stat-list {
    display: grid;
    gap: 0.8rem;
}

.stat {
    background: rgba(6, 7, 11, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.95rem;
}

.stat strong {
    display: block;
    font-size: 1.1rem;
}

.section {
    padding: 2.5rem 0;
}

.section-header {
    margin-bottom: 1.3rem;
}

.section-header h2 {
    margin-bottom: 0.2rem !important;
}

.section-header p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

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

.grid {
    display: grid;
    gap: 1rem;
}

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

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

.card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.05rem;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.26);
}

.card .tag {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    color: var(--highlight);
    border: 1px solid rgba(156, 109, 255, 0.4);
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
}

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

.highlight-box {
    background: linear-gradient(145deg, rgba(156, 109, 255, 0.2), rgba(111, 91, 255, 0.1));
    border: 1px solid rgba(156, 109, 255, 0.45);
    border-radius: 18px;
    padding: 1.2rem;
}

.list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.list li {
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}

.list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--accent));
}

.page-hero {
    padding: 3.8rem 0 1.5rem;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.quote-form {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.quote-form label {
    display: grid;
    gap: 0.42rem;
    color: #d8def3;
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #2a3046;
    background: #0f1322;
    color: #e7ecff;
    border-radius: 12px;
    padding: 0.74rem 0.86rem;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: rgba(156, 109, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(156, 109, 255, 0.15);
}

.form-alert {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.9rem;
    border: 1px solid;
}

.form-alert p {
    font-size: 0.92rem;
    color: #e7ecff;
}

.form-alert-error {
    border-color: rgba(255, 107, 129, 0.5);
    background: rgba(255, 107, 129, 0.12);
}

.form-alert-success {
    border-color: rgba(156, 109, 255, 0.4);
    background: rgba(156, 109, 255, 0.1);
}

.plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0.4rem 0 0.9rem;
    color: #f3f6ff;
}

.plan-price span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
    margin-left: 0.3rem;
}

.plan-card .contact-box {
    margin-top: auto;
}

.plan-card-special {
    border-color: rgba(156, 109, 255, 0.5);
    background: linear-gradient(155deg, rgba(156, 109, 255, 0.2), rgba(111, 91, 255, 0.18));
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 0.55rem;
}

.footer-grid p,
.footer-grid li {
    color: var(--muted);
    font-size: 0.92rem;
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #dbe2ff;
    margin: 5px auto;
    border-radius: 10px;
}

.section-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

.section-bg-1 {
    background: linear-gradient(rgba(6, 7, 11, 0.85), rgba(6, 7, 11, 0.85)), url('../images/background1.png') center/cover no-repeat;
}

.section-bg-2 {
    position: relative;
}

.section-bg-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background2.png') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.15;
    z-index: 0;
}

.section-bg-2 > * {
    position: relative;
    z-index: 1;
}

.section-bg-2 .card {
    background: rgba(6, 7, 11, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-bg-3 {
    position: relative;
}

.section-bg-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background3.png') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.12;
    z-index: 0;
}

.section-bg-3 > * {
    position: relative;
    z-index: 1;
}

.section-bg-4 {
    background: linear-gradient(rgba(6, 7, 11, 0.85), rgba(6, 7, 11, 0.85)), url('../images/background4.png') center/cover no-repeat;
}

.section-bg-5 {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/background5.png') center/cover no-repeat;
}

.testimonials-wrapper {
    position: relative;
}

.testimonials-carousel {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonials-track .card {
    flex: 0 0 calc(33.333% - 0.67rem);
    margin-right: 1rem;
}

.testimonials-track .card:last-child {
    margin-right: 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(156, 109, 255, 0.4);
    flex-shrink: 0;
}

.testimonial-info h3 {
    margin-bottom: 0.1rem;
}

.testimonial-info .muted {
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(6, 7, 11, 0.9);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(111, 91, 255, 0.3);
    border-color: rgba(111, 91, 255, 0.5);
}

.carousel-nav.prev {
    left: -22px;
}

.carousel-nav.next {
    right: -22px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-dot.active {
    background: var(--primary);
}

@media (max-width: 920px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 80px;
    }

    .hero-price {
        padding: 1rem;
    }

    .hero-actions-large {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        background: #0c0f1c;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem 4%;
    }

    .main-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .btn-panel {
        display: none;
    }

    .hero {
        padding-top: 4rem;
    }

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

    .testimonials-track .card {
        flex: 0 0 100%;
        margin-right: 1rem;
    }

    .carousel-nav.prev {
        left: 0;
    }

    .carousel-nav.next {
        right: 0;
    }
}
