@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #0f172a;
    --secondary: #fbbf24;
    --accent: #3b82f6;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --navy-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --glass: rgba(255, 255, 255, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 6%; /* Increased from 2rem/4rem to 6% for better breathing room */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem; /* Increased padding */
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem; /* Increased gap */
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem; /* Slightly larger */
    color: var(--primary);
    margin-bottom: 2rem;
}

.hero-content h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.4);
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Features */
.section {
    padding: 8rem 0; /* Increased from 6rem to 8rem */
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; /* Increased gap */
}

.feature-card {
    padding: 4rem 2.5rem;
    background: var(--bg);
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-8px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-alt);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    color: var(--secondary);
}

/* Profile Section */
.profile-section {
    background: white;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 5rem;
    background: var(--bg-alt);
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.profile-avatar {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.profile-role {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--gold-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.profile-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.trust-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sample Section */
.sample-section {
    background: var(--navy-gradient);
    color: white;
}

.sample-section .section-title h2 {
    color: white;
}

.sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.sample-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.sample-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.sample-content blockquote {
    font-size: 1.8rem;
    font-style: italic;
    border-left: 6px solid var(--secondary);
    padding-left: 2.5rem;
    margin: 3rem 0;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pricing-card {
    background: white;
    padding: 4rem 2.5rem;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    z-index: 2;
}

.badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.features-list li::before {
    content: '✔';
    color: var(--secondary);
    font-weight: bold;
}

/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #e2e8f0;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Footer CTA */
.footer-cta {
    background: var(--navy-gradient);
    color: white;
    text-align: center;
    padding: 10rem 0;
}

.footer-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .sample-grid, .pricing-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 10rem 0 6rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .profile-card {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .trust-stats {
        justify-content: center;
        gap: 2rem;
    }
    .stat-item {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 8%;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
}
