/* Besties Website Styles - Matching App Theme */
/* Colors: #F8FAFC (bg), #0EA5E9 (blue), #F59E0B (gold), #1E293B (dark), #64748B (gray) */

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

:root {
    --primary-blue: #0EA5E9;
    --primary-blue-light: #38BDF8;
    --primary-blue-dark: #0284C7;
    --accent-gold: #F59E0B;
    --accent-gold-light: #FBBF24;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --error-red: #EF4444;
    --success-green: #10B981;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Trademark Superscript */
.tm {
    font-size: 0.5em;
    vertical-align: super;
    font-weight: 500;
    margin-left: 1px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.08);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.08);
    top: 200px;
    left: -100px;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(14, 165, 233, 0.06);
    bottom: 100px;
    right: 20%;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    margin-left: 10%;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.highlight-gold {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    border-radius: 32px;
    overflow: hidden;
    padding: 20px 15px;
}

.app-header {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.friend-card {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.friend-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.friend-info {
    flex: 1;
}

.friend-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.friend-details {
    font-size: 13px;
    color: var(--text-gray);
}

.add-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

/* App Store Badges */
.app-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-badge svg {
    width: 28px;
    height: 28px;
}

.store-label {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.store-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.store-badge.light {
    background: var(--bg-white);
    color: var(--text-dark);
}

.store-badge.coming-soon {
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

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

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Exclusive Section */
.exclusive {
    padding: 100px 20px;
    background: var(--bg-light);
}

.exclusive-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.exclusive-content {
    flex: 1;
}

.usc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.exclusive h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.exclusive p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--success-green);
}

.exclusive-visual {
    flex: 0 0 300px;
}

.exclusive-logo {
    width: 100%;
    max-width: 300px;
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-badges {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Page Content (Privacy, Terms, Support) */
.page-content {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

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

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.last-updated {
    color: var(--text-gray);
    font-size: 14px;
}

.content-section {
    margin-bottom: 40px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.intro-text {
    font-size: 17px;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.7;
}

.content-section h2 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.content-section h3 {
    font-size: 17px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-section a {
    color: var(--primary-blue);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.03));
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 16px;
}

.highlight-box p {
    margin-bottom: 10px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Legal Caps Text */
.legal-caps {
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.8;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.03));
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}

.contact-email svg {
    width: 20px;
    height: 20px;
}

.contact-email:hover {
    text-decoration: underline;
}

/* FAQ Items */
.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 0;
}

.faq-item p {
    margin-bottom: 0;
}

/* Acknowledgment Section */
.acknowledgment-section {
    text-align: center;
    background: var(--bg-light);
}

.acknowledgment {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.company-info {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.view-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s;
}

.view-link:hover {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 50px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .app-badges {
        justify-content: center;
    }

    .exclusive-container {
        flex-direction: column;
        text-align: center;
    }

    .exclusive-visual {
        order: -1;
    }

    .trust-points {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .features h2,
    .exclusive h2,
    .cta h2,
    .page-header h1 {
        font-size: 32px;
    }

    .content-section {
        padding: 20px;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .store-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
