:root {
    --primary-color: #00f0ff;
    --secondary-color: #b066ff;
    --bg-color: #0b0b0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-secondary: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
    --gradient-main: linear-gradient(135deg, #00f0ff 0%, #b066ff 100%);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 92px;
}

#tools {
    scroll-margin-top: 120px;
}

.heading-icon--neon svg {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.35)) drop-shadow(0 0 14px rgba(176, 102, 255, 0.25));
}

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

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: var(--font-main);
}

/* Background & Effects */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(176, 102, 255, 0.1) 0%, rgba(11, 11, 15, 0) 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-transform: none;
    letter-spacing: 0.6px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* Required for background-clip on some browsers */
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.22rem 0.72rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    backdrop-filter: none;
    z-index: 100;
    border-bottom: none;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.nav-links a:not(.btn-primary):hover {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.lang-divider {
    color: var(--text-secondary);
    opacity: 0.6;
}

.lang-btn {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.8rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: none;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(0, 240, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.15) inset;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: #fff;
    border-radius: 3px;
}

.hamburger:hover span {
    background: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    background: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
    background: var(--primary-color);
}

/* Burger menu on all breakpoints */
.navbar {
    padding: 0.12rem 0.68rem;
}

.nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 15, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-links ul {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.hamburger {
    display: block;
}

@media (min-width: 1200px) {
    .navbar {
        padding-left: 2.6rem;
        padding-right: 2.6rem;
    }
    .logo {
        margin-left: 0.5rem;
    }
    .hamburger {
        margin-right: 0.5rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    text-align: right;
}

.hero-title {
    font-size: clamp(1.4rem, 3.2vw, 2.4rem);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 300;
    text-transform: none;
    text-align: right;
    line-height: 1.1;
    white-space: pre;
    word-break: keep-all;
    overflow-wrap: normal;
}

@media (max-width: 480px) {
    .hero {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(0.9rem, 4vw, 1.3rem);
        letter-spacing: 0;
        line-height: 1.06;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(0.8rem, 3.5vw, 1.1rem);
        letter-spacing: 0;
        line-height: 1.05;
    }
}

.hero-sub {
    text-align: right;
}

.cta-group {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.hero-slogan {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .hero-title {
        margin-bottom: 0.5rem;
    }
    .hero-sub {
        font-size: 1.2rem;
        max-width: 760px;
        margin-top: 0;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;
        align-self: flex-end;
        text-align: right;
    }
}

/* Buttons */
.btn-primary {
    background: var(--gradient-main);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

.mobile-btn .btn-primary:hover {
    background: var(--gradient-main);
    box-shadow: none;
}

.btn-neo {
    position: relative;
    background: #121216;
    color: #fff;
    border: 2px solid transparent;
    border-image: var(--gradient-main) 1;
    border-image-slice: 1;
    box-shadow: none;
}

.btn-neo.large {
    padding: 0.8rem 1.6rem;
}

.btn-neo::after {
    content: none;
}

.btn-neo:hover {
    background: transparent;
    background-image: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.btn-neo:active,
.btn-neo:focus {
    background-image: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-grad {
    background: transparent;
    border: 2px solid transparent;
    border-image: var(--gradient-main) 1;
    border-image-slice: 1;
    border-radius: 50px;
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    background-image: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-outline-grad:hover {
    transform: translateY(-1px);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions .btn-outline-grad,
.modal-actions .btn-primary {
    flex: 1;
}

@media (max-width: 480px) {
    .modal-actions {
        flex-direction: column;
    }
}
.full-width {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 1.5rem 0;
}

.form-success .success-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-success h3 {
    font-size: 1.3rem;
    margin: 0;
}
/* Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.founder-card {
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.founder-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    flex-shrink: 0;
}

.cyber-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: 2px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 108%;
    height: 108%;
    background: radial-gradient(circle, rgba(176, 102, 255, 0.18) 0%, rgba(0, 240, 255, 0.14) 48%, transparent 72%);
    z-index: 1;
    pointer-events: none;
}

.photo-overlay-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.founder-info {
    flex: 1;
    min-width: 0;
}

.founder-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.founder-role {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 52ch;
    overflow-wrap: anywhere;
}

.founder-bio .founder-name {
    display: block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.2;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.founder-bio .founder-title {
    display: block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.founder-stats {
    display: flex;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.founder-stats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.founder-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    line-height: 1.2;
    max-width: 100%;
}

.social-link:hover {
    color: #fff;
    border-color: var(--primary-color);
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link span {
    white-space: normal;
}

@media (min-width: 1025px) and (max-width: 1366px) {
    .founder-image {
        max-width: 480px;
    }
    .founder-info h3 {
        font-size: 1.5rem;
    }
    .founder-role {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .founder-bio {
        font-size: 0.9rem;
    }
    .founder-bio .founder-name {
        font-size: 1.3rem;
    }
    .founder-bio .founder-title {
        font-size: 0.85rem;
    }
    .founder-stats {
        gap: 1.5rem;
        margin-bottom: 1.6rem;
        padding: 1rem 0;
    }
    .stat-value {
        font-size: 1.2rem;
    }
    .stat-icon {
        width: 16px;
        height: 16px;
    }
    .founder-social {
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    .social-link {
        padding: 0.4rem 0.6rem;
    }
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    .social-link span {
        font-size: 0.85rem;
    }
}

@media (min-width: 1367px) {
    .founder-image {
        max-width: 480px;
    }
    .founder-info h3 {
        font-size: 1.5rem;
    }
    .founder-role {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .founder-bio {
        font-size: 0.95rem;
    }
    .founder-bio .founder-name {
        font-size: 1.35rem;
    }
    .founder-bio .founder-title {
        font-size: 0.88rem;
    }
    .founder-stats {
        gap: 1.8rem;
        margin-bottom: 1.8rem;
        padding: 1.1rem 0;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .stat-icon {
        width: 16px;
        height: 16px;
    }
    .founder-social {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    .social-link {
        padding: 0.45rem 0.7rem;
    }
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    .social-link span {
        font-size: 0.9rem;
    }
}

@media (min-width: 1025px) {
    .founder-bio .founder-name,
    .founder-bio .founder-title {
        display: none;
    }
}
/* Founder responsive: tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .founder-card {
        padding: 2.5rem;
    }
    .founder-layout {
        gap: 2.5rem;
    }
    .founder-image {
        max-width: 420px;
    }
    .photo-overlay-text {
        bottom: -20px;
        font-size: 0.75rem;
    }
    .founder-info h3 {
        font-size: 2.2rem;
    }
    .founder-role {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .founder-bio {
        font-size: 1rem;
    }
    .founder-bio .founder-name,
    .founder-bio .founder-title {
        display: none;
    }
    .founder-stats {
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 1.2rem 0;
    }
    .stat-value {
        font-size: 1.8rem;
    }
}

/* Founder responsive: laptops */
@media (min-width: 1025px) and (max-width: 1366px) {
    .founder-card {
        padding: 3rem;
    }
    .founder-layout {
        gap: 3rem;
    }
    .founder-image {
        max-width: 520px;
    }
    .founder-info h3 {
        font-size: 2.3rem;
    }
    .founder-stats {
        gap: 2.5rem;
    }
}
/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-window {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.hidden .modal-window {
    transform: scale(0.9);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.modal-content {
    position: relative;
    width: min(520px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 auto;
    text-align: center;
}

/* Modal steps visibility */
.modal-step.hidden {
    display: none;
}

.modal-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#enrollSuccess {
    width: 100%;
    max-width: 440px;
    margin: 0.5rem auto 0;
    padding: 1.25rem 1.1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 240, 255, 0.28);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(176, 102, 255, 0.08));
}

#enrollSuccess .success-icon {
    margin-bottom: 0.55rem;
}

#enrollSuccess h3 {
    margin: 0 0 0.6rem;
    font-size: 1.25rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#enrollSuccess p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    line-height: 1.45;
    font-size: 0.95rem;
    max-width: 34ch;
}

#enrollSuccess .btn-secondary {
    min-width: 170px;
    padding: 0.7rem 1.15rem;
}

.selected-plan-text {
    text-align: center;
    margin: 0.5rem 0 1rem;
}

.plan-options {
    justify-items: center;
}

.plan-option-btn {
    justify-content: center;
    text-align: center;
}

.modal-actions {
    justify-content: center;
    align-items: center;
    width: 100%;
}

.modal-actions .btn-outline-grad,
.modal-actions .btn-primary {
    flex: 0 0 auto;
    max-width: 220px;
}

.modal-back {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-back:hover {
    color: #fff;
    transform: translateX(-3px);
}

.modal-back svg {
    width: 20px;
    height: 20px;
}

.modal-title {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Plan options buttons */
.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.plan-option-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    padding: 0.6rem 0.72rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-icon svg {
    width: 28px;
    height: 28px;
}

.plan-option-btn span {
    font-size: 0.72rem;
}

.plan-option-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1rem 1rem 3rem;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group textarea {
    padding-left: 1rem;
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Plan Selection Cards in Modal */
.plan-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-option:hover {
    border-color: var(--primary-color);
    background: rgba(0, 240, 255, 0.1);
}

.plan-option h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.plan-option p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.plan-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features {
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.plan-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.plan-format {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.plan-status {
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.plan-status-active {
    color: var(--primary-color);
}

.plan-btn {
    width: 100%;
    margin-top: auto;
}

/* Subscription Period Options */
.period-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.period-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.period-option.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-logo {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-main);
    animation: loading 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

@keyframes loading {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Crypto Ticker */
.crypto-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: #000;
    border-bottom: none;
    z-index: 1001;
    /* Above navbar */
    display: flex;
    align-items: center;
    overflow: hidden;
    backdrop-filter: none;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.ticker-item {
    margin: 0 2rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: var(--font-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ticker-item span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 700;
}

.ticker-item.up {
    color: #00ff88;
}

.ticker-item.down {
    color: #ff3366;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ticker-content {
        animation-duration: 40s;
    }

    .ticker-item {
        margin: 0 1.2rem;
        font-size: 0.75rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Adjust Navbar for Ticker */
.navbar {
    top: 32px;
    /* Push navbar down to match ticker height */
}

/* Directions / For Whom Section */
.cards-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.stack-card {
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    flex-shrink: 0;
    color: inherit;
    stroke: currentColor;
    opacity: 1;
    visibility: visible;
    -webkit-text-fill-color: currentColor;
}

.stack-card:hover .card-icon {
    background: rgba(0, 240, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.stack-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stack-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    /* Push to bottom */
}

.card-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-features li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

/* Center specific direction cards */
.stack-card.delay-3,
.stack-card.delay-4 {
    align-items: flex-start;
    text-align: left;
}

/* Move icons to right side on specified cards */
.stack-card.delay-3 .card-icon,
.stack-card.delay-4 .card-icon {
    margin-left: 0;
}

/* Desktop: hard-fixed symmetric 3-2 layout */
@media (min-width: 1200px) {
    .cards-stack {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-areas:
            "c1 c1 c2 c2 c3 c3"
            ". c4 c4 c5 c5 .";
    }
    .cards-stack .stack-card:nth-child(1) { grid-area: c1; }
    .cards-stack .stack-card:nth-child(2) { grid-area: c2; }
    .cards-stack .stack-card:nth-child(3) { grid-area: c3; }
    .cards-stack .stack-card:nth-child(4) { grid-area: c4; }
    .cards-stack .stack-card:nth-child(5) { grid-area: c5; }
}
/* Education & Tools Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-group {
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-group h3 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.heading-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.heading-icon svg {
    width: 28px;
    height: 28px;
}

.resource-links {
    display: grid;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.resource-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.resource-link:hover::before {
    opacity: 1;
}

.res-icon {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.resource-link:hover .res-icon {
    color: var(--primary-color);
}

.res-info {
    flex-grow: 1;
}

.res-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #fff;
    font-weight: 600;
}

.res-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-contacts h4 {
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 240, 255, 0.4);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
}

.footer-link {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-support-link {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-support-link:hover {
    filter: brightness(1.1);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
        width: 100%;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.7rem;
    }
    .footer-link {
        text-align: center;
        font-size: 0.92rem;
        line-height: 1.3;
        max-width: 100%;
        word-break: break-word;
    }
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.support-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.support-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
}

.support-card h3 {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-coin-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
}

.wallet-address {
    margin: 0;
    word-break: break-all;
    color: #fff;
    font-size: 0.92rem;
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(176, 102, 255, 0.08));
}

/* Concept Section */
.concept-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.concept-card {
    padding: 3rem;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.concept-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Internal Pages Styling */
.page-container {
    padding-top: 100px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.page-header {
    text-align: center;
    padding: 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link svg {
    width: 20px;
    height: 20px;
    margin: 2px 8px 2px 0;
}

.fixed-back-btn svg {
    width: 20px;
    height: 20px;
    margin: 4mm;
}

.page-title.compact {
    font-size: 1.575rem;
}
.back-link:hover {
    color: var(--primary-color);
}

.page-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.article-content.compact {
    max-width: 720px;
    padding: 2.7rem;
}

.article-content.compact h2 {
    font-size: 1.8rem;
}

.article-content.compact p {
    font-size: 0.99rem;
}
.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #fff;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.article-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: #fff;
}

.highlight-box {
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 11, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .founder-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .founder-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .founder-stats {
        justify-content: center;
        gap: 2rem;
    }

    .founder-stats li {
        align-items: center;
    }

    .founder-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-title {
        font-size: 2rem;
    }

    .article-content {
        padding: 1.5rem;
    }
}
