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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #fafafa;
    scroll-padding-top: 72px;
}

body {
    padding-top: 72px;
}

.nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00BCD4 0%, #E91E63 50%, #FFEB3B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('../images/header_bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #E91E63;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00BCD4 0%, #E91E63 100%);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.cta-secondary {
    background: white;
    color: #E91E63;
    border: 2px solid #E91E63;
    box-shadow: none;
}

.cta-secondary:hover {
    background: #FFF3E0;
}

.section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    border-color: #E91E63;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00BCD4, #E91E63);
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #00BCD4 0%, #E91E63 50%, #FFEB3B 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.25);
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: white;
    color: #E91E63;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-button:hover {
    background: #FFF9C4;
}

.comparison-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00BCD4, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.coming-soon {
    display: inline-block;
    background: #FFEB3B;
    color: #1a1a1a;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.header-hero {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(233, 30, 99, 0.1) 50%, rgba(255, 235, 59, 0.1) 100%);
    padding: 0;
    overflow: hidden;
}

footer {
    background: #1a1a1a;
    color: #999;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #00BCD4;
    text-decoration: none;
}

footer a:hover {
    color: #E91E63;
}

/* Bullet image list — apply class="bullet-list" to any ul */
ul.bullet-list {
    list-style: none;
    padding-left: 0;
}

ul.bullet-list li {
    padding-left: 2.2rem;
    position: relative;
    margin-bottom: 0.4rem;
}

ul.bullet-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/images/bullet.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0.2em;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Alert boxes */
.alert-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.alert-error {
    background: #fce4ec;
    border: 1px solid #f48fb1;
    color: #c62828;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

/* Nav logo */
.logo-link { display:flex; align-items:center; text-decoration:none; }
.nav-logo   { height:40px; width:auto; display:block; }
.nav-active { color:#E91E63 !important; }
.nav-toggle { display:none; background:none; border:none; font-size:1.5rem; cursor:pointer; color:#666; }

/* Hero overlay */
.header-hero { position:relative; overflow:hidden; }
.hero-overlay {
    position:absolute; inset:0;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    background:rgba(0,0,0,.45);
    text-align:center; padding:2rem;
}
.hero-overlay h1 { color:#fff; font-size:3rem; font-weight:700; margin-bottom:.75rem; text-shadow:0 2px 8px rgba(0,0,0,.4); }
.hero-overlay p  { color:rgba(255,255,255,.9); font-size:1.2rem; margin-bottom:2rem; max-width:560px; }
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }

/* Audience two-column */
.audience-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
    margin-top:2rem;
}
.audience-card {
    background:#fff;
    border-radius:12px;
    padding:2.5rem;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.audience-icon { font-size:2.5rem; margin-bottom:1rem; }
.audience-card h2 { font-size:1.5rem; margin-bottom:.75rem; color:#1a1a1a; }
.audience-card p  { color:#555; line-height:1.7; }

/* Steps */
.steps-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    margin-top:2.5rem;
    text-align:center;
}
.step-card { padding:2rem 1rem; }
.step-num {
    width:56px; height:56px; border-radius:50%;
    background:linear-gradient(135deg,#00BCD4,#E91E63);
    color:#fff; font-size:1.5rem; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 1.25rem;
}
.step-card h3 { font-size:1.15rem; margin-bottom:.5rem; }
.step-card p  { color:#666; font-size:.95rem; }

/* Footer grid */
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:2rem;
    padding:3rem 0 2rem;
}
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:1.5rem 0 .5rem;
    font-size:.85rem;
    color:#666;
    text-align:center;
}

/* TOS Styles */
.tos-content {
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    line-height: 1.8;
}

.tos-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.tos-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1.1rem;
}

.tos-content p {
    margin-bottom: 1rem;
    color: #666;
}

.tos-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.tos-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: .5rem;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-toggle     { display: block; }
    .nav            { position: relative; }

    .hero-overlay h1 { font-size: 2rem; }
    .hero-overlay p  { font-size: 1rem; }

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

    .section-title  { font-size: 1.8rem; }
    .cta-section h2 { font-size: 1.5rem; }

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

    .form-container {
        margin: 2rem 1rem;
        padding: 2rem;
    }
}

/* Charter promo block */
.charter-promo-wrap {
    background: linear-gradient(135deg, #00BCD4 0%, #E91E63 100%);
    border-radius: 16px;
    padding: 3px;
    margin: 2.5rem auto;
    max-width: 640px;
}
.charter-promo-inner {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 2.5rem;
    text-align: center;
}
.charter-badge {
    display: inline-block;
    background: #E91E63;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.charter-badge--closed { background: #888; }
.charter-headline {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1F5C99;
    margin: 0 0 .5rem;
}
.charter-sub {
    font-size: .95rem;
    color: #555;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}
.charter-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.charter-orig { font-size: 1.1rem; color: #999; text-decoration: line-through; }
.charter-price { font-size: 2.4rem; font-weight: 700; color: #E91E63; }
.charter-per { font-size: .9rem; color: #888; }
.charter-lock { font-size: .875rem; color: #555; margin-bottom: 1.25rem; }
.charter-lock strong { color: #1F5C99; }
.charter-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f7fa;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    padding: .5rem 1.25rem;
    font-size: .9rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.charter-count { font-size: 1.3rem; font-weight: 700; color: #E91E63; }
.charter-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00BCD4, #E91E63);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    padding: .75rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity .2s;
}
.charter-btn:hover { opacity: .88; }
.charter-fine { font-size: .78rem; color: #999; margin-top: 1rem; margin-bottom: 0; }
