@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --bg-primary: #080b14;
    --bg-secondary: #0d1220;

    --surface: rgba(255, 255, 255, 0.055);
    --surface-hover: rgba(255, 255, 255, 0.085);

    --border: rgba(255, 255, 255, 0.10);
    --border-light: rgba(255, 255, 255, 0.16);

    --text-primary: #ffffff;
    --text-secondary: #aab2c5;
    --text-muted: #737d94;

    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --accent-dark: #6d28d9;

    --cyan: #22d3ee;
    --blue: #3b82f6;

    --success: #34d399;

    --shadow-sm:
        0 10px 30px rgba(0, 0, 0, 0.18);

    --shadow-md:
        0 20px 60px rgba(0, 0, 0, 0.28);

    --shadow-lg:
        0 30px 100px rgba(0, 0, 0, 0.38);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --container: 1180px;

    --transition:
        0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(139, 92, 246, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(34, 211, 238, 0.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--bg-primary),
            var(--bg-secondary)
        );

    color: var(--text-primary);

    font-family:
        'Inter',
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;

    overflow-x: hidden;

}


body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.025),
            transparent 40%,
            rgba(255,255,255,0.015)
        );

    z-index: -1;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    border: 0;

    cursor: pointer;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.background-orb {

    position: fixed;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.14;

    pointer-events: none;

    z-index: -2;

}


.orb-one {

    top: -180px;

    left: -160px;

    background: var(--accent);

}


.orb-two {

    top: 35%;

    right: -220px;

    background: var(--cyan);

}


.orb-three {

    bottom: -220px;

    left: 35%;

    background: var(--blue);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    padding: 18px 0;

    background:
        rgba(8, 11, 20, 0.62);

    border-bottom:
        1px solid rgba(255,255,255,0.06);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

}


.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.logo-icon {

    display: grid;

    place-items: center;

    width: 42px;

    height: 42px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--blue)
        );

    box-shadow:
        0 10px 30px
        rgba(139, 92, 246, 0.30);

    color: #fff;

    font-size: 18px;

    font-weight: 800;

}


.logo-text {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: -0.4px;

}


.logo-text span {

    color: var(--accent-light);

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 8px;

}


.main-navigation a {

    position: relative;

    padding: 9px 14px;

    border-radius: 10px;

    color: var(--text-secondary);

    font-size: 14px;

    font-weight: 500;

    transition: var(--transition);

}


.main-navigation a:hover {

    color: #fff;

    background:
        rgba(255,255,255,0.05);

}


.main-navigation a.active {

    color: #fff;

    background:
        rgba(139,92,246,0.12);

}


.main-navigation a.active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 2px;

    width: 18px;

    height: 2px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: var(--accent-light);

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 12px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);

}


.btn:hover {

    transform: translateY(-2px);

}


.btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--blue)
        );

    box-shadow:
        0 12px 30px
        rgba(109, 40, 217, 0.28);

}


.btn-primary:hover {

    box-shadow:
        0 16px 40px
        rgba(109, 40, 217, 0.40);

}


.btn-login {

    color: var(--text-secondary);

    border-color:
        var(--border);

    background:
        rgba(255,255,255,0.035);

}


.btn-login:hover {

    color: #fff;

    background:
        rgba(255,255,255,0.08);

}


.btn-outline {

    color: #fff;

    border-color:
        var(--border-light);

    background:
        rgba(255,255,255,0.035);

}


.btn-outline:hover {

    background:
        rgba(255,255,255,0.08);

    border-color:
        rgba(167,139,250,0.35);

}


.btn-large {

    min-height: 54px;

    padding-left: 25px;

    padding-right: 25px;

    border-radius: 14px;

    font-size: 15px;

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    padding:
        105px 0
        90px;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);

    align-items: center;

    gap: 70px;

}


.hero-content {

    max-width: 650px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    padding: 8px 13px;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius: 100px;

    background:
        rgba(255,255,255,0.045);

    color: var(--text-secondary);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.3px;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 0 5px
        rgba(52,211,153,0.10);

}


.hero-content h1 {

    margin-bottom: 24px;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2.8px;

    font-weight: 800;

}


.hero-content h1 span {

    display: inline;

    background:
        linear-gradient(
            90deg,
            var(--accent-light),
            var(--cyan)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.hero-description {

    max-width: 590px;

    margin-bottom: 32px;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.85;

}


.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}


.hero-stats {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 42px;

}


.stat-item {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.stat-item strong {

    color: #fff;

    font-size: 19px;

    font-weight: 700;

}


.stat-item span {

    color: var(--text-muted);

    font-size: 12px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.image-card {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: var(--radius-xl);

    background:
        rgba(255,255,255,0.04);

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

}


.hero-image-card {

    width: min(100%, 520px);

    height: 510px;

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);

}


.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.16),
            transparent 45%,
            rgba(34,211,238,0.10)
        );

    pointer-events: none;

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 16px;

    background:
        rgba(15,20,35,0.72);

    box-shadow:
        var(--shadow-md);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

}


.floating-card strong {

    display: block;

    margin-bottom: 1px;

    color: #fff;

    font-size: 12px;

}


.floating-card span {

    display: block;

    color: var(--text-muted);

    font-size: 10px;

}


.floating-card-one {

    top: 90px;

    left: -25px;

}


.floating-card-two {

    right: -25px;

    bottom: 95px;

}


.floating-icon {

    display: grid;

    place-items: center;

    width: 36px;

    height: 36px;

    border-radius: 11px;

    background:
        rgba(52,211,153,0.12);

    color: var(--success);

    font-size: 15px;

    font-weight: 700;

}


.floating-number {

    color: var(--accent-light);

    font-size: 17px;

    font-weight: 800;

}


/* =========================================================
   SECTION
========================================================= */

.features-section,
.about-preview,
.support-section,
.cta-section {

    padding:
        90px 0;

}


.section-heading {

    max-width: 680px;

    margin:
        0 auto
        55px;

    text-align: center;

}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--accent-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.section-heading h2,
.about-preview-content h2,
.support-content h2,
.cta-content h2 {

    margin-bottom: 16px;

    color: #fff;

    font-size:
        clamp(30px, 4vw, 44px);

    line-height: 1.15;

    letter-spacing: -1.5px;

}


.section-heading h2 span,
.about-preview-content h2 span {

    color: var(--accent-light);

}


.section-heading p {

    color: var(--text-secondary);

    font-size: 15px;

}


/* =========================================================
   GLASS CARD
========================================================= */

.glass-card {

    border:
        1px solid
        var(--border);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-sm);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.feature-card {

    padding: 30px 25px;

    border-radius: var(--radius-md);

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);

}


.feature-card:hover {

    transform: translateY(-6px);

    background:
        var(--surface-hover);

    border-color:
        rgba(167,139,250,0.25);

}


.feature-icon {

    display: grid;

    place-items: center;

    width: 50px;

    height: 50px;

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.18),
            rgba(34,211,238,0.10)
        );

    border:
        1px solid
        rgba(255,255,255,0.08);

    color: var(--accent-light);

    font-size: 21px;

}


.feature-card h3 {

    margin-bottom: 10px;

    color: #fff;

    font-size: 16px;

}


.feature-card p {

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   ABOUT PREVIEW
========================================================= */

.about-preview {

    position: relative;

}


.about-preview-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 80px;

}


.about-preview-image {

    position: relative;

}


.about-preview-image .image-card {

    width: 100%;

    height: 470px;

}


.about-preview-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.about-preview-content {

    max-width: 570px;

}


.about-preview-content p {

    margin-bottom: 17px;

    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.85;

}


.about-preview-content .btn {

    margin-top: 13px;

}


/* =========================================================
   SUPPORT
========================================================= */

.support-card {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.7fr);

    align-items: center;

    gap: 50px;

    padding: 50px;

    border-radius: var(--radius-xl);

    overflow: hidden;

}


.support-content {

    max-width: 600px;

}


.support-content h2 {

    margin-bottom: 13px;

}


.support-content p {

    max-width: 520px;

    margin-bottom: 25px;

    color: var(--text-secondary);

}


.support-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.support-visual {

    position: relative;

    min-height: 260px;

    overflow: hidden;

    border-radius: 22px;

    border:
        1px solid
        rgba(255,255,255,0.08);

}


.support-visual::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.20),
            transparent 60%
        );

}


.support-visual img {

    width: 100%;

    height: 100%;

    min-height: 260px;

    object-fit: cover;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding-top: 20px;

    padding-bottom: 110px;

}


.cta-card {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    overflow: hidden;

    border:
        1px solid
        rgba(167,139,250,0.18);

    border-radius: var(--radius-xl);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(34,211,238,0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 50%,
            rgba(139,92,246,0.14),
            transparent 35%
        ),
        rgba(255,255,255,0.04);

    box-shadow:
        var(--shadow-md);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

}


.cta-content {

    max-width: 680px;

}


.cta-content h2 {

    margin-bottom: 12px;

}


.cta-content p {

    color: var(--text-secondary);

    font-size: 14px;

}


.cta-action {

    flex-shrink: 0;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding-top: 70px;

    border-top:
        1px solid
        rgba(255,255,255,0.06);

    background:
        rgba(4,6,12,0.55);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.6fr
        0.8fr
        1fr
        1.1fr;

    gap: 50px;

    padding-bottom: 55px;

}


.footer-brand {

    max-width: 330px;

}


.footer-brand .logo {

    margin-bottom: 18px;

}


.footer-brand > p {

    margin-bottom: 20px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;

}


.footer-contact a {

    color: var(--accent-light);

    font-size: 13px;

    transition: var(--transition);

}


.footer-contact a:hover {

    color: #fff;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;

}


.footer-column h3 {

    margin-bottom: 8px;

    color: #fff;

    font-size: 14px;

}


.footer-column a {

    color: var(--text-muted);

    font-size: 13px;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--accent-light);

    transform: translateX(2px);

}


.footer-column p {

    margin-bottom: 8px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        22px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.06);

}


.footer-bottom p {

    color: var(--text-muted);

    font-size: 11px;

}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 18px;

}


.footer-bottom-links a {

    color: var(--text-muted);

    font-size: 11px;

    transition: var(--transition);

}


.footer-bottom-links a:hover {

    color: #fff;

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    color: #fff;

    background:
        rgba(139,92,246,0.55);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background:
        var(--bg-primary);

}


::-webkit-scrollbar-thumb {

    border-radius: 20px;

    background:
        rgba(139,92,246,0.45);

}


::-webkit-scrollbar-thumb:hover {

    background:
        rgba(139,92,246,0.70);

}

 /* =========================================================
    FAQ COMPONENT
========================================================= */

