@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Premium American-Scandinavian B2B Palette */
    --bg-main: #f8fafc;       /* Ultra-light cool icy-gray */
    --bg-alt: #f1f5f9;        /* Slightly darker cool gray */
    --bg-card: #ffffff;       /* Pure white card */
    
    --primary: #2563eb;       /* Cobalt / Electric Blue Accent */
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.05);
    
    --secondary: #0b1120;     /* Deep Midnight Navy (Primary text and headers) */
    --secondary-light: #1e293b;
    
    /* Strict No-Red/No-Green Severity & Status Colors (using Blues & Slate Greys) */
    --severity-safe: #2563eb;       /* Blue for Safe/Success */
    --severity-safe-glow: rgba(37, 99, 235, 0.06);
    --severity-alert: #475569;      /* Muted Slate for warning/blocked */
    --severity-alert-glow: rgba(71, 85, 105, 0.08);
    
    --border-color: #e2e8f0;  /* Thin slate border */
    --border-hover: #cbd5e1;
    
    --text-main: #0b1120;     /* Midnight Navy (Primary body text inside cards) */
    --text-muted: #475569;    /* Muted Slate (Secondary helper text) */
    --text-light: #94a3b8;    /* Light Editorial Slate */
    
    /* Spacing & Layout */
    --max-width: 1400px;
    --border-radius-lg: 8px;  /* Sharp yet friendly lines */
    
    /* Soft, highly diffused drop shadows with a subtle navy/blue tint */
    --shadow-sm: 0 1px 3px rgba(11, 17, 32, 0.02);
    --shadow-md: 0 20px 40px rgba(11, 17, 32, 0.06); /* Large soft shadow */
    --shadow-lg: 0 30px 60px rgba(11, 17, 32, 0.08); /* Deep soft shadow */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.75;         /* Generous line-height for readability */
    background-color: var(--bg-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: var(--border-radius-lg);
}

/* Typography (Magazine Effect: Massive headings, tight tracking, huge size contrast) */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;          /* Massive dominant heading */
    font-weight: 800;           /* Heavy weight for maximum impact */
    color: var(--secondary);
    line-height: 1.05;
    letter-spacing: -0.04em;    /* Tight letter-spacing (tracking-tighter) */
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;          /* Strong section header */
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;          /* Card header */
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p, li, .card-text {
    font-size: 0.95rem;         /* Slightly smaller body copy (14px-16px) */
    color: var(--text-muted);
    line-height: 1.75;
}

.helper-text, .pricing-header p, .ticker-item, .audit-info, .author-role, footer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Header & Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-accent,
.logo-dotcom {
    color: var(--primary) !important;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary);
}

.lang-selector {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.4rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    box-shadow: var(--shadow-sm);
}

.lang-selector:hover {
    border-color: var(--border-hover);
}

/* Static Corporate Benefit Banner */
.ticker-container {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 2rem;
}

.ticker-track {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ticker-item span.highlight {
    color: var(--primary);
    margin-right: 0.3rem;
}

.ticker-item span.arrow {
    color: var(--text-light);
    margin: 0 0.4rem;
}

/* Sections (Deliberate Negative Space) */
section {
    padding: 7.5rem 2rem;       /* Expanded margins for premium breathing room */
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Section */
/* Hero Intro Section (100vh Centered Opening) */
.hero-intro {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.hero-intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-intro-content .badge {
    align-self: center;
}

.hero-intro h1 {
    font-size: 3.5rem;          /* Dramatic contrast title */
}

.hero-line {
    display: block;
    margin-bottom: 0.5rem;
}
.hero-line:last-child {
    margin-bottom: 0;
}

.hero-recover-highlight {
    color: var(--primary);
}

.highlight-blue {
    color: var(--primary);
    font-weight: inherit;
}

.highlight-blue-underlined {
    color: var(--primary);
    text-decoration: underline;
    font-weight: inherit;
}

.badge {
    background: var(--primary-glow);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.animated-underline {
    position: relative;
    display: inline-block;
    color: var(--secondary);
}

.animated-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: draw-underline 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes draw-underline {
    to {
        transform: scaleX(1);
    }
}

/* Corporate KPI Grid (Inside White Card) */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.8rem;
}

.kpi-card {
    display: flex;
    flex-direction: column;
}

.kpi-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;        /* Standalone Tier 1 Metrics */
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: color 0.5s ease;
}

.kpi-num.animate-blue {
    color: var(--primary) !important;
}

.kpi-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.4rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-intro .kpi-grid {
    width: 100%;
    max-width: 800px;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.8rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Hero Action Section */
.hero-action-section {
    padding: 2rem 2rem 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-action-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-action-copy {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.action-lead {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--secondary);
    margin: 0;
}

.action-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.action-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--primary-glow);
    padding: 1.25rem;
    border-radius: var(--border-radius-lg);
    border-left: 3px solid var(--primary);
}

.highlight-check {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.action-highlight-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
}

/* Buttons (Premium Electric Blue & Midnight outline) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--secondary);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: var(--bg-alt);
    transform: translateY(-1px);
}

/* Hero Visual (Dashboard White Card) */
.hero-visual {
    position: relative;
}

.hero-visual .audit-terminal {
    background: var(--bg-card);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg); /* Premium Soft Shadow */
    overflow: hidden;
}

.hero-visual .terminal-header {
    background: var(--bg-alt);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-visual .terminal-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-visual .status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-ring 2s infinite ease-in-out;
}

.hero-visual .terminal-body {
    background: var(--bg-card);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Hero Eligibility Card Form */
.eligibility-card {
    background: #004573;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 69, 115, 0.2);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.eligibility-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.eligibility-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
}

.form-input {
    height: 48px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 0 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #ffffff;
}

.eligibility-btn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-lg);
    background: #0079D0;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 121, 208, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.eligibility-btn:hover {
    background: #006cb9;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 121, 208, 0.35);
}

