/* ===== CSS Variables ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-very-light: #eff6ff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --white: #ffffff;
    --black: #000000;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --gradient-start: #2563eb;
    --gradient-end: #7c3aed;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--neutral-100);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--neutral-600);
}

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

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-very-light) 0%, #f0f9ff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-700);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: var(--neutral-700);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stats {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-500);
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--neutral-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    transform: rotate(3deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 16px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-100);
    margin-bottom: 16px;
    font-size: 14px;
}

.preview-header span:first-child {
    font-weight: 700;
}

.preview-header span:last-child {
    color: var(--neutral-500);
    font-size: 12px;
}

.preview-card {
    background: var(--neutral-50);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.preview-img {
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.preview-details {
    padding: 12px;
}

.preview-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.preview-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-800);
}

.preview-location {
    font-size: 12px;
    color: var(--neutral-500);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-very-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--neutral-500);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ===== Problems Section ===== */
.problems {
    padding: 80px 0;
    background: var(--white);
}

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

.problem-card {
    padding: 32px;
    background: var(--neutral-50);
    border-radius: 20px;
    border: 1px solid var(--neutral-100);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--error);
    background: #fef2f2;
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--neutral-600);
    font-size: 15px;
}

/* ===== Solution Section ===== */
.solution {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--neutral-50);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--neutral-600);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gradient-end));
    margin-top: 28px;
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--neutral-600);
}

.features-image {
    position: relative;
    height: 400px;
}

.feature-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.float-icon {
    font-size: 24px;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 80px 0;
    background: var(--neutral-50);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto 48px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-main {
    padding: 48px;
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.price {
    font-size: 64px;
    font-weight: 800;
}

.per {
    font-size: 18px;
    opacity: 0.8;
}

.pricing-description {
    font-size: 18px;
    opacity: 0.9;
}

.pricing-breakdown {
    padding: 32px 48px;
}

.pricing-breakdown h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-700);
    margin-bottom: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-100);
    color: var(--neutral-600);
}

.breakdown-note {
    margin-top: 16px;
    padding: 16px;
    background: var(--primary-very-light);
    border-radius: 12px;
    font-size: 14px;
    color: var(--primary-dark);
}

.token-packages h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 24px;
}

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

.package {
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--neutral-200);
    transition: all 0.3s ease;
    position: relative;
}

.package:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.package.featured {
    border-color: var(--primary);
    background: var(--primary-very-light);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

.package-tokens {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.package-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.package-save {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

/* ===== For Agents Section ===== */
.for-agents {
    padding: 80px 0;
    background: var(--white);
}

.agents-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.agents-subtitle {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.agents-benefits {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.agent-benefit {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.agent-benefit h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.agent-benefit p {
    font-size: 14px;
    color: var(--neutral-600);
}

.agents-stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    padding: 24px;
    background: var(--neutral-50);
    border-radius: 16px;
    text-align: center;
}

.stat-card .stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--neutral-500);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--neutral-50);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--neutral-700);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    color: var(--neutral-900);
}

.author-location {
    font-size: 14px;
    color: var(--neutral-500);
}

/* ===== Locations ===== */
.locations {
    padding: 80px 0;
    background: var(--white);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.location-tag {
    padding: 12px 20px;
    background: var(--neutral-50);
    border-radius: 100px;
    font-weight: 600;
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
    transition: all 0.2s ease;
}

.location-tag:hover {
    background: var(--primary-very-light);
    border-color: var(--primary);
    color: var(--primary);
}

.locations-note {
    text-align: center;
    color: var(--neutral-500);
    font-style: italic;
}

/* ===== Download CTA ===== */
.download-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
}

.download-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.download-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-button svg {
    flex-shrink: 0;
}

.store-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.store-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.download-note {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 24px;
    background: var(--neutral-900);
    color: var(--neutral-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--neutral-800);
}

.footer-brand p {
    margin: 16px 0 24px;
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 24px;
    }

    .hero-image {
        display: none;
    }

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

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

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

    .features-image {
        display: none;
    }

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

    .agents-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

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

    .steps {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

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

    .agents-stats {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-note {
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 16px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .problem-card,
    .solution-card,
    .testimonial-card {
        padding: 24px;
    }

    .pricing-main {
        padding: 32px 24px;
    }

    .price {
        font-size: 48px;
    }

    .pricing-breakdown {
        padding: 24px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #737373;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #171717;
    margin-bottom: 8px;
}

.modal-content > p {
    color: #525252;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder {
    color: #a3a3a3;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-full:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Radio button group for user type selection */
.radio-group {
    display: flex;
    gap: 12px;
}

.radio-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.radio-option:hover {
    border-color: #d4d4d4;
    background: #fafafa;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-option:has(input:checked) {
    border-color: #F97316;
    background: #fff7ed;
}

.radio-label {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 4px;
}

.radio-description {
    font-size: 12px;
    color: #737373;
}

.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 16px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 8px;
}

.success-message p {
    color: #525252;
}

.btn-waitlist {
    background: white;
    color: #F97316;
    border: 2px solid white;
}

.btn-waitlist:hover {
    background: transparent;
    color: white;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 32px 24px;
    }

    .modal-content h2 {
        font-size: 24px;
    }
}