.faq-list {

    width: min(
        100%,
        900px
    );

    margin:
        0 auto;

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.faq-item {

    border-radius: 17px;

    overflow: hidden;

}


.faq-item summary {

    display: grid;

    grid-template-columns:
        45px
        minmax(0, 1fr)
        35px;

    align-items: center;

    gap: 12px;

    min-height: 72px;

    padding:
        12px
        18px;

    list-style: none;

    cursor: pointer;

    user-select: none;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


.faq-number {

    display: grid;

    place-items: center;

    width: 34px;

    height: 34px;

    border-radius: 10px;

    background:
        rgba(139,92,246,0.10);

    color:
        var(--accent-light);

    font-size: 11px;

    font-weight: 700;

}


.faq-question {

    color: #fff;

    font-size: 14px;

    font-weight: 600;

}


.faq-toggle {

    display: grid;

    place-items: center;

    width: 30px;

    height: 30px;

    border-radius: 9px;

    background:
        rgba(255,255,255,0.05);

    color:
        var(--text-secondary);

    font-size: 19px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.faq-item[open] .faq-toggle {

    transform:
        rotate(45deg);

    background:
        rgba(139,92,246,0.15);

    color:
        var(--accent-light);

}


.faq-item[open] {

    border-color:
        rgba(139,92,246,0.20);

}


.faq-answer {

    padding:
        0
        75px
        22px
        75px;

}


.faq-answer p {

    color:
        var(--text-secondary);

    font-size: 13px;

    line-height: 1.8;

}


@media (max-width: 700px) {

    .faq-item summary {

        grid-template-columns:
            35px
            minmax(0, 1fr)
            30px;

        gap: 8px;

        min-height: 65px;

        padding:
            10px
            12px;

    }


    .faq-number {

        width: 30px;

        height: 30px;

        border-radius: 8px;

        font-size: 9px;

    }


    .faq-question {

        font-size: 12px;

    }


    .faq-toggle {

        width: 27px;

        height: 27px;

        font-size: 17px;

    }


    .faq-answer {

        padding:
            0
            18px
            20px
            50px;

    }


    .faq-answer p {

        font-size: 12px;

    }

}


@media (max-width: 400px) {

    .faq-item summary {

        grid-template-columns:
            30px
            minmax(0, 1fr)
            27px;

    }


    .faq-number {

        width: 27px;

        height: 27px;

        font-size: 8px;

    }


    .faq-question {

        font-size: 11px;

    }


    .faq-answer {

        padding-left: 42px;

    }

}

 /* =========================================================
    CONTACT PAGE
========================================================= */

.contact-form-section {

    padding:
        90px 0;

}


.contact-form-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.9fr);

    align-items: start;

    gap: 30px;

}


.contact-form-wrapper {

    padding: 42px;

    border-radius: var(--radius-xl);

}


.contact-form-wrapper .section-heading {

    margin:
        0 0 35px;

    text-align: left;

}


.contact-form-wrapper .section-heading h2 {

    font-size: 34px;

}


.contact-form-wrapper .section-heading p {

    max-width: 550px;

}


/* FORM */

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.form-group label {

    color: #fff;

    font-size: 13px;

    font-weight: 600;

}


.form-group input,
.form-group textarea {

    width: 100%;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 12px;

    outline: none;

    background:
        rgba(255,255,255,0.045);

    color: #fff;

    padding:
        13px 15px;

    font-size: 13px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

}


.form-group input {

    height: 48px;

}


.form-group textarea {

    min-height: 145px;

    resize: vertical;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color:
        rgba(170,178,197,0.55);

}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        rgba(167,139,250,0.55);

    background:
        rgba(255,255,255,0.06);

    box-shadow:
        0 0 0 4px
        rgba(139,92,246,0.08);

}


/* CHECKBOX */

.form-check {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.form-check input {

    width: 16px;

    height: 16px;

    margin-top: 3px;

    accent-color:
        var(--accent);

    flex-shrink: 0;

}


.form-check label {

    color:
        var(--text-muted);

    font-size: 11px;

    line-height: 1.6;

}


.form-check label a {

    color:
        var(--accent-light);

}


.contact-form > .btn {

    width: fit-content;

}


/* CONTACT SIDE */

.contact-side {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.contact-image-card {

    width: 100%;

    height: 360px;

    border-radius:
        var(--radius-xl);

}


.contact-image-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.contact-info-card {

    padding: 30px;

    border-radius:
        var(--radius-lg);

}


.contact-info-card h3 {

    margin-bottom: 10px;

    color: #fff;

    font-size: 19px;

}


.contact-info-card p {

    margin-bottom: 20px;

    color:
        var(--text-secondary);

    font-size: 13px;

    line-height: 1.8;

}


/* CONTACT INFORMATION BUTTON */

.feature-card .btn {

    margin-top: 15px;

}


/* RESPONSIVE */

@media (max-width: 900px) {

    .contact-form-grid {

        grid-template-columns: 1fr;

    }


    .contact-side {

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        align-items: start;

    }


    .contact-image-card {

        height: 300px;

    }

}


@media (max-width: 700px) {

    .contact-form-section {

        padding:
            65px 0;

    }


    .contact-form-wrapper {

        padding: 27px 20px;

        border-radius:
            23px;

    }


    .contact-form-wrapper .section-heading {

        margin-bottom: 27px;

    }


    .contact-form-wrapper .section-heading h2 {

        font-size: 28px;

    }


    .contact-side {

        display: flex;

    }


    .contact-image-card {

        height: 280px;

        border-radius:
            20px;

    }


    .contact-info-card {

        padding: 23px 20px;

        border-radius:
            20px;

    }


    .contact-form > .btn {

        width: 100%;

    }

}


@media (max-width: 400px) {

    .contact-form-wrapper {

        padding:
            23px 16px;

    }


    .contact-image-card {

        height: 240px;

    }


    .contact-info-card {

        padding:
            20px 16px;

    }

}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-section {

    padding:
        80px 0
        100px;

}


.legal-layout {

    display: grid;

    grid-template-columns:
        260px
        minmax(0, 1fr);

    align-items: start;

    gap: 25px;

}


/* =========================================================
   LEGAL SIDEBAR
========================================================= */

.legal-sidebar {

    position: sticky;

    top: 100px;

    padding: 25px;

    border-radius:
        var(--radius-lg);

}


.legal-sidebar h3 {

    margin:
        8px 0
        20px;

    color: #fff;

    font-size: 18px;

}


.legal-navigation {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.legal-navigation a {

    display: block;

    padding:
        9px
        10px;

    border-radius: 9px;

    color:
        var(--text-muted);

    font-size: 11px;

    line-height: 1.5;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;

}


.legal-navigation a:hover {

    color: #fff;

    background:
        rgba(139,92,246,0.08);

    transform:
        translateX(3px);

}


/* =========================================================
   LEGAL CONTENT
========================================================= */

.legal-content {

    padding:
        45px;

    border-radius:
        var(--radius-xl);

}


.legal-updated {

    margin-bottom:
        35px;

    padding:
        12px 15px;

    border:
        1px solid
        rgba(139,92,246,0.14);

    border-radius: 11px;

    background:
        rgba(139,92,246,0.06);

    color:
        var(--text-muted);

    font-size: 11px;

}


.legal-updated strong {

    color:
        var(--accent-light);

}


.legal-content section {

    scroll-margin-top:
        110px;

    padding-bottom:
        30px;

    margin-bottom:
        30px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.07);

}


.legal-content section:last-child {

    padding-bottom: 0;

    margin-bottom: 0;

    border-bottom: 0;

}


.legal-content h2 {

    margin-bottom:
        17px;

    color: #fff;

    font-size: 22px;

    line-height: 1.35;

}


.legal-content h3 {

    margin:
        25px 0
        10px;

    color: #fff;

    font-size: 15px;

}


.legal-content p {

    margin-bottom:
        15px;

    color:
        var(--text-secondary);

    font-size: 13px;

    line-height: 1.9;

}


.legal-content p:last-child {

    margin-bottom: 0;

}


.legal-content ul {

    margin:
        10px 0
        20px;

    padding-left:
        22px;

}


.legal-content li {

    margin-bottom:
        8px;

    color:
        var(--text-secondary);

    font-size: 13px;

    line-height: 1.8;

}


.legal-content li::marker {

    color:
        var(--accent-light);

}


/* =========================================================
   LEGAL CONTACT BOX
========================================================= */

.legal-contact-box {

    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top:
        20px;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius:
        13px;

    background:
        rgba(255,255,255,0.035);

}


.legal-contact-box strong {

    color: #fff;

    font-size: 12px;

}


.legal-contact-box a {

    color:
        var(--accent-light);

    font-size: 13px;

}


/* =========================================================
   LEGAL RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .legal-layout {

        grid-template-columns: 1fr;

    }


    .legal-sidebar {

        position: relative;

        top: auto;

    }


    .legal-navigation {

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 700px) {

    .legal-section {

        padding:
            55px 0
            70px;

    }


    .legal-content {

        padding:
            28px 20px;

        border-radius:
            20px;

    }


    .legal-sidebar {

        padding:
            20px;

        border-radius:
            20px;

    }


    .legal-navigation {

        grid-template-columns: 1fr;

    }


    .legal-content h2 {

        font-size: 19px;

    }


    .legal-content h3 {

        font-size: 14px;

    }


    .legal-content p,
    .legal-content li {

        font-size: 12px;

        line-height: 1.8;

    }

}