:root {
    --primary: #7c3aed;
    --primary-dark: #6325cf;
    --secondary: #ec4899;
    --text: #241b33;
    --muted: #746b82;
    --background: #ffffff;
    --surface: #faf8ff;
    --border: #ece7f3;
    --max-width: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

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

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.96rem;
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--primary);
}

.hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 15%, rgba(236,72,153,0.12), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(124,58,237,0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
    padding: 80px 0;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f1eafe;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 620px;
    margin-bottom: 32px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 12px 30px rgba(124,58,237,0.22);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card {
    width: min(100%, 390px);
    aspect-ratio: 1;
    border-radius: 42px;
    background: white;
    box-shadow: 0 30px 80px rgba(73,45,105,0.14);
    border: 1px solid rgba(124,58,237,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.logo-card img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 22px;
}

.logo-card strong {
    font-size: 2rem;
    color: var(--primary);
}

.logo-card span {
    color: var(--muted);
    margin-top: 6px;
    text-align: center;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--surface);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(50,31,73,0.05);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1eafe;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

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

.safety {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.safety-panel {
    border-radius: 30px;
    padding: 42px;
    background: linear-gradient(135deg, #7c3aed, #9b4fdf, #ec4899);
    color: white;
}

.safety-panel h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.safety-panel p {
    opacity: 0.92;
}

.safety-list {
    display: grid;
    gap: 20px;
}

.safety-item {
    padding: 22px;
    border-bottom: 1px solid var(--border);
}

.safety-item:last-child {
    border-bottom: 0;
}

.safety-item h3 {
    margin-bottom: 7px;
}

.safety-item p {
    color: var(--muted);
}

.cta {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.cta p {
    color: var(--muted);
    margin-bottom: 30px;
}

footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

.copyright {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 14px;
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }

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

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 64px 0;
        gap: 45px;
    }

    .hero-copy {
        text-align: center;
    }

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

    .buttons {
        justify-content: center;
    }

    h1 {
        letter-spacing: -2px;
    }

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

    .footer-grid {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .section {
        padding: 72px 0;
    }

    .logo-card {
        max-width: 310px;
        border-radius: 32px;
    }

    .logo-card img {
        width: 125px;
        height: 125px;
    }

    .logo-card strong {
        font-size: 1.7rem;
    }
}
/* VEAMONOSPUES TRUST SECTION */

.trust-section {
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.06);
    top: -180px;
    right: -140px;
    pointer-events: none;
}

.trust-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    position: relative;
}

.trust-kicker {
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #f1eafe;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.trust-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.trust-header p {
    color: var(--muted);
    font-size: 1.08rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 14px 40px rgba(50,31,73,0.055);
}

.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(
        135deg,
        rgba(124,58,237,0.13),
        rgba(236,72,153,0.12)
    );
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

.trust-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 16px;
}

.trust-detail {
    display: block;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.trust-note {
    max-width: 850px;
    margin: 42px auto 0;
    padding: 25px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(
        135deg,
        rgba(124,58,237,0.07),
        rgba(236,72,153,0.06)
    );
    border: 1px solid rgba(124,58,237,0.12);
    border-radius: 22px;
}

.trust-note-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.trust-note strong {
    display: block;
    margin-bottom: 3px;
}

.trust-note p {
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1000px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-note {
        align-items: flex-start;
    }
}
/* VEAMONOSPUES LEGAL PAGES */

.legal-hero {
    padding: 80px 0 55px;
    background:
        radial-gradient(circle at 90% 10%, rgba(236,72,153,0.10), transparent 28%),
        radial-gradient(circle at 10% 80%, rgba(124,58,237,0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
    border-bottom: 1px solid var(--border);
}

.legal-hero-content {
    max-width: 820px;
}

.legal-hero .badge {
    margin-bottom: 18px;
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.legal-hero p {
    color: var(--muted);
    font-size: 1.06rem;
    max-width: 750px;
}

.legal-updated {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 55px;
    padding: 70px 0 100px;
}

.legal-menu {
    position: sticky;
    top: 105px;
    align-self: start;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    background: white;
}

.legal-menu strong {
    display: block;
    margin-bottom: 13px;
}

.legal-menu a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-menu a:hover {
    color: var(--primary);
}

.legal-content {
    max-width: 820px;
}

.legal-section {
    margin-bottom: 50px;
    scroll-margin-top: 110px;
}

.legal-section h2 {
    font-size: 1.65rem;
    letter-spacing: -0.7px;
    margin-bottom: 17px;
}

.legal-section h3 {
    font-size: 1.08rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-section p {
    color: #51485d;
    margin-bottom: 15px;
}

.legal-section ul {
    color: #51485d;
    padding-left: 23px;
    margin: 12px 0 18px;
}

.legal-section li {
    margin-bottom: 9px;
}

.legal-callout {
    padding: 22px 24px;
    margin: 24px 0;
    border-radius: 18px;
    border: 1px solid rgba(124,58,237,0.16);
    background: linear-gradient(
        135deg,
        rgba(124,58,237,0.07),
        rgba(236,72,153,0.045)
    );
}

.legal-callout strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.legal-contact {
    margin-top: 20px;
    padding: 25px;
    background: #faf8ff;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.legal-contact a {
    color: var(--primary);
    font-weight: 700;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 0.94rem;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--border);
}

.legal-table th {
    background: #faf8ff;
}

.legal-note {
    font-size: 0.88rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .legal-menu {
        position: static;
    }
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 55px 0 40px;
    }

    .legal-layout {
        padding: 50px 0 75px;
    }

    .legal-table {
        display: block;
        overflow-x: auto;
    }
}
/* VEAMONOSPUES ACCOUNT DELETION */

.deletion-hero {
    padding: 85px 0 65px;
    text-align: center;
    background:
        radial-gradient(circle at 82% 15%, rgba(236,72,153,0.11), transparent 27%),
        radial-gradient(circle at 15% 85%, rgba(124,58,237,0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
    border-bottom: 1px solid var(--border);
}

.deletion-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.deletion-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin: 20px 0;
}

.deletion-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.06rem;
}

.deletion-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 75px 0 100px;
}

.deletion-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 38px;
    margin-bottom: 26px;
    box-shadow: 0 15px 45px rgba(50,31,73,0.05);
}

.deletion-card h2 {
    font-size: 1.55rem;
    margin-bottom: 15px;
    letter-spacing: -0.6px;
}

.deletion-card p {
    color: var(--muted);
    margin-bottom: 14px;
}

.deletion-card ul {
    padding-left: 22px;
    color: var(--muted);
}

.deletion-card li {
    margin-bottom: 9px;
}

.deletion-action {
    padding: 42px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,0.08),
            rgba(236,72,153,0.07)
        );
    border: 1px solid rgba(124,58,237,0.15);
    margin-bottom: 28px;
}

.deletion-action-icon {
    width: 68px;
    height: 68px;
    border-radius: 21px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
}

.deletion-action h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.deletion-action p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: var(--muted);
}

.deletion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    color: white;
    font-weight: 800;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    box-shadow:
        0 14px 30px rgba(124,58,237,0.20);
}

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

.deletion-steps {
    counter-reset: deletionStep;
    display: grid;
    gap: 17px;
    margin-top: 22px;
}

.deletion-step {
    position: relative;
    padding: 21px 21px 21px 72px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
}

.deletion-step::before {
    counter-increment: deletionStep;
    content: counter(deletionStep);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1eafe;
    color: var(--primary);
    font-weight: 800;
}

.deletion-step strong {
    display: block;
    margin-bottom: 5px;
}

.deletion-step p {
    margin: 0;
    font-size: 0.94rem;
}

.deletion-warning {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #f3d4dd;
    background: #fff8fa;
}

.deletion-warning strong {
    display: block;
    margin-bottom: 7px;
}

.deletion-warning p {
    color: var(--muted);
    margin: 0;
}

.deletion-small {
    margin-top: 18px;
    font-size: 0.86rem;
    color: var(--muted);
}

@media (max-width: 600px) {

    .deletion-hero {
        padding: 58px 0 45px;
    }

    .deletion-main {
        padding: 50px 0 75px;
    }

    .deletion-card,
    .deletion-action {
        padding: 27px 22px;
    }

    .deletion-step {
        padding-left: 65px;
    }
}
/* VEAMONOSPUES CONTACT PAGE */

.contact-hero {
    padding: 85px 0 65px;
    text-align: center;
    background:
        radial-gradient(circle at 82% 15%, rgba(236,72,153,0.11), transparent 27%),
        radial-gradient(circle at 15% 85%, rgba(124,58,237,0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
    border-bottom: 1px solid var(--border);
}

.contact-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin: 20px 0;
}

.contact-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.06rem;
}

.contact-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 75px 0 100px;
}

.contact-card {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: white;
    box-shadow: 0 15px 45px rgba(50,31,73,0.05);
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto 25px;
}

.contact-email {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 800;
}

.contact-button {
    display: inline-flex;
    min-height: 55px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    box-shadow: 0 14px 30px rgba(124,58,237,0.20);
}

.contact-topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.contact-topic {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #faf8ff;
}

.contact-topic strong {
    display: block;
    margin-bottom: 7px;
}

.contact-topic p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 750px) {
    .contact-topics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 58px 0 45px;
    }

    .contact-main {
        padding: 50px 0 75px;
    }

    .contact-card {
        padding: 28px 22px;
    }
}