/* =========================================================
   CIRCLESPACE
   Main stylesheet
========================================================= */


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #fbfaf8;
    color: #17161c;
    line-height: 1.6;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= VARIABLES ================= */

:root {

    --dark: #17161c;
    --dark-soft: #29272f;

    --cream: #fbfaf8;
    --white: #ffffff;

    --purple: #7656e8;
    --purple-dark: #5c3dc9;
    --purple-light: #eee9ff;

    --pink: #ff6f91;
    --pink-light: #fff0f4;

    --blue: #4d8df7;
    --blue-light: #edf4ff;

    --green: #43b58b;
    --green-light: #ebfaf4;

    --orange: #ff9a55;
    --orange-light: #fff3e9;

    --yellow: #e5b938;
    --yellow-light: #fff8df;

    --border: #e8e5e0;

    --shadow: 0 20px 60px rgba(27, 22, 42, 0.08);

    --radius: 24px;
}


/* ================= UTILITIES ================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--purple);
    margin-bottom: 18px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.section-heading h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
}

.section-heading h2 span {
    color: var(--purple);
}

.section-heading p {
    color: #77727c;
    font-size: 17px;
    max-width: 650px;
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(251, 250, 248, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 13px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 21px;
}

.logo > span:last-child > span {
    color: var(--purple);
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--purple);
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(118, 86, 232, 0.25);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #625e67;
    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--purple);
}

.nav-join {
    border: 0;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--dark);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

.nav-join:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--dark);
    padding: 10px;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin: 5px 0;
}

.mobile-menu {
    display: none;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 850px;
    padding: 180px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 15%, #eee9ff 0, transparent 30%),
        radial-gradient(circle at 5% 80%, #fff0f4 0, transparent 25%),
        var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 14px;
    color: #69636f;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(67,181,139,0.1);
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 7vw, 94px);
    letter-spacing: -5px;
    line-height: 0.98;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--purple);
}

.hero-text {
    max-width: 570px;
    color: #706b75;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.white-btn {
    border-radius: 14px;
    padding: 15px 22px;
    border: 0;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-btn {
    background: var(--purple);
    color: white;
    box-shadow: 0 15px 30px rgba(118,86,232,0.22);
}

.primary-btn:hover {
    background: var(--purple-dark);
    transform: translateY(-3px);
}

.primary-btn span {
    margin-left: 10px;
}

.secondary-btn {
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.play-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--purple-light);
    color: var(--purple);
    font-size: 9px;
}

.hero-stats {
    display: flex;
    align-items: center;
    margin-top: 55px;
    gap: 25px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
}

.stat span {
    color: #89838c;
    font-size: 12px;
}

.stat-line {
    width: 1px;
    height: 40px;
    background: var(--border);
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    height: 590px;
    position: relative;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px dashed #d8d1f3;
    border-radius: 50%;
}

.orbit-large {
    width: 520px;
    height: 520px;
}

.orbit-small {
    width: 360px;
    height: 360px;
    border-color: #e7dfe8;
}

.hero-center-card {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f1edff);
    box-shadow: 0 30px 70px rgba(78,59,139,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    text-align: center;
}

.center-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    background: var(--purple);
    color: white;
    border-radius: 20px;
    font-size: 25px;
    margin-bottom: 18px;
    box-shadow: 0 15px 30px rgba(118,86,232,0.25);
}

.hero-center-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
}

.hero-center-card p {
    color: #817b89;
    font-size: 13px;
    max-width: 130px;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    background: white;
    padding: 12px 15px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(40,30,70,0.12);
    border: 1px solid rgba(255,255,255,0.8);
}

.floating-card strong {
    display: block;
    font-size: 12px;
}

.floating-card small {
    color: #928b98;
    font-size: 10px;
}

.card-top {
    top: 50px;
    left: 5px;
}

.card-right {
    right: -5px;
    top: 230px;
}

.card-bottom {
    bottom: 60px;
    left: 60px;
}

.mini-avatar {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
}

.avatar-purple {
    background: var(--purple);
}

.avatar-orange {
    background: var(--orange);
}

.activity-icon {
    width: 38px;
    height: 38px;
    background: var(--pink-light);
    border-radius: 11px;
    display: grid;
    place-items: center;
}

.check {
    margin-left: 5px;
    color: var(--green);
    font-weight: bold;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-left: 10px;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.circle-one {
    width: 48px;
    height: 48px;
    top: 100px;
    right: 55px;
    background: var(--pink);
    color: white;
}

.circle-two {
    width: 38px;
    height: 38px;
    bottom: 115px;
    right: 90px;
    background: var(--green);
    color: white;
}

.circle-three {
    width: 32px;
    height: 32px;
    top: 360px;
    left: 15px;
    background: var(--orange);
    color: white;
}


/* ================= TRUST STRIP ================= */

.trust-strip {
    background: var(--dark);
    color: white;
    padding: 23px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.trust-inner > p {
    color: #aaa6b0;
    font-size: 13px;
}

.trust-items {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-items span {
    color: #e8e5eb;
    font-size: 12px;
}


/* ================= CIRCLES ================= */

.circles-section {
    background: white;
}

.circle-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.circle-card {
    padding: 28px 23px;
    min-height: 350px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.circle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.circle-number {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.5;
}

.circle-age {
    margin-top: 35px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.7;
}

.circle-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    margin: 12px 0;
}

.circle-card p {
    color: #6e6871;
    font-size: 13px;
    line-height: 1.65;
}

.circle-card button {
    border: 0;
    background: transparent;
    margin-top: auto;
    padding-top: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
}

.card-pink {
    background: var(--pink-light);
}

.card-pink button {
    color: #df5478;
}

.card-blue {
    background: var(--blue-light);
}

.card-blue button {
    color: var(--blue);
}

.card-green {
    background: var(--green-light);
}

.card-green button {
    color: #29946d;
}

.card-yellow {
    background: var(--yellow-light);
}

.card-yellow button {
    color: #ae8511;
}

.card-purple {
    background: var(--purple-light);
}

.card-purple button {
    color: var(--purple);
}


/* ================= ACTIVITIES ================= */

.activities-section {
    background: #f5f3f0;
}

.activities-header {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
    gap: 60px;
}

.activities-header > p {
    color: #78727c;
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 12px;
}

.activity-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 15px;
}

.activity-card {
    min-height: 240px;
    background: white;
    border-radius: 23px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #ece9e5;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.activity-large {
    grid-row: span 2;
    background: var(--purple);
    color: white;
}

.activity-number {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.45;
}

.big-emoji {
    font-size: 65px;
    margin: 35px 0 20px;
}

.activity-emoji {
    font-size: 42px;
    margin: 28px 0 17px;
}

.activity-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    margin-bottom: 7px;
}

.activity-card p {
    color: #77717b;
    font-size: 13px;
    max-width: 250px;
}

.activity-large p {
    color: #ddd7f4;
}

.activity-arrow {
    position: absolute;
    right: 22px;
    bottom: 20px;
    font-size: 20px;
}

.activity-large .activity-arrow {
    color: white;
}


/* ================= SAFETY ================= */

.safety-section {
    background: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.safety-visual {
    height: 500px;
    background:
        radial-gradient(circle, #eee9ff 0, transparent 55%),
        #f8f6ff;
    border-radius: 35px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shield-large {
    width: 220px;
    height: 260px;
    background: var(--purple);
    clip-path: polygon(
        50% 0,
        92% 16%,
        88% 61%,
        50% 100%,
        12% 61%,
        8% 16%
    );
    display: grid;
    place-items: center;
    color: white;
    font-size: 55px;
    box-shadow: 0 30px 60px rgba(118,86,232,0.25);
}

.security-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 15px;
    padding: 12px 16px;
    box-shadow: var(--shadow);
}

.security-card > span {
    font-size: 20px;
}

.security-card strong {
    display: block;
    font-size: 12px;
}

.security-card small {
    display: block;
    font-size: 10px;
    color: #99939e;
}

.security-one {
    top: 70px;
    left: 35px;
}

.security-two {
    right: 25px;
    bottom: 70px;
}

.safety-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    letter-spacing: -3px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.safety-content h2 span {
    color: var(--purple);
}

.lead {
    color: #756f78;
    font-size: 16px;
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 35px;
}

.safety-list {
    display: grid;
    gap: 22px;
}

.safety-item {
    display: flex;
    gap: 15px;
}

.safety-check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--purple-light);
    color: var(--purple);
    display: grid;
    place-items: center;
    font-weight: bold;
}

.safety-item strong {
    font-size: 14px;
}

