/* CSS Variables: Ocean Breeze Palette & Design Tokens */
:root {
    --navy: #0f172a;
    --dark-navy: #0b1120;
    --blue: #1d4ed8;
    --blue-hover: #1e40af;
    --cyan: #06b6d4;
    --sky: #e0f2fe;
    --mist: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    --font-main: 'Inter', sans-serif;
    
    --shadow-soft: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-float: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
    --shadow-cyan-glow: 0 0 25px rgba(6, 182, 212, 0.2);
    --shadow-blue-glow: 0 8px 30px rgba(29, 78, 216, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-sm {
    max-width: 800px;
}
.text-center { text-align: center; }
.text-white { color: var(--white); }
.blue-text { color: var(--blue); }
.text-cyan { color: var(--cyan); }

.bg-white { background-color: var(--white); }
.bg-light-gray { background-color: var(--gray-100); }
.bg-navy { background-color: var(--navy); color: var(--white); }
.bg-mist { background-color: var(--mist); }

.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(29, 78, 216, 0.2);
    border: 1px solid transparent;
}
.btn-primary:hover {
    background-color: var(--blue-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(29, 78, 216, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--sky);
    color: var(--blue);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--sky);
}
.btn-secondary:hover {
    background-color: #bae6fd;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.95rem;
}
.btn-ghost:hover {
    color: var(--blue);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.link-cta {
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
}
.link-cta:hover {
    gap: 10px;
    color: var(--blue-hover);
}
.white-link {
    color: var(--cyan);
}
.white-link:hover {
    color: var(--white);
}

/* 1. Announcement Bar & Nav */
.announcement-bar {
    background-color: var(--dark-navy);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
}
.announcement-bar a {
    color: var(--cyan);
    font-weight: 600;
}
.announcement-bar a:hover {
    text-decoration: underline;
}
.announcement-bar .dot {
    margin: 0 6px;
    opacity: 0.5;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.brand-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}
.bolt-icon {
    color: var(--cyan);
    font-size: 1.1rem;
}
.nav-links {
    display: flex;
    gap: 24px;
}
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--navy);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* 2. Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background: url('images/hero.png') no-repeat center right;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.bga-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%);
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content {
    max-width: 650px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
    margin-bottom: 16px;
}
.hero-headline {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.hero-subheadline {
    color: var(--gray-200);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 16px;
}

/* Stat Strip */
.stat-strip {
    background-color: var(--dark-navy);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
}
.stat-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 0 20px;
}
.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}
.stat-label {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 200px;
}

/* Sections Global */
.section {
    padding: 100px 0;
}
.section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--navy);
    line-height: 1.2;
}
.section h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--navy);
}
.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}
.section-title-large {
    font-size: 2.75rem !important;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.feature-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Feature Split Components */
.feature-split {
    display: flex;
    align-items: center;
    gap: 60px;
}
.feature-reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-image {
    flex: 1;
}
.feature-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid var(--gray-200);
}

.pulse-mockup img, .float-mockup img, .float-mockup-alt img {
    transition: transform 0.5s ease;
}
.pulse-mockup:hover img { transform: scale(1.02); }
.float-mockup:hover img { transform: translateY(-10px); }
.float-mockup-alt:hover img { transform: translateY(-5px) scale(1.01); }

.glow-shadow img {
    box-shadow: var(--shadow-cyan-glow), 0 10px 30px rgba(0,0,0,0.1);
}
.shadow-heavy img {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.rounded-edge img {
    border-radius: 24px;
}
.pr-large {
    padding-right: 40px;
}

/* Grid within Feature */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.feature-card {
    background-color: var(--mist);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.feature-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    border-color: var(--sky);
}
.feature-card i {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 12px;
}
.feature-card h4 {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
}

/* 5. Results Section */
.results-section h2 {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 20px auto;
}
.results-section .section-subtitle {
    color: var(--gray-400);
}
.metric-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
}
.metric-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    flex: 1;
    max-width: 300px;
    text-align: center;
    transition: var(--transition);
}
.metric-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
}
.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 10px;
}
.metric-desc {
    color: var(--gray-200);
    font-size: 1rem;
    line-height: 1.4;
}
.logo-chips {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}
.logo-chip {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 40px;
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* 6. Feature Detail */
.spacer-large {
    margin-bottom: 120px;
}
.spacer-large:last-child {
    margin-bottom: 0;
}

/* 7. Value Props */
.four-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.value-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.icon-circle i {
    font-size: 1.5rem;
    color: var(--blue);
}
.value-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.4;
}

/* 8. Bullet Grid */
.bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

/* 9. Role Grid */
.role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}
.role-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.role-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-float);
}
.role-card h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.role-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 80%;
}
.inset-mock {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--mist);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-soft);
}
.inset-mock i {
    font-size: 1.8rem;
    color: var(--gray-400);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--cyan);
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    object-fit: cover;
    border: 3px solid var(--sky);
}
.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
    flex-grow: 1;
}
.testimonial-card .quote-author {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}
.testimonial-card .quote-author strong {
    color: var(--navy);
    font-weight: 700;
}

/* 10. Final CTA */
.final-cta {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
}
.glowing-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.5));
}
.final-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}
.cta-desc {
    color: var(--gray-200);
    font-size: 1.15rem;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.cta-shadow {
    box-shadow: var(--shadow-blue-glow);
}
.trust-strip {
    color: var(--gray-400);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 40px 0;
    text-align: center;
}
.footer-logo {
    font-weight: 800;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.footer p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .feature-split { flex-direction: column !important; text-align: center; gap: 40px; }
    .hero-headline { font-size: 3rem; }
    .stat-container { flex-wrap: wrap; }
    .stat-item { flex: 0 0 100%; justify-content: center; border: none !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; padding: 20px 0; }
    .four-col-grid { grid-template-columns: 1fr 1fr; }
    .bullet-grid { text-align: left; }
    .role-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: block; }
    .hero-headline { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .metric-cards { flex-direction: column; align-items: center; }
    .logo-chips { flex-direction: column; }
    .four-col-grid { grid-template-columns: 1fr; }
    .bullet-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
}
