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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8f5ff;
    color: #17121f;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.background-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.45;
    z-index: -1;
}

.glow-one {
    top: -120px;
    left: -120px;
    background: #a855f7;
}

.glow-two {
    right: -150px;
    top: 280px;
    background: #7c3aed;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 8%;

    background: rgba(248, 245, 255, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.logo,
.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;

    background: linear-gradient(135deg, #7c3aed, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b3b5f;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #7c3aed;
}

.nav-button {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;

    color: white;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);

    padding: 12px 20px;
    border-radius: 999px;

    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.28);
    transition: 0.25s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.38);
}

.hero {
    min-height: 92vh;
    padding: 90px 8% 80px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 720px;
}

.badge {
    display: inline-flex;
    margin-bottom: 26px;

    padding: 10px 16px;
    border-radius: 999px;

    color: #6d28d9;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(124, 58, 237, 0.16);

    font-size: 0.9rem;
    font-weight: 800;

    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.08);
}

.hero h1 {
    font-size: clamp(3.3rem, 7vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    font-weight: 900;

    margin-bottom: 30px;
}

.hero p {
    max-width: 630px;

    font-size: 1.2rem;
    color: #5e506e;

    margin-bottom: 42px;
}

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

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-weight: 800;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 999px;

    transition: 0.25s ease;
}

.primary-btn {
    color: white;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    box-shadow: 0 18px 42px rgba(124, 58, 237, 0.32);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(124, 58, 237, 0.42);
}

.secondary-btn {
    color: #6d28d9;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 560px;
}

.phone-card {
    position: relative;
    width: min(360px, 90vw);
    height: 610px;

    padding: 18px;

    border-radius: 44px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 239, 255, 0.92));
    border: 1px solid rgba(124, 58, 237, 0.18);

    box-shadow:
        0 30px 80px rgba(83, 40, 143, 0.24),
        inset 0 0 0 10px rgba(255, 255, 255, 0.42);
}

.phone-top {
    width: 90px;
    height: 8px;

    margin: 4px auto 18px;

    border-radius: 999px;
    background: #20152f;
    opacity: 0.9;
}

.map-area {
    position: relative;
    height: 410px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(circle at 30% 25%, rgba(192, 132, 252, 0.55), transparent 25%),
        radial-gradient(circle at 78% 68%, rgba(124, 58, 237, 0.5), transparent 24%),
        linear-gradient(135deg, #ede5ff, #faf7ff);
}

.map-line {
    position: absolute;
    height: 3px;
    width: 340px;

    background: rgba(124, 58, 237, 0.16);
    border-radius: 999px;
    transform: rotate(-26deg);
}

.map-line.one {
    top: 90px;
    left: -30px;
}

.map-line.two {
    top: 210px;
    left: 20px;
}

.map-line.three {
    top: 320px;
    left: -40px;
}

.spot {
    position: absolute;

    width: 18px;
    height: 18px;

    border-radius: 999px;

    background: linear-gradient(135deg, #7c3aed, #c084fc);
    border: 4px solid white;

    box-shadow: 0 0 0 12px rgba(124, 58, 237, 0.14);
}

.spot-one {
    top: 82px;
    left: 84px;
}

.spot-two {
    top: 170px;
    right: 70px;
}

.spot-three {
    bottom: 92px;
    left: 110px;
}

.spot-four {
    bottom: 48px;
    right: 92px;
}

.profile-preview {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 18px;
    padding: 16px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.avatar {
    width: 48px;
    height: 48px;

    border-radius: 18px;

    background:
        radial-gradient(circle at 35% 30%, #ffffff 0 12%, transparent 13%),
        linear-gradient(135deg, #7c3aed, #c084fc);
}

.profile-preview h4 {
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.profile-preview p {
    font-size: 0.82rem;
    color: #725f88;
}

.floating-card {
    position: absolute;

    width: 210px;
    padding: 20px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(124, 58, 237, 0.16);

    box-shadow: 0 20px 60px rgba(83, 40, 143, 0.16);
}

.floating-card h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.floating-card p {
    font-size: 0.9rem;
    color: #645170;
}

.card-left {
    left: 0;
    top: 120px;
}

.card-right {
    right: 0;
    bottom: 110px;
}

.section {
    padding: 110px 8%;
    max-width: 1240px;
    margin: auto;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-heading span,
.privacy-card span,
.cta span {
    display: inline-block;

    margin-bottom: 14px;

    color: #7c3aed;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.section-heading h2,
.privacy-card h2,
.cta h2 {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.section-text {
    max-width: 820px;
    margin: 0 auto;

    text-align: center;
    color: #645170;
    font-size: 1.12rem;
}

.grid {
    margin-top: 58px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.card {
    position: relative;
    overflow: hidden;

    padding: 34px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(124, 58, 237, 0.12);

    box-shadow: 0 20px 60px rgba(83, 40, 143, 0.08);

    transition: 0.25s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;

    height: 5px;

    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(83, 40, 143, 0.14);
}

.card-number {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 0.9rem;
    font-weight: 900;
    color: #7c3aed;
}

.card h3 {
    margin-bottom: 12px;

    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.card p {
    color: #645170;
}

.privacy-section {
    max-width: none;
}

.privacy-card {
    max-width: 1120px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;

    padding: 58px;

    border-radius: 36px;

    color: white;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(135deg, #5b21b6, #7c3aed, #c084fc);

    box-shadow: 0 30px 90px rgba(124, 58, 237, 0.32);
}

.privacy-card span {
    color: #f3e8ff;
}

.privacy-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.86);
}

.faq-list {
    max-width: 860px;
    margin: 54px auto 0;

    display: grid;
    gap: 18px;
}

.faq-item {
    padding: 28px 32px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.faq-item p {
    color: #645170;
}

.cta {
    margin: 80px 8% 0;
    padding: 90px 8%;

    text-align: center;

    border-radius: 42px;

    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 25%),
        linear-gradient(135deg, #5b21b6, #7c3aed, #a855f7, #c084fc);

    color: white;

    box-shadow: 0 30px 90px rgba(124, 58, 237, 0.34);
}

.cta span {
    color: #f3e8ff;
}

.cta p {
    max-width: 650px;
    margin: 22px auto 38px;

    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.86);
}

.light-btn {
    background: white;
    color: #7c3aed;
    box-shadow: 0 18px 42px rgba(39, 13, 71, 0.2);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 42px 8%;

    color: #725f88;
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

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

    .privacy-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .navbar {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        letter-spacing: -0.06em;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 24px;
    }

    .phone-card {
        height: 540px;
    }

    .map-area {
        height: 350px;
    }

    .floating-card {
        display: none;
    }

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

    .section {
        padding: 85px 7%;
    }

    .privacy-card {
        padding: 38px 26px;
        border-radius: 28px;
    }

    .cta {
        margin: 50px 5% 0;
        padding: 70px 7%;
        border-radius: 30px;
    }

    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