.safety-item p {
    font-size: 12px;
    color: #85808a;
    margin-top: 3px;
}


/* ================= PROCESS ================= */

.process-section {
    background: #f7f5f2;
}

.process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 75px;
}

.process-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 57px;
    height: 1px;
    background: #ddd8d2;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 11px;
    color: #aaa3ad;
    margin-bottom: 14px;
}

.step-icon {
    width: 82px;
    height: 82px;
    border-radius: 25px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    place-items: center;
    margin: auto;
    font-size: 24px;
    color: var(--purple);
}

.process-step h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-top: 20px;
    font-size: 17px;
}

.process-step p {
    color: #88818b;
    font-size: 12px;
    max-width: 160px;
    margin: 8px auto 0;
}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
    background: white;
}

.testimonial-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.testimonial-controls {
    display: flex;
    gap: 8px;
}

.testimonial-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    transition: 0.2s;
}

.testimonial-controls button:hover {
    background: var(--purple);
    color: white;
}

.testimonial-slider {
    margin-top: 55px;
    position: relative;
    min-height: 330px;
}

.testimonial {
    display: none;
    background: #f6f3ff;
    border-radius: 30px;
    padding: 50px;
    max-width: 900px;
    margin: auto;
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--purple);
    line-height: 0.7;
}

.testimonial > p {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.45;
    max-width: 730px;
    margin: 20px 0 35px;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 14px;
    font-weight: 700;
}

.avatar-pink {
    background: var(--pink);
}

.avatar-blue {
    background: var(--blue);
}

.avatar-green {
    background: var(--green);
}

.person strong {
    display: block;
    font-size: 13px;
}

.person span {
    display: block;
    color: #8c8690;
    font-size: 11px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    background: #d9d4df;
    border-radius: 50%;
}

.testimonial-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--purple);
}


/* ================= CTA ================= */

.cta-section {
    background: var(--purple);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.light-label {
    color: #d9d0ff;
}

.cta-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(55px, 8vw, 100px);
    letter-spacing: -5px;
    line-height: 0.95;
}

.cta-content > p {
    max-width: 480px;
    margin: 25px auto 35px;
    color: #ded8f8;
    font-size: 16px;
}

.white-btn {
    background: white;
    color: var(--purple);
    padding: 16px 25px;
}

.white-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.white-btn span {
    margin-left: 10px;
}

.cta-content small {
    display: block;
    color: #c9c0ed;
    margin-top: 18px;
    font-size: 11px;
}

.cta-decoration {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 50%;
}

.cta-left {
    width: 500px;
    height: 500px;
    left: -220px;
    top: -120px;
}

.cta-right {
    width: 600px;
    height: 600px;
    right: -300px;
    bottom: -300px;
}


/* ================= ABOUT ================= */

.about-section {
    background: #17161c;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-heading h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.about-heading h2 span {
    color: #a995ff;
}

.about-text {
    padding-top: 12px;
}

.about-text p {
    color: #a9a5ad;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.about-text .about-large {
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    line-height: 1.5;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: #c1b4ff;
    font-weight: 700;
    margin-top: 15px;
}

.text-link span {
    transition: 0.2s;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* ================= FAQ ================= */

.faq-section {
    background: #f8f6f3;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.faq-intro h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.faq-intro h2 span {
    color: var(--purple);
}

.faq-intro > p {
    color: #7d7780;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 380px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 23px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: grid;
    place-items: center;
    transition: 0.25s;
    font-size: 17px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--purple);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: #817b84;
    font-size: 13px;
    line-height: 1.8;
    padding: 0 45px 23px 0;
}


/* ================= FOOTER ================= */

.footer {
    background: #111014;
    color: white;
    padding: 75px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand > p {
    color: #85818a;
    margin: 18px 0 25px;
    font-size: 13px;
}

.footer-logo {
    color: white;
}

.whatsapp-btn {
    background: #211e25;
    border: 1px solid #343039;
    color: #ddd8e2;
    border-radius: 12px;
    padding: 11px 15px;
    font-size: 12px;
}

.whatsapp-btn span {
    color: #55c893;
    margin-right: 6px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 12px;
    color: white;
    margin-bottom: 8px;
}

.footer-column a {
    color: #817c86;
    font-size: 12px;
    transition: 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #29262d;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: #68636d;
    font-size: 11px;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}


/* ================= MODAL ================= */

.modal-overlay,
.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 16, 20, 0.72);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show,
.success-overlay.show {
    display: flex;
}

.registration-modal {
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f3f1ef;
    border-radius: 50%;
    font-size: 22px;
}

.modal-header {
    padding-right: 40px;
    margin-bottom: 28px;
}

.modal-icon {
    width: 45px;
    height: 45px;
    background: var(--purple);
    color: white;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 35px;
    letter-spacing: -1px;
}

.modal-header p {
    color: #85808a;
    font-size: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-group label small {
    color: #aaa4ad;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e5e1dc;
    background: #fbfaf8;
    border-radius: 11px;
    padding: 12px 13px;
    outline: none;
    font-size: 12px;
    transition: 0.2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(118,86,232,0.08);
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.interest-option {
    cursor: pointer;
}

.interest-option input {
    display: none;
}

.interest-option span {
    display: block;
    padding: 10px 7px;
    border: 1px solid #e5e1dc;
    border-radius: 10px;
    font-size: 11px;
    text-align: center;
    transition: 0.2s;
}

.interest-option input:checked + span {
    background: var(--purple-light);
    border-color: var(--purple);
    color: var(--purple);
}

.agreement {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 11px;
    color: #7d7781;
    margin: 12px 0 20px;
}

.agreement input {
    margin-top: 3px;
}

.submit-btn {
    width: 100%;
    border: 0;
    padding: 14px;
    border-radius: 12px;
    background: var(--purple);
    color: white;
    font-weight: 700;
}

.submit-btn span {
    margin-left: 8px;
}

.privacy-note {
    text-align: center;
    color: #aaa4ad;
    font-size: 10px;
    margin-top: 12px;
}


/* ================= SUCCESS ================= */

.success-box {
    width: min(400px, 100%);
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    animation: modalIn 0.3s ease;
}

.success-icon {
    width: 65px;
    height: 65px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 28px;
}

.success-box h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
}

.success-box p {
    color: #827c86;
    font-size: 13px;
    margin: 12px 0 25px;
}


/* ================= TOAST ================= */

.toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: var(--dark);
    color: white;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 12px;
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: 0.3s;
    z-index: 5000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 17px;
    }

    .circle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .circle-card:last-child {
        grid-column: span 3;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .safety-grid {
        gap: 50px;
    }
}


@media (max-width: 850px) {

    .desktop-nav,
    .nav-join {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {
        background: white;
        width: min(100% - 30px, 500px);
        margin: 10px auto 0;
        padding: 20px;
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .mobile-menu.show {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu a {
        padding: 12px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
    }

    .mobile-menu a:hover {
        background: var(--purple-light);
        color: var(--purple);
    }

    .mobile-menu button {
        margin-top: 8px;
        border: 0;
        background: var(--purple);
        color: white;
        padding: 13px;
        border-radius: 11px;
        font-weight: 700;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .activities-header,
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .safety-visual {
        max-width: 600px;
    }

    .process {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }

    .process-line {
        display: none;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        display: none;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat strong {
        font-size: 18px;
    }

    .stat-line {
        height: 30px;
    }

    .hero-visual {
        height: 440px;
    }

    .orbit-large {
        width: 350px;
        height: 350px;
    }

    .orbit-small {
        width: 260px;
        height: 260px;
    }

    .hero-center-card {
        width: 190px;
        height: 190px;
    }

    .center-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .hero-center-card h3 {
        font-size: 20px;
    }

    .card-top {
        left: 0;
        top: 35px;
    }

    .card-right {
        right: -5px;
        top: 185px;
    }

    .card-bottom {
        left: 15px;
        bottom: 35px;
    }

    .floating-card {
        padding: 9px;
    }

    .trust-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-items {
        gap: 12px;
    }

    .circle-grid {
        grid-template-columns: 1fr;
    }

    .circle-card,
    .circle-card:last-child {
        grid-column: auto;
        min-height: 290px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .activity-large {
        grid-row: auto;
    }

    .process {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial {
        padding: 30px;
    }

    .testimonial-heading {
        align-items: flex-start;
        gap: 25px;
        flex-direction: column;
    }

    .testimonial-controls {
        align-self: flex-start;
    }

    .cta-content h2 {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-modal {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .modal-header h2 {
        font-size: 28px;
    }
}