:root {
    --primary: #17365C;
    --primary-dark: #0c1c30;
    --primary-light: #2c5485;
    --secondary: #E9ECF3;
    --secondary-dark: #ccd4e5;
    --white: #FFFFFF;
    --accent: #C5A880; /* Premium Gold Accent */
    --accent-dark: #a88d66;
    --text-dark: #1E293B; /* Slate 900 */
    --text-muted: #64748B; /* Slate 500 */
    --text-light: #E2E8F0; /* Slate 200 */
    --success: #10B981; /* Emerald 500 */
    --success-bg: #E6F4EA;
    --warning-bg: #FEF3C7;
    --warning-border: #F59E0B;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(23, 54, 92, 0.05);
    --shadow-md: 0 8px 16px rgba(23, 54, 92, 0.08);
    --shadow-lg: 0 16px 32px rgba(23, 54, 92, 0.12);
    --shadow-premium: 0 24px 48px rgba(12, 28, 48, 0.18);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography styling for premium look */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.15rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-center { text-align: center !important; }
.text-muted { color: var(--text-muted) !important; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--white) !important;
}

.section-light {
    background-color: var(--secondary);
}

/* Header Styling */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--secondary-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

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

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-logo {
    height: 38px;
    width: auto;
}

.partner-logo-header {
    height: 32px;
    width: auto;
    border-left: 1px solid var(--secondary-dark);
    padding-left: 12px;
    display: block; /* Visible on all screens */
}

@media (max-width: 575px) {
    .site-logo {
        height: 32px;
    }
    .partner-logo-header {
        height: 26px;
        padding-left: 8px;
    }
    .site-header {
        padding: 8px 0;
    }
    .header-container {
        padding: 0 12px;
    }
    .site-header .btn-sm {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Buttons styling - premium & micro-animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    width: 100%;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--primary-dark) 100%);
    padding: 56px 0 48px 0;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 2.1rem;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-title span {
    display: block;
    color: var(--white);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 30px auto;
    opacity: 0.95;
    line-height: 1.5;
}

/* Stats Row */
.stats-container {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    text-align: left;
    backdrop-filter: blur(8px);
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.4;
}

/* Section Headers */
.section-header {
    max-width: 750px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-subtitle {
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.section-main-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Risks Section */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.risk-card {
    background-color: var(--white);
    border: 1px solid var(--secondary-dark);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.risk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    opacity: 0;
    transition: var(--transition);
}

.risk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 54, 92, 0.15);
}

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

.risk-card-icon {
    width: 44px;
    height: 44px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: bold;
}

.risk-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.risk-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.risk-bottom-note {
    text-align: center;
    margin-top: 36px;
    background-color: var(--secondary);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
}

.comparison-card {
    background-color: var(--white);
    border: 1px solid var(--secondary-dark);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.comparison-card.lst-card {
    border: 2px solid var(--primary-light);
    background: linear-gradient(180deg, var(--white) 0%, rgba(233, 236, 243, 0.2) 100%);
    position: relative;
    box-shadow: var(--shadow-md);
}

.comparison-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--secondary-dark);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
}

.comparison-item-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: bold;
}

.typical-item-icon {
    background-color: #FEE2E2;
    color: #EF4444;
}

.lst-item-icon {
    background-color: var(--success-bg);
    color: var(--success);
}

/* Outcomes / Growth Section */
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
}

.outcome-bullet {
    background-color: var(--white);
    border: 1px solid var(--secondary-dark);
    padding: 24px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.outcome-bullet:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.outcome-bullet-icon {
    width: 32px;
    height: 32px;
    background-color: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.outcome-bullet-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.outcome-bullet-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.45;
}

/* Strategy Session Inclusions & Booking */
.call-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.call-left h2 {
    margin-bottom: 20px;
}

.call-inclusions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.inclusion-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.inclusion-icon {
    width: 22px;
    height: 22px;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusion-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.call-note {
    background-color: var(--secondary);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent);
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}

/* Calendly Embed styling */
.calendly-card {
    background-color: var(--white);
    border: 1px solid var(--secondary-dark);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 16px;
    background: radial-gradient(circle at top left, var(--white) 0%, var(--secondary) 100%);
}

.calendly-header {
    text-align: center;
    padding: 12px 12px 8px 12px;
    border-bottom: 1px solid var(--secondary-dark);
}

.calendly-header h3 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.calendly-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.calendly-widget-wrapper {
    min-height: 600px;
    width: 100%;
}

/* Trust Seal Integration Row (Shorter page) */
.trust-seals-block {
    margin-top: 36px;
    border-top: 1px solid var(--secondary-dark);
    padding-top: 32px;
}

.trust-badges-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.partner-badge-img {
    height: 48px;
    width: auto;
}

.certifications-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-badge-compact {
    height: 32px;
    background: var(--white);
    padding: 2px 8px;
    border-radius: var(--border-radius);
    border: 1px solid var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge-compact img {
    height: 22px;
    width: auto;
}

.client-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    justify-content: center;
    align-items: center;
}

.client-logo-item-compact img {
    max-height: 20px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo-item-compact img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

/* Final CTA Section */
.final-cta {
    background: radial-gradient(circle at 20% 80%, var(--primary-light) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 72px 0;
}

.final-cta h2 {
    font-size: 1.85rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto 28px auto;
    opacity: 0.9;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-muted);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    text-align: center;
}

.footer-logo {
    height: 24px;
    width: auto;
    margin: 0 auto 12px auto;
    opacity: 0.5;
}

/* Sticky Bottom Mobile CTA styling removed */

/* Responsive Breakpoints */
@media (min-width: 768px) {
    h1 {
        font-size: 2.65rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .hero {
        padding: 72px 0 56px 0;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .btn-group {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }

    .btn-large {
        width: auto;
        min-width: 260px;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .comparison-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .call-split {
        grid-template-columns: 1fr 1.15fr;
        gap: 40px;
    }

    .call-inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo-header {
        display: block;
    }
}

@media (max-width: 767px) {
    /* Sticky mobile cta padding removed */
    body {
        padding-bottom: 0px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
