:root {
    /* Core Brand Colors */
    --primary-navy: #102A43;
    --accent-orange: #F75C03;
    --dark-text: #222222;

    /* Neutrals & Backgrounds */
    --base-white: #FFFFFF;
    --light-gray: #F5F5F7;
    --muted-blue: #E6EEF7;

    /* Functional */
    --primary-hover: #d24e03;
    /* Darker orange */
    --card-shadow: 0 4px 12px rgba(16, 42, 67, 0.08);
}

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

/* Background Shapes (Subtle) */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 90% 10%, var(--muted-blue) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, var(--light-gray) 0%, transparent 40%);
    opacity: 0.6;
}

@keyframes pulseBg {
    /* Removed animation for cleaner look, or verify if needed later */
}

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

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--primary-navy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--base-white);
    letter-spacing: -0.02em;
}

.badge {
    background: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    text-transform: uppercase;
}

.navbar nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-left: 32px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 92, 3, 0.3);
}

.btn-secondary {
    background: var(--base-white);
    color: var(--primary-navy);
    border: 1px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--light-gray);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--muted-blue) 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-navy);
}

.subhead {
    font-size: 1.25rem;
    color: #475569;
    /* Slate 600 for subtext */
    max-width: 500px;
}

/* Widget Container */
.widget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-panel {
    background: var(--base-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(16, 42, 67, 0.15);
    /* Soft shadow on white card */
    width: 100%;
    max-width: 400px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Remove spotlight effect for cleaner look */
.glass-panel::before {
    display: none;
}

.widget-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.5;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: #475569;
    font-size: 1.125rem;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.pillar-card {
    background: var(--base-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(16, 42, 67, 0.12);
    border-color: var(--accent-orange);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(247, 92, 3, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.pillar-card p {
    color: #475569;
    font-size: 0.95rem;
}

/* Feature Grid wrapper to create alternating section */
.features-section {
    background-color: var(--muted-blue);
    margin-top: 60px;
    margin-bottom: -60px;
    /* offset padding */
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.feature-item {
    background: var(--base-white);
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.feature-item:hover {
    background: var(--primary-navy);
    color: white;
}

.feature-item:hover i {
    color: var(--accent-orange);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-navy);
}

.feature-item span {
    font-weight: 600;
}

/* Differentiators (Diff Box) */
.diff-section {
    padding: 80px 0;
}

.diff-box {
    background: var(--primary-navy);
    color: var(--base-white);
    border-radius: 16px;
    padding: 64px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(16, 42, 67, 0.25);
}

.diff-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.diff-content ul {
    list-style: none;
    padding: 0;
}

.diff-content li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.diff-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-orange);
    margin-top: 4px;
}

.diff-cta {
    background: rgba(255, 255, 255, 0.05);
    /* very subtle on navy */
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-cta h3 {
    margin-bottom: 24px;
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: var(--primary-navy);
    padding: 24px 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    color: var(--accent-orange);
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #475569;
}

.accordion-content p {
    padding-bottom: 24px;
}

/* Footer / CTA */
.cta-footer {
    text-align: center;
    background: linear-gradient(to top, var(--light-gray), transparent);
}

.roi-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin: 48px 0;
}

.stat .num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat .desc {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-large {
    font-size: 1.25rem;
    padding: 16px 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 48px 0;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.9rem;
    background-color: var(--base-white);
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 24px;
}

.footer-links a:hover {
    color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .navbar nav {
        display: none;
        /* Simplification for demo */
    }

    .diff-box {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}