/* ====================
   Variables & Reset
   ==================== */

:root {
    --primary: #063859;
    --bg-cream: #FEF3AE;
    --accent-green: #4CAF50;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* ====================
   Navigation
   ==================== */

.nav {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #FFE87C 0%, #FFC107 100%);
    border-bottom: 3px solid var(--primary);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a:active,
.nav-links a:focus {
    color: #084a6f;
    opacity: 0.8;
}

/* ====================
   Hero Section
   ==================== */

.hero {
    background: linear-gradient(135deg, rgba(6, 56, 89, 0.08) 0%, var(--bg-cream) 50%, #FFE87C 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.feature-pill {
    background: #FFE87C;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(6, 56, 89, 0.1);
    border: 2px solid rgba(6, 56, 89, 0.15);
    transition: all var(--transition);
}

.feature-pill:hover {
    background: #FFC107;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 56, 89, 0.15);
}

/* ====================
   Buttons
   ==================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(6, 56, 89, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 56, 89, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ====================
   Why Section
   ==================== */

.why {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(254, 243, 174, 0.25) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: linear-gradient(135deg, rgba(254, 243, 174, 0.5) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid transparent;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 12px rgba(6, 56, 89, 0.08);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 56, 89, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 56, 89, 0.2);
    border-left-color: var(--primary);
    border-left-width: 6px;
    background: linear-gradient(135deg, #FFE87C 0%, var(--bg-cream) 100%);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ====================
   Pricing Teaser
   ==================== */

.pricing-teaser {
    background: linear-gradient(135deg, var(--primary) 0%, #084a6f 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-teaser-content {
    position: relative;
    z-index: 1;
}

.pricing-teaser-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-teaser-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.pricing-teaser .btn-primary {
    background: var(--bg-cream);
    color: var(--primary);
    font-weight: 700;
}

.pricing-teaser .btn-primary:hover {
    background: #FFE87C;
    transform: translateY(-2px) scale(1.05);
}

/* ====================
   Download Section
   ==================== */

.download {
    padding: 6rem 0;
    background: var(--bg-cream);
    text-align: center;
}

.download h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.download-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.download-grid {
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin: 0 auto 2rem;
}

.download-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(254, 243, 174, 0.3) 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 3px solid var(--primary);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    width: 200px;
    flex-shrink: 0;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary);
    transition: all var(--transition);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 56, 89, 0.2);
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFE87C 0%, var(--bg-cream) 100%);
}

.download-card:hover::before {
    height: 8px;
}

.download-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary);
}

.download-reqs {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.setup-notes {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: left;
}

.setup-notes h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.setup-note {
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(6, 56, 89, 0.06);
}

.setup-note h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.setup-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.setup-note strong {
    color: var(--text-dark);
}

.download-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .download-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ====================
   Trust Section
   ==================== */

.trust {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(6, 56, 89, 0.03) 0%, var(--white) 100%);
}

.trust h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary);
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(6, 56, 89, 0.06);
    transition: all var(--transition);
}

.trust-item:hover {
    transform: translateX(4px);
    border-left-color: var(--accent-green);
    box-shadow: 0 4px 16px rgba(6, 56, 89, 0.1);
}

.trust-item::before {
    content: '✓';
    color: var(--accent-green);
    font-size: 1.3rem;
    font-weight: bold;
    background: rgba(76, 175, 80, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* ====================
   Footer
   ==================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    transition: opacity var(--transition);
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ====================
   Responsive
   ==================== */

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .why,
    .download,
    .trust,
    .pricing-teaser {
        padding: 4rem 0;
    }

    .why-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
