/* Final Boss Software - Apple-inspired Styles */

/* System font stack (San Francisco on Mac, Segoe on Windows) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --fb-black: #1d1d1f;
    --fb-gray: #86868b;
    --fb-warm-gray: #8a8582;
    --fb-gray-light: #f5f5f7;
    --fb-warm-white: #faf9f7;
    --fb-blue: #0071e3;
    --fb-green: #14561a;
    --fb-sky-blue: #5abee2;
}

/* Base typography */
body, .mud-typography {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero-section {
    background: #2e8fad;
    padding: 160px 24px 140px 24px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
    opacity: 0.25;
    pointer-events: none;
}

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

.hero-logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto 48px auto;
    display: block;
}

.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
    margin: 0 0 24px 0;
    outline: none;
}

.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 40px auto;
    max-width: 520px;
}

.hero-note {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 16px 0 0 0;
    letter-spacing: 0.01em;
}

/* Section headers */
.mud-typography-h3 {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
    background: var(--fb-warm-white) !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
}

.feature-card .mud-card-content {
    padding: 40px !important;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--fb-warm-white);
}

.how-step {
    text-align: center;
    padding: 16px;
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1d1d1f;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 auto 20px auto;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
    background: var(--fb-warm-white) !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    height: 100%;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
}

.testimonial-card .mud-card-content {
    padding: 36px !important;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 20px !important;
    overflow: visible;
    position: relative;
    background: var(--fb-warm-white) !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

.pricing-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
}

.pricing-featured {
    background: #18181a !important;
    color: white !important;
    overflow: visible !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18) !important;
}

.pricing-featured .mud-typography {
    color: white !important;
}

.pricing-featured .mud-typography-body2 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pricing-featured .mud-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Pricing Callout */
.pricing-callout {
    text-align: center;
    margin-top: 48px;
    padding: 20px;
}

/* CTA Section */
.cta-section {
    background: var(--fb-warm-white) !important;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-section .mud-typography {
    color: var(--fb-black) !important;
}

.cta-section .mud-typography-body1 {
    color: var(--fb-warm-gray) !important;
}

/* Section Spacing - generous Apple-style whitespace */
.section-spacing {
    padding: 140px 0;
}

/* Primary button */
.btn-primary {
    background: white !important;
    color: var(--fb-green) !important;
    border-radius: 980px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    font-size: 1rem !important;
    padding: 16px 32px !important;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.02);
}

/* Secondary button - Apple style */
.btn-secondary {
    background: transparent !important;
    border: none !important;
    color: var(--fb-sky-blue) !important;
    border-radius: 980px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    font-size: 1rem !important;
}

.btn-secondary:hover {
    text-decoration: underline;
}

/* Link style buttons */
.link-button {
    background: none !important;
    border: none !important;
    color: var(--fb-blue) !important;
    font-weight: 500 !important;
    text-transform: none !important;
    padding: 0 !important;
}

.link-button:hover {
    text-decoration: underline;
}

/* Timeline customization */
.mud-timeline-item-dot {
    background: var(--fb-green) !important;
}

/* Icons - subtle color */
.feature-icon {
    color: var(--fb-black) !important;
    opacity: 0.8;
}

/* Subtle text colors */
.text-secondary {
    color: var(--fb-warm-gray) !important;
}

/* Clean dividers */
.mud-divider {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Badge styling */
.popular-badge {
    background: var(--fb-green);
    color: white;
    padding: 6px 14px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .hero-section {
        padding: 120px 24px 100px 24px;
    }

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

    .section-spacing {
        padding: 100px 0;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 100px 20px 80px 20px;
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 32px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .section-spacing {
        padding: 80px 0;
    }

    .feature-card .mud-card-content {
        padding: 28px !important;
    }

    .testimonial-card .mud-card-content {
        padding: 24px !important;
    }
}
