/* GetMy Books - Landing Page Styles */

/* Primary Color: #0077C8 (Blue) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #0077C8;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0077C8;
}

.nav-links .cta-button,
.nav-links a.cta-button {
    color: white !important;
}

.cta-button {
    background: #0077C8;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: #005a9c;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    display: block;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero .tagline {
    font-size: 32px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive Hero */
@media (width <= 768px) {
    .hero-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero .tagline {
        font-size: 24px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

.primary-button {
    background: #0077C8;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.primary-button:hover {
    background: #005a9c;
    transform: translateY(-2px);
}

.secondary-button {
    background: white;
    color: #0077C8;
    padding: 16px 40px;
    border: 2px solid #0077C8;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.2s;
    display: inline-block;
}

.secondary-button:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Features Grid */
.features {
    background: #f8fafc;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 2px solid #e2e8f0;
}

.pricing-card.featured {
    border-color: #0077C8;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0077C8;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    color: #64748b;
    vertical-align: top;
}

.price .amount {
    font-size: 56px;
    font-weight: 800;
    color: #0077C8;
}

.price .period {
    font-size: 18px;
    color: #64748b;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    color: #64748b;
    font-size: 16px;
}

.features-list li::before {
    margin-right: 8px;
}

.pricing-button {
    display: block;
    text-align: center;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.pricing-button.primary {
    background: #0077C8;
    color: white;
}

.pricing-button.primary:hover {
    background: #005a9c;
}

.pricing-button.secondary {
    background: white;
    color: #0077C8;
    border: 2px solid #0077C8;
}

.pricing-button.secondary:hover {
    background: #f1f5f9;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, #0077C8 0%, #005a9c 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.coming-soon-banner h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.coming-soon-banner p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Note: Waitlist form styles are now managed by shared-components/waitlist/waitlist-form.css */

/* Integration Section */
.integrations {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.integration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.integration-logo {
    font-size: 24px;
    font-weight: 700;
    color: #64748b;
    padding: 20px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #0077C8;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive */
@media (width <= 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero .tagline {
        font-size: 24px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}


/* Enhanced How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%230077C8" opacity="0.1"/></svg>');
    pointer-events: none;
}

.steps-container {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

@media (width <= 968px) {
    .steps-container {
        flex-direction: column;
        gap: 60px;
    }
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 119, 200, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 119, 200, 0.15);
    border-color: #0077C8;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077C8 0%, #005a9c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 119, 200, 0.3);
}

.step-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
}

.step-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: #e0f2fe;
    color: #0077C8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.step-connector {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #0077C8;
    opacity: 0.3;
    font-weight: bold;
}

@media (width <= 968px) {
    .step-connector {
        display: none;
    }
}

.step-card:last-child .step-connector {
    display: none;
}

.steps-cta {
    text-align: center;
    margin-top: 60px;
}

.steps-cta .primary-button {
    padding: 18px 48px;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 119, 200, 0.3);
}

.steps-cta .primary-button:hover {
    box-shadow: 0 6px 30px rgba(0, 119, 200, 0.4);
}

.cta-subtext {
    margin-top: 16px;
    color: #64748b;
    font-size: 14px;
}
