/*
 * QuickSharePhotos - Landing Page Styles
 */

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tall { padding: 100px 20px 80px; }
.hero-compact { padding: 60px 20px 40px; }

.hero-eyebrow {
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.72;
    margin-bottom: 18px;
}

.hero-logo {
    font-size: 4em;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero h1 strong {
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.3em;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary {
    background: white;
    color: #667eea;
}

.hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2em;
    font-weight: 300;
    color: #1a1928;
    margin-bottom: 12px;
}

.section-header h2 strong {
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1em;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 1px solid #ebe7f4;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 28px rgba(102,126,234,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.14);
    border-color: #c3b8f0;
}

.feature-icon {
    font-size: 2.8em;
    margin-bottom: 18px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3em;
    color: #1a1928;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95em;
}

/* How It Works */
.how-section {
    padding: 80px 20px;
    background: var(--gray-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 auto 18px;
}

.step h3 {
    font-size: 1.1em;
    color: #1a1928;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.5;
}

/* Highlight Cards */
.highlights-section {
    padding: 80px 20px;
    background: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #ebe7f4;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(102,126,234,0.04);
}

.highlight-card:hover {
    border-color: var(--primary-start);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.highlight-icon {
    font-size: 1.8em;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 12px;
}

.highlight-text h3 {
    font-size: 1.05em;
    color: #1a1928;
    margin-bottom: 5px;
}

.highlight-text p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--primary-gradient);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.2em;
    font-weight: 300;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.15em;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-white {
    background: white;
    color: #667eea;
}

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Footer */
.landing-footer {
    background: #2d2d3f;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

.landing-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.landing-footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 50px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero-tagline {
        font-size: 1.1em;
    }

    .hero-logo {
        font-size: 3em;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ── Pricing Page ── */
.pricing-section {
    padding: 60px 20px 80px;
}
.pricing-cards-wrap {
    max-width: 500px;
    margin: 0 auto;
}

/* Shared pricing card */
.pricing-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 36px rgba(102,126,234,0.12);
}
.pricing-card + .pricing-card { margin-top: 28px; }
.pricing-card-standard { border: 2px solid #667eea; }
.pricing-card-memorial { border: 2px solid #c9b87a; box-shadow: 0 8px 36px rgba(180,150,60,0.12); }

.pricing-tier {
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.pricing-card-standard .pricing-tier { color: #667eea; }
.pricing-card-memorial .pricing-tier { color: #8b6914; }

.pricing-amount {
    font-size: 3.5em;
    font-weight: 700;
    color: #1a1928;
    margin-bottom: 5px;
    line-height: 1;
}
.pricing-period {
    color: #888;
    margin-bottom: 28px;
    font-size: 0.95em;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 28px;
}
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0edf8;
    color: #5a5870;
    font-size: 0.95em;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.feature-excluded { color: #aaa; font-style: italic; }

.pricing-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.97em;
    transition: opacity 0.2s, transform 0.15s;
    color: white;
}
.pricing-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pricing-btn-standard { background: var(--primary-gradient); }
.pricing-btn-memorial { background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%); }

/* FAQ section */
.faq-section { padding: 60px 20px 80px; }
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid #ebe7f4;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
    margin: 0 0 8px;
    color: #1a1928;
    font-size: 1.05em;
    font-weight: 600;
}
.faq-a {
    margin: 0;
    color: #5a5870;
    line-height: 1.7;
    font-size: 0.95em;
}

/* ── Homepage pricing preview ── */
.pricing-preview-section { padding: 70px 20px; }
.pricing-preview-wrap {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.pricing-preview-wrap .section-header { margin-bottom: 28px; }
.pricing-mini-card {
    background: white;
    border: 2px solid #ebe7f4;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(102,126,234,0.08);
}
.pricing-mini-amount {
    font-size: 3em;
    font-weight: 700;
    color: #1a1928;
    line-height: 1;
}
.pricing-mini-period {
    color: #888;
    margin: 8px 0 20px;
    font-size: 1.02em;
}
.pricing-mini-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    color: #5a5870;
    font-size: 0.93em;
    margin-bottom: 22px;
}
.pricing-mini-sep { color: #ccc; }
.pricing-mini-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.02em;
}
.pricing-mini-link:hover { text-decoration: underline; }
.pricing-memorial-note {
    margin-top: 16px;
    padding: 16px 22px;
    background: #fffdf5;
    border: 1px solid #e8dcc8;
    border-radius: 12px;
    font-size: 0.93em;
    color: #888;
}
.pricing-memorial-note strong { color: #7a5c10; }

/* Legal pages (Privacy, Terms, Contact) */
.legal-card {
    background: white;
    border: 1px solid #e8e8f0;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.07);
    color: #444;
    line-height: 1.75;
    font-size: 1em;
}

.legal-card h2 {
    font-size: 1.15em;
    font-weight: 700;
    color: #2d2d3f;
    margin: 2em 0 0.5em;
    padding-bottom: 0.4em;
    border-bottom: 2px solid #f0f0f8;
}

.legal-card h2:first-of-type {
    margin-top: 1.2em;
}

.legal-card p {
    margin: 0.6em 0 1em;
}

.legal-card ul {
    margin: 0.4em 0 1em 1.2em;
    padding: 0;
}

.legal-card ul li {
    margin-bottom: 0.5em;
}

.legal-card a {
    color: #667eea;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.contact-block {
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f8;
}

.contact-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-block h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
}

@media (max-width: 600px) {
    .legal-card {
        padding: 28px 20px;
    }
}
