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

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #C4B5FD;
    --primary-container: #EDE9FE;
    --rose: #F9A8D4;
    --rose-dark: #EC4899;
    --rose-light: #FBCFE8;
    --rose-container: #FCE7F3;
    --sky: #93C5FD;
    --sky-dark: #3B82F6;
    --sky-light: #BFDBFE;
    --mint: #86EFAC;
    --mint-dark: #22C55E;
    --mint-light: #BBF7D0;
    --lilac: #C4B5FD;
    --lilac-dark: #8B5CF6;
    --lilac-light: #DDD6FE;
    --background: #FAFAFE;
    --surface: #FFFFFF;
    --text: #1E1B2E;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --divider: #F3F4F6;
    --error: #F43F5E;
    --warning: #F59E0B;
    --radius: 16px;
    --shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.08), 0 2px 4px -2px rgba(139, 92, 246, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(139, 92, 246, 0.12), 0 8px 10px -6px rgba(139, 92, 246, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--background);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 254, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    transition: box-shadow 0.3s;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO / SPLASH ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 40%, #EC4899 100%);
}

.hero-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

.hero-content {
    animation: fadeSlideUp 1s ease-out 0.3s both;
}

.hero-greeting {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: white;
    font-weight: 500;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Splash visual (right side) */
.hero-splash {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out 0.6s both;
}

.splash-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.splash-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.splash-logo-circle::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.splash-logo-circle::after {
    content: '';
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: pulse 3s ease-in-out infinite 1s;
}

.splash-logo-circle img {
    width: 120px;
    height: 120px;
}

.splash-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 6px;
}

.splash-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--surface);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-icon.lilac { background: rgba(139, 92, 246, 0.12); }
.feature-icon.rose { background: rgba(236, 72, 153, 0.12); }
.feature-icon.sky { background: rgba(59, 130, 246, 0.12); }
.feature-icon.mint { background: rgba(34, 197, 94, 0.12); }

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--primary-container);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--surface);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.about p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-quote {
    background: var(--primary-container);
    padding: 32px;
    border-radius: var(--radius);
    margin: 40px 0;
    border-left: 4px solid var(--primary);
}

.about-quote p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 12px;
}

.about-quote cite {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

.about-blessing {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--primary) !important;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--rose-dark) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-disabled {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer h4 {
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-container) 0%, var(--rose-container) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.page-header p {
    color: var(--text-secondary);
}

/* ===== CONTENT PAGE ===== */
.content-page {
    padding: 60px 0 100px;
}

.content-page .container {
    max-width: 800px;
}

.content-page h2 {
    font-size: 1.35rem;
    margin: 36px 0 14px;
    color: var(--text);
    font-weight: 600;
}

.content-page h2:first-of-type {
    margin-top: 0;
}

.content-page p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-page ul {
    color: var(--text-secondary);
    margin-bottom: 14px;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-page .summary-box {
    background: var(--primary-container);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.content-page .summary-box strong {
    color: var(--primary-dark);
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-container);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.contact-email-icon {
    font-size: 1.8rem;
}

.contact-email a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-type {
    background: var(--divider);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
}

.contact-type-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.contact-type span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-form {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--divider);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-splash {
        order: -1;
    }

    .splash-logo-circle {
        width: 140px;
        height: 140px;
    }

    .splash-logo-circle img {
        width: 90px;
        height: 90px;
    }

    .splash-title {
        font-size: 2.2rem;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 250, 254, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

    .contact-types {
        grid-template-columns: 1fr;
    }
}
