/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: hsl(222.2 47.4% 11.2%);
    overflow-x: hidden;
}

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

/* Color Variables - Aligned with Frontend App */
:root {
    /* Primary Brand Colors */
    --primary-blue: #1465fa;
    --brand-navy: #090047;
    --accent-green: #a1d24c;
    
    /* UI System Colors */
    --background: hsl(0 0% 100%);
    --foreground: hsl(222.2 47.4% 11.2%);
    --muted: hsl(210 40% 96.1%);
    --border: hsl(214.3 31.8% 91.4%);
    
    /* App Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* Shadows */
    --shadow-primary: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-secondary: 0 4px 16px rgba(20, 101, 250, 0.15);
    --shadow-hover: 0 8px 25px rgba(20, 101, 250, 0.2);
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    min-height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    position: relative;
}

.brand-text::after {
    content: '.';
    color: var(--accent-green);
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: #0f4fd1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 101, 250, 0.03) 0%, rgba(161, 210, 76, 0.03) 100%);
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(20, 101, 250, 0.1) 0%, rgba(161, 210, 76, 0.1) 100%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(161, 210, 76, 0.1) 0%, rgba(20, 101, 250, 0.1) 100%);
    top: 60%;
    right: -5%;
    animation-delay: -2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(20, 101, 250, 0.08) 0%, rgba(161, 210, 76, 0.08) 100%);
    bottom: 20%;
    left: 50%;
    animation-delay: -4s;
}

.hero-content {
    max-width: 600px;
    animation: slideInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(20, 101, 250, 0.1);
    border: 2px solid rgba(20, 101, 250, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.gradient-text {
    color: var(--primary-blue);
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(220 9% 46%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: #0f4fd1;
}

.cta-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-secondary {
    background: var(--background);
    border: 2px solid var(--border);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.cta-secondary:hover {
    background: rgba(20, 101, 250, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.play-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(220 9% 46%);
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    animation: slideInRight 1s ease-out 0.5s both;
}

.calendar-demo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.calendar-card {
    background: var(--background);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-primary);
    border: 2px solid var(--border);
    min-width: 280px;
    transition: all 0.3s ease;
}

.calendar-card.google {
    border-color: rgba(20, 101, 250, 0.2);
    box-shadow: var(--shadow-secondary);
}

.calendar-card.outlook {
    border-color: rgba(161, 210, 76, 0.2);
    box-shadow: 0 4px 16px rgba(161, 210, 76, 0.15);
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.calendar-icon {
    font-size: 1.5rem;
}

.calendar-name {
    font-weight: 600;
    color: var(--foreground);
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(20, 101, 250, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.event-time {
    font-size: 0.85rem;
    color: hsl(220 9% 46%);
    font-weight: 500;
    min-width: 60px;
}

.event-title {
    font-weight: 600;
    color: var(--foreground);
}

.sync-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.arrow-line {
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    position: relative;
    border-radius: 3px;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--accent-green);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Section Styles */
section {
    padding: 4rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.2rem;
    color: hsl(220 9% 46%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--muted);
}

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

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

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

.feature-card.pro-feature {
    background: linear-gradient(135deg, rgba(20, 101, 250, 0.05) 0%, rgba(161, 210, 76, 0.05) 100%);
    border-color: rgba(20, 101, 250, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pro-badge {
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-description {
    color: hsl(220 9% 46%);
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    background: var(--background);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.use-case-description {
    color: hsl(220 9% 46%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.use-case-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(215 16% 47%);
    font-size: 0.9rem;
}

.use-case-benefits li::before {
    content: '✅';
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    background: var(--muted);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: hsl(220 9% 46%);
}

.discount-badge {
    background: var(--primary-blue);
    color: white;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--border);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary-blue);
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: var(--background);
    border-radius: 50%;
    position: relative;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.toggle-switch.active .toggle-slider {
    left: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--background);
    border-radius: 16px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-primary);
}

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

.pricing-card.popular {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(220 9% 46%);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.yearly-price {
    display: none;
}

.price-period {
    font-size: 1rem;
    color: hsl(220 9% 46%);
    margin-left: 0.25rem;
}

.yearly-period {
    display: none;
}

.plan-description {
    color: hsl(220 9% 46%);
    font-size: 1rem;
}

.pricing-features {
    padding: 0 2rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-item.disabled {
    opacity: 0.5;
}

.feature-check {
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-action {
    padding: 2rem;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.plan-button-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-secondary);
}

.plan-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: #0f4fd1;
}

.plan-button-secondary {
    background: rgba(20, 101, 250, 0.1);
    color: var(--primary-blue);
    border: 2px solid rgba(20, 101, 250, 0.2);
}

.plan-button-secondary:hover {
    background: rgba(20, 101, 250, 0.2);
    transform: translateY(-2px);
}

.pricing-guarantee {
    text-align: center;
    color: hsl(220 9% 46%);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background: var(--muted);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-secondary);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: hsl(220 9% 46%);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--primary-blue);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-actions {
    text-align: center;
}

.contact-note {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    color: white;
}

.footer-brand .brand-text::after {
    color: var(--accent-green);
}

.footer-description {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-primary);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding-top: 6rem;
        text-align: center;
    }

    .hero-visual {
        position: static;
        transform: none;
        margin-top: 3rem;
    }

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

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

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

    .calendar-demo {
        flex-direction: row;
        gap: 1rem;
    }

    .calendar-card {
        min-width: 200px;
        padding: 1rem;
    }

    .sync-arrow {
        writing-mode: vertical-lr;
        text-orientation: mixed;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 0;
        min-height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .calendar-demo {
        flex-direction: column;
    }

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

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

/* Utility Classes */
.gradient-text {
    color: var(--primary-blue);
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Pricing Toggle States */
.pricing-yearly .monthly-price,
.pricing-yearly .monthly-period {
    display: none;
}

.pricing-yearly .yearly-price,
.pricing-yearly .yearly-period {
    display: inline;
}