:root {
    --color-cream: #FDF8F4;
    --color-blush: #F9EDE5;
    --color-rose: #E8A87C;
    --color-rose-dark: #D4845A;
    --color-plum: #4A2040;
    --color-plum-light: #6B3A5E;
    --color-sage: #7BAE7F;
    --color-sage-dark: #5C8F60;
    --color-gold: #C9A96E;
    --color-charcoal: #2C2C2C;
    --color-gray-700: #404040;
    --color-gray-500: #6B6B6B;
    --color-gray-300: #B0B0B0;
    --color-gray-100: #F5F5F5;
    --color-white: #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(74, 32, 64, 0.06);
    --shadow-md: 0 8px 24px rgba(74, 32, 64, 0.08);
    --shadow-lg: 0 16px 48px rgba(74, 32, 64, 0.12);
    --shadow-xl: 0 24px 64px rgba(74, 32, 64, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 32, 64, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-plum);
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-gray-700);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-btn-outline {
    padding: 8px 20px !important;
    border: 1.5px solid var(--color-plum);
    border-radius: var(--radius-sm);
    color: var(--color-plum) !important;
    font-weight: 600 !important;
}

.nav-btn-primary {
    padding: 8px 20px !important;
    background: var(--color-plum);
    border-radius: var(--radius-sm);
    color: var(--color-white) !important;
    font-weight: 600 !important;
}

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

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 140px 24px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--color-blush) 0%, transparent 70%);
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(123, 174, 127, 0.15) 0%, transparent 70%);
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-plum);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-gray-500);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-avatars {
    display: flex;
}

.proof-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin-left: -8px;
    background: linear-gradient(135deg, var(--color-rose), var(--color-plum-light));
}

.proof-avatars .avatar:first-child {
    margin-left: 0;
}

.hero-social-proof p {
    font-size: 14px;
    color: var(--color-gray-500);
}

.hero-social-proof strong {
    color: var(--color-charcoal);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.phone-mockup {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 480px;
    background: var(--color-charcoal);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 26px;
    padding: 40px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.sms-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeInUp 0.6s ease-out both;
}

.sms-received {
    background: #e5e5ea;
    color: #1c1c1e;
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    animation-delay: 0.3s;
}

.sms-received a {
    color: #007AFF;
    text-decoration: underline;
    display: block;
    margin-top: 4px;
    font-size: 13px;
}

.sms-sent {
    background: #007AFF;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    animation-delay: 0.9s;
}

.card-mockup {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-4deg);
    width: 260px;
    z-index: 1;
}

.card-inner {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-sage);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-floral {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.3;
}

.card-floral.tl {
    top: -10px;
    left: -10px;
    background: radial-gradient(circle, var(--color-rose) 0%, transparent 70%);
}

.card-floral.br {
    bottom: -10px;
    right: -10px;
    background: radial-gradient(circle, var(--color-sage) 0%, transparent 70%);
}

.card-names {
    font-family: var(--font-display);
    font-size: 28px;
    text-align: center;
    color: var(--color-plum);
    margin: 20px 0 16px;
}

.card-names span {
    font-style: italic;
    font-size: 20px;
    color: var(--color-gold);
}

.card-detail {
    text-align: center;
    font-size: 13px;
    color: var(--color-gray-500);
    margin-bottom: 4px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-plum);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(74, 32, 64, 0.3);
}

.btn-primary:hover {
    background: var(--color-plum-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 32, 64, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
}

.btn-outline:hover {
    background: var(--color-plum);
    color: var(--color-white);
}

.btn-ghost {
    background: transparent;
    color: var(--color-plum);
    border: 2px solid transparent;
}

.btn-ghost:hover {
    background: rgba(74, 32, 64, 0.06);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ========== LOGOS / EVENT TYPES ========== */
.logos-bar {
    padding: 40px 24px;
    background: var(--color-white);
    border-top: 1px solid rgba(74, 32, 64, 0.04);
    border-bottom: 1px solid rgba(74, 32, 64, 0.04);
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logos-container p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray-300);
    margin-bottom: 16px;
    font-weight: 600;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.event-tags span {
    padding: 8px 20px;
    background: var(--color-cream);
    border-radius: 40px;
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
    border: 1px solid rgba(74, 32, 64, 0.06);
}

/* ========== HOW IT WORKS ========== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.how-it-works {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-plum);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-gray-500);
    max-width: 560px;
    margin: 0 auto;
}

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

.step-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 32, 64, 0.04);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-plum);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-rose-dark);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-plum);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-500);
}

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

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

.feature-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(74, 32, 64, 0.04);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.feature-highlight {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, var(--color-plum), var(--color-plum-light));
    color: var(--color-white);
}

.feature-highlight h3 {
    color: var(--color-white);
}

.feature-highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-plum);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-500);
}

/* ========== PRICING ========== */
.pricing {
    padding: 100px 0;
}

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

.price-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(74, 32, 64, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card-popular {
    border: 2px solid var(--color-plum);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    position: relative;
}

.price-card-popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.price-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-plum);
    margin-bottom: 20px;
}

.price-card-popular .price-badge {
    background: var(--color-plum);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
}

.price-amount {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-plum);
}

.price-amount .amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-plum);
    line-height: 1;
}

.price-amount .period {
    font-size: 15px;
    color: var(--color-gray-500);
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    padding-left: 28px;
    position: relative;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 0 100px;
    background: var(--color-white);
}

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

.testimonial-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(74, 32, 64, 0.04);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-rose), var(--color-plum-light));
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--color-charcoal);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* ========== FAQ ========== */
.faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(74, 32, 64, 0.08);
    padding: 24px 0;
}

.faq-item summary {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-plum);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    color: var(--color-rose);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-500);
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-plum) 0%, var(--color-plum-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 32px;
}

.final-cta .btn-primary {
    background: var(--color-white);
    color: var(--color-plum);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
}

.cta-note {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.footer-brand {
    margin-bottom: 40px;
}

.footer-brand .nav-logo {
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-gray-300);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gray-300);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-gray-300);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .steps-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-highlight {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .price-card-popular {
        transform: none;
    }

    .price-card-popular:hover {
        transform: translateY(-4px);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid rgba(74, 32, 64, 0.06);
        box-shadow: var(--shadow-md);
    }

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

    .nav-mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 24px 60px;
        min-height: auto;
    }

    .hero-visual {
        height: 350px;
    }

    .phone-mockup {
        width: 220px;
        height: 380px;
    }

    .card-mockup {
        width: 200px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .steps-grid {
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 300px;
    }

    .phone-mockup {
        width: 180px;
        height: 320px;
        right: -10px;
    }

    .card-mockup {
        width: 170px;
    }
}