.audit-status-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.audit-status-tag.success {
    background: var(--severity-safe-glow);
    color: var(--severity-safe);
}

.audit-status-tag.blocked {
    background: var(--severity-alert-glow);
    color: var(--severity-alert);
}



/* Social Proof (Subtle White Elevated Box) */
.social-proof {
    text-align: center;
    background: var(--primary);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: none;
    padding: 3rem;
    margin: 3rem auto;
    max-width: calc(var(--max-width) - 4rem);
}

.social-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.brand-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.brand-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
}

.brand-item span.highlight {
    color: #ffffff;
}

.logo-marquee {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0 0;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6rem;
    pointer-events: none;
    z-index: 1;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(37, 99, 235, 0) 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--primary) 0%, rgba(37, 99, 235, 0) 100%);
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    gap: 2.5rem;
    animation: logo-scroll 35s linear infinite;
    will-change: transform;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-marquee-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
}

.logo-marquee-item {
    flex: 0 0 auto;
    width: 140px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.logo-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-marquee:hover .logo-marquee-item img {
    opacity: 1;
}

.logo-marquee-item:hover img {
    transform: translateY(-3px) scale(1.04);
    opacity: 1;
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Bento Box & Cards (White elevated grids) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.glass-card {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md); /* Premium Soft Shadow */
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
}

.card-title {
    font-size: 1.35rem;       /* Tier 2 scale */
    font-weight: 700;
    color: var(--secondary);
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.8rem;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-highlight {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;        /* Standalone Tier 1 Blue Metrics */
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
}

.stat-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-quote {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Proof Section */
.proof-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.proof-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.proof-item {
    display: flex;
    gap: 1.2rem;
}

.proof-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1.1;
}

.proof-body h3 {
    font-size: 1.35rem;       /* Tier 2 */
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

/* 50 Detection Factors */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    padding: 0.65rem 1.6rem;
    border-radius: var(--border-radius-lg);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--border-hover);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.factors-display {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.factors-display.active {
    display: grid;
}

.factor-item {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.factor-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.factor-check {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.factor-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-main);
}

.factor-label {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.factor-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.factor-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Pricing Grid Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

/* Pricing card base setup */
.pricing-card {
    background: var(--bg-card);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.paid-plan-card:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

/* Plan Comparison component visual classes */
.pricing-card.free-plan-card {
    background: #f8fafc;      /* Very light cool gray background */
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.pricing-card.paid-plan-card {
    background: linear-gradient(135deg, #0b1120 0%, #2563eb 100%);  /* Gradient paid card visual exception */
    border: none;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2); /* Deep blue-glow shadow */
    color: #ffffff;
}

.pricing-card.paid-plan-card .pricing-header h3,
.pricing-card.paid-plan-card .price-num,
.pricing-card.paid-plan-card .pricing-benefits li,
.pricing-card.paid-plan-card .pricing-header p {
    color: #ffffff;
}

.pricing-card.paid-plan-card .pricing-header p {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-card.paid-plan-card .pricing-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.paid-plan-card .price-unit {
    color: rgba(255, 255, 255, 0.6);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc2626; /* Crimson Red as requested by user */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    padding: 0.35rem 1rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.35rem;       /* Tier 2 scale */
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;        /* Standalone Tier 1 Metric */
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.price-unit {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    list-style: none;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.5;
}

.benefit-check {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-card.paid-plan-card .benefit-check {
    color: #93c5fd;           /* High contrast light blue on dark blue background */
}

/* Call to Action Banner (Clean Slate Blue - Solid color, no gradient) */
.cta-banner {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto;
    background: var(--secondary); /* Solid corporate Navy, no gradient */
    color: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 5rem 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 650px;
    line-height: 1.7;
}

/* Platform Features Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.platform-card {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover .platform-icon {
    transform: scale(1.15) rotate(6deg);
}

.platform-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.platform-title {
    font-size: 1.35rem;       /* Tier 2 */
    font-weight: 700;
    color: var(--secondary);
}

.platform-desc {
    font-size: 0.95rem;       /* Tier 3 */
    color: var(--text-muted);
    line-height: 1.7;
}

/* Security & Compliance (Flying White Cards style) */
.security-section {
    text-align: center;
    padding-bottom: 4rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.security-card {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.security-card:hover {
    box-shadow: var(--shadow-lg);
}

.security-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}

.security-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer Section */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 6rem 2rem 3rem 2rem;
    font-size: 0.85rem;       /* Tier 4 scale */
    color: var(--text-muted);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 0.7fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--secondary);
}

/* Custom footer logo styles handled by global .logo-accent and .logo-dotcom */

.footer-col h4 {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-bottom p {
    color: var(--text-light);
}

/* Alignment Helper Classes */
.flex-col-align-bottom {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.align-btn-bottom {
    margin-top: auto;
    width: 100%;
}

/* Ecosystem Section (B2B Grid Layout) */
.ecosystem-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem 2rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.ecosystem-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-start;
}

.ecosystem-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ecosystem-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.ecosystem-cta-wrapper {
    margin-top: 0.5rem;
}

.ecosystem-menu {
    display: flex;
    flex-direction: column;
}

.menu-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.menu-item:first-child {
    padding-top: 0;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item:hover {
    transform: translateX(6px);
    border-color: var(--border-hover);
}

.menu-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary);
    transition: color 0.2s ease;
}

.menu-item:hover .menu-item-title {
    color: var(--primary);
}

.menu-item-arrow {
    width: 18px;
    height: 18px;
    color: var(--primary);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    flex-shrink: 0;
}

.menu-item:hover .menu-item-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why Google & Meta Accept Proof Section */
.proof-network-section {
    padding: 7.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.proof-network-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.proof-network-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-network-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.proof-network-highlight {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.proof-network-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.proof-network-visual {
    position: relative;
}

.video-container {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(11, 17, 32, 0.1);
}

.video-header {
    background: var(--bg-alt);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.video-dots {
    display: flex;
    gap: 0.4rem;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.video-dot.red { background: #ff5f56; }
.video-dot.yellow { background: #ffbd2e; }
.video-dot.green { background: #27c93f; }

.video-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: monospace;
}

.video-player-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-player-wrapper video,
.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* Proof Summary Cards Row Layout */
.proof-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    width: 100%;
}

.proof-card {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.proof-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

.proof-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Staggered Load Animations for Hero Block */
@keyframes slide-up-fade {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-intro-content .badge {
    opacity: 0;
    animation: slide-up-fade 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.hero-intro h1 {
    opacity: 1;
}

.hero-line {
    opacity: 0;
    animation: slide-up-fade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-1 {
    animation-delay: 0.25s;
}

.hero-line-2 {
    animation-delay: 0.55s;
}

.hero-line-3 {
    animation-delay: 0.85s;
}

.scroll-indicator,
.hero-cta-btn {
    opacity: 0;
    animation: slide-up-fade 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

.hero-intro .kpi-grid {
    opacity: 0;
    animation: slide-up-fade 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.3s;
}

.hero-action-copy {
    opacity: 0;
    animation: slide-up-fade 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.5s;
}

.hero-action-section .eligibility-card {
    opacity: 0;
    animation: slide-up-fade 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.85s;
}

/* Interactive KPI block hover state */
.kpi-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kpi-card:hover {
    transform: translateY(-3px);
}

.kpi-card:hover .kpi-num {
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.25);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .hero-intro h1 {
        font-size: 2.8rem;
    }
    
    .hero-action-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .features-grid, .testimonial-grid, .factors-display, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1.5fr repeat(2, 1fr);
        gap: 2.5rem;
    }
    .proof-network-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .proof-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid, .testimonial-grid, .factors-display, .pricing-grid, .platform-grid, .security-grid, .kpi-grid, .proof-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-intro h1 {
        font-size: 2.25rem;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.platform-card-logo {
    height: 28px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.platform-card:hover .platform-card-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.factors-header-block {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.factors-subheader {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.infrastructure-logos-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
}

.infrastructure-logo {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.infrastructure-logo:hover {
    filter: grayscale(0%);
    opacity: 0.95;
}

.factors-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}



/* Legal Landscape Section */
.legal-section {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 4rem auto;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: flex-start;
}

.legal-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.legal-cta-wrapper {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legal-cta-subtext {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.6rem;
    line-height: 1.4;
}

.legal-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.legal-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-links a:hover {
    text-decoration: underline;
}

.legal-links .link-dot {
    color: var(--text-light);
    user-select: none;
}


.legal-overline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--secondary);
}

.legal-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 600;
}

.legal-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-point {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-point:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.legal-point-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.legal-point-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .legal-section {
        padding: 40px 24px;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        margin: 2rem auto;
    }
}

/* Navigation Login Button */
.nav-links a.nav-login-btn,
.nav-login-btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    box-shadow: none !important;
    color: #ffffff !important;
}
.nav-links a.nav-login-btn:hover,
.nav-login-btn:hover {
    background: var(--primary-hover) !important;
    transform: none !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2) !important;
    color: #ffffff !important;
}

/* Navigation Create Account Button */
.nav-links a.nav-create-account-btn,
.nav-create-account-btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    box-shadow: none !important;
    background-color: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #000000 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-links a.nav-create-account-btn:hover,
.nav-create-account-btn:hover {
    border-color: #0b1120 !important;
    background-color: #f1f5f9 !important;
    color: #000000 !important;
    transform: none !important;
}

/* ==========================================
   Blog Section Styles
   ========================================== */
.blog-feed-header {
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-category-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.blog-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 1.2rem;
}

.blog-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.blog-card-link:hover {
    text-decoration: underline;
}

/* Article Page Layout */
.blog-article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-article-hero-wrapper {
    background: var(--secondary); /* Solid Navy Blue background */
    color: #ffffff;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
}

.blog-article-hero-wrapper .blog-article-meta {
    margin-bottom: 1.5rem;
}

.blog-article-hero-wrapper .blog-article-meta a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    font-weight: 600;
}

.blog-article-hero-wrapper .blog-article-meta a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.blog-article-hero-wrapper .blog-category-tag {
    color: rgba(255, 255, 255, 0.9) !important;
}

.blog-article-hero-wrapper .blog-article-title {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Hero Asymmetric Grid: 2/3 Title, 1/3 Banner */
.blog-article-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Hero Vertical CTA Card */
.blog-hero-banner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.blog-hero-banner-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
}

.blog-hero-banner-card-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Two-Column Grid: 1/3 Article, 2/3 Sidebar */
.blog-article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

body.blog-article-page {
    background-color: #ffffff !important;
}

.blog-content-body {
    background: transparent;
    padding: 0 0 0 4rem;
    border-radius: 0;
    box-shadow: none;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.blog-content-body p {
    margin-bottom: 1.5rem;
}

.blog-content-body p:last-child {
    margin-bottom: 0;
}

.blog-content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Sticky Sidebar Banner */
.blog-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.blog-sidebar-banner {
    background: var(--secondary); /* Solid Navy Blue background */
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #ffffff;
}

.blog-sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff; /* White title */
    line-height: 1.2;
}

.blog-sidebar-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8); /* White subtext */
}

.blog-sidebar-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-benefits li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9); /* White benefit list */
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.blog-sidebar-benefits .benefit-check {
    color: #ffffff; /* White check icon */
    font-weight: bold;
    flex-shrink: 0;
}

.blog-sidebar-banner .btn-white {
    background-color: #ffffff !important;
    color: var(--primary) !important;
    border: none !important;
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.blog-sidebar-banner .btn-white:hover {
    background-color: var(--bg-alt) !important;
    color: var(--primary-hover) !important;
}

/* Bottom CTA Block */
.blog-end-cta {
    background: var(--secondary); /* Solid Navy Blue background */
    color: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 5rem 4rem;
    margin-top: 5rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    box-shadow: var(--shadow-lg);
}

.blog-end-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.blog-end-cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.6;
}

.blog-end-cta .btn-white {
    background-color: #ffffff !important;
    color: var(--primary) !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.blog-end-cta .btn-white:hover {
    background-color: var(--bg-alt) !important;
    color: var(--primary-hover) !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-article-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .blog-article-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .blog-sidebar {
        position: static;
        order: 1;
    }
    .blog-content-body {
        order: 2;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .blog-article-container {
        padding: 2rem 1.5rem;
    }
    .blog-article-hero-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .blog-content-body {
        padding: 2rem 1.5rem;
    }
    .blog-end-cta {
        padding: 3.5rem 1.5rem;
    }
    .blog-end-cta-title {
        font-size: 2rem;
    }
}



