/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

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

button {
    font: inherit;
}

body {
    color: #222;
    background: linear-gradient(
        180deg,
        #f5f8ff 0%,
        #f9fbff 40%,
        #fdfdff 100%
    );
}

html {
    scroll-behavior: smooth;
}

#prices-title {
    scroll-margin-top: 125px;
}

/* ================= LAYOUT ================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    transition: box-shadow 0.25s, background 0.25s;
}

.header.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.logo {
    height: 85px;
    max-width: 260px;
    object-fit: contain;
    background: #eee;
    padding: 10px 16px;
    border-radius: 12px;
}

/* ================= NAV ================= */

.nav-box {
    position: relative;
    padding: 14px 26px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.nav-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #2b7cff,
        #a855f7,
        #f59e0b
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

nav {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 26px;
}

nav a {
    font-weight: 600;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(
        135deg,
        #2b7cff,
        #a855f7,
        #f59e0b
    );
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(
            rgba(43,124,255,0.45),
            rgba(168,85,247,0.35),
            rgba(245,158,11,0.3)
        ),
        url("gaga.png") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 18px;
    font-size: 14px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-features div {
    padding: 10px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
}

/* ================= BUTTONS ================= */

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

.btn {
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn.primary {
    background: #fff;
    color: #333;
}

.btn.secondary {
    background: rgba(255,255,255,0.85);
    color: #2b7cff;
    border: 2px solid #2b7cff;
}

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

.btn:active {
    transform: scale(0.96);
}

/* ================= SECTIONS ================= */

.section {
    padding: 70px 0;
}

.section.light {
    background: linear-gradient(
        135deg,
        #eef3ff,
        #f7f9ff
    );
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}

/* ================= CARDS ================= */

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

.card {
    width: 100%;
    border: 0;
    background: #ffffffcc;
    color: #222;
    padding: 28px 22px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #2b7cff,
        #a855f7,
        #f59e0b
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #2b7cff,
        #a855f7,
        #f59e0b
    );
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.service-card h3 {
    font-size: 20px;
}

.service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.price {
    cursor: default;
}

.price h3 {
    margin-bottom: 12px;
}

.price p {
    color: #2b7cff;
    font-size: 22px;
    font-weight: 800;
}

small {
    display: block;
    margin-top: 18px;
    text-align: center;
    color: #666;
}

/* ================= FAQ ================= */

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    list-style: none;
    padding: 18px 0;
    color: #222;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    float: right;
    color: #2b7cff;
    font-size: 22px;
}

.faq-item[open] .faq-question::after {
    content: "-";
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 0 18px;
    color: #555;
    line-height: 1.6;
}

/* ================= MODAL ================= */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    overflow: auto;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    margin-top: 15px;
}

.modal-description {
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 28px;
    cursor: pointer;
}

/* ================= STATS ================= */

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.stat span {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #2b7cff,
        #a855f7,
        #f59e0b
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    margin-top: 8px;
    font-size: 15px;
    color: #555;
}

/* ================= CONTACTS ================= */

.contact-panel {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #2b7cff, #a855f7, #f59e0b) border-box;
    border: 2px solid transparent;
    box-shadow: 0 18px 45px rgba(43,124,255,0.12);
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef3ff;
    color: #2b7cff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-text h3 {
    max-width: 680px;
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.contact-text p {
    max-width: 680px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-points span {
    padding: 10px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef3ff, #fff8ed);
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f7f9ff, #fff);
    box-shadow: inset 0 0 0 1px rgba(43,124,255,0.12);
}

.contact-card-head span {
    display: block;
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-card-head strong {
    display: block;
    font-size: 24px;
    color: #222;
}

.contact-actions {
    display: grid;
    gap: 12px;
}

.contact-actions .btn {
    width: 100%;
    text-align: center;
}

/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(
        135deg,
        #2b7cff,
        #a855f7,
        #f59e0b
    );
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-main {
    font-size: 15px;
}

.footer-ip {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero h1 {
        font-size: 30px;
    }

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

    .contact-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .contact-text h3 {
        font-size: 24px;
    }
}
