* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #15212E;
    background-color: #F5F3EE;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px !important;
}

@media (max-width: 991px) {
    body {
        padding-top: 64px !important;
    }
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Space Grotesk', sans-serif;
}

::selection {
    background: var(--accent, #E8743B);
    color: #ffffff;
}

:root {
    --accent: #E8743B;
    --accent-soft: #FBE7DB;
    --bg-dark: #15212E;
    --bg-light: #F5F3EE;
    --bg-alt: #EFEDE6;
    --border-color: #E4E0D7;
    --text-dark: #15212E;
    --text-muted: #42525E;
}

/* ==========================================================================
   BOOTSTRAP CONFLICT OVERRIDES
   ========================================================================== */
/* Bootstrap resets h1-h3 margin; restore our sizes */
h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    color: #15212E;
}

/* Bootstrap makes btn-primary blue — override with our accent */
.btn-primary {
    font-family: 'Hanken Grotesk', sans-serif !important;
    background: var(--accent, #E8743B) !important;
    border-color: var(--accent, #E8743B) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 15px 26px !important;
    border-radius: 11px !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #d4622f !important;
    border-color: #d4622f !important;
    color: #fff !important;
}

.btn-secondary {
    font-family: 'Hanken Grotesk', sans-serif !important;
    background: #fff !important;
    border: 1px solid #D8D3C8 !important;
    color: #15212E !important;
    font-weight: 600 !important;
    padding: 15px 26px !important;
    border-radius: 11px !important;
    font-size: 16px !important;
    display: inline-block !important;
}

/* Bootstrap body color reset */
body {
    background-color: #F5F3EE !important;
    color: #15212E !important;
}

/* Bootstrap removes section padding — preserve our sections */
section {
    box-sizing: border-box;
}

/* Prevent Bootstrap row negative margins breaking layout */
.row {
    --bs-gutter-x: 1.5rem;
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes flowdot {
    0% {
        left: 0%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes risein {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulsering {
    0% {
        box-shadow: 0 0 0 0 var(--accent, #E8743B);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.reveal {
    animation: risein 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

/* ==========================================================================
   HEADER / BOOTSTRAP NAVBAR
   ========================================================================== */

header.site-header {
    width: 100%;
    background-color: #F5F3EE;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    border-bottom: 1px solid #EAE6DC;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header.site-header .navbar {
    background-color: #F5F3EE !important;
    min-height: 80px;
    padding: 0;
}

@media (max-width: 991px) {
    header.site-header .navbar {
        min-height: 64px;
    }

    header.site-header .navbar-collapse {
        background: #F5F3EE;
        border-top: 1px solid #EAE6DC;
        padding: 12px 16px 20px;
    }

    .navbar .nav-link {
        border-radius: 10px !important;
        padding: 12px 14px !important;
    }
}

.logo-btn {
    text-decoration: none !important;
}

.site-header .site-logo-img {
    height: 46px !important;
    max-height: 46px !important;
    width: auto !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
    filter: contrast(110%) !important;
    display: block !important;
}

.navbar .nav-link {
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2A3947 !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    background: #EAE6DC !important;
    color: #15212E !important;
}

.btn-contact {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14.5px !important;
    color: #ffffff !important;
    background-color: #15212E !important;
    border: none;
    padding: 11px 22px !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    transition: background-color 0.25s ease !important;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #E8743B !important;
    color: #fff !important;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #15212E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .ham-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler {
    border: 1.5px solid #D8D3C8 !important;
    border-radius: 8px !important;
    padding: 8px !important;
}

.solutions-mega-menu {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    position: static !important;
    background: transparent !important;
    padding: 10px 0 !important;
}

@media (min-width: 992px) {
    .solutions-mega-menu {
        border: 1px solid #EAE6DC !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
        min-width: 950px !important;
        width: 1250px !important;
        left: 50% !important;
        transform: translateX(-55%) !important;
        position: absolute !important;
        background: #FFFFFF !important;
        padding: 24px !important;
    }
}

.solution-card-link {
    background: #F5F3EE;
    border: 1px solid #E4E0D7;
    transition: border-color 0.2s, transform 0.2s;
}

.solution-card-link:hover {
    border-color: #E8743B !important;
    transform: translateY(-2px);
}

.solution-card-title {
    font-size: 14px;
    color: #15212E;
    font-family: 'Space Grotesk', sans-serif;
}

.solution-card-desc {
    font-size: 12.5px;
    color: #5C6B78;
    line-height: 1.4;
}

/* ==========================================================================
   BUTTONS & CARDS
   ========================================================================== */
.btn-primary {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: var(--accent, #E8743B);
    border: none;
    padding: 15px 26px;
    border-radius: 11px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #15212E;
    background: #fff;
    border: 1px solid #D8D3C8;
    padding: 15px 26px;
    border-radius: 11px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.card-white {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 36px;
    height: calc(100% - 10px);
}

.card-dark {
    background: #15212E;
    border-radius: 20px;
    padding: 44px;
    color: #fff;
}

@media (max-width: 992px) {
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .card-dark {
        transform: none !important;
    }
}

/* ==========================================================================
   SITE FOOTER STYLES
   ========================================================================== */
footer.site-footer {
    background-color: #121926;
    /* Dark navy background */
    color: #94a3b8;
    padding: 72px 0 32px 0;
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* 3-COLUMN MAIN LAYOUT */
/*.footer-main {*/
/*    display: grid;*/
/*    grid-template-columns: 2.2fr 1.2fr 1fr;*/
/*    gap: 48px;*/
/*    padding-bottom: 56px;*/
/*}*/

/* BRAND COLUMN & LOGO */
.brand-col {
    padding-right: 20px;
}

/* FOOTER LOGO IMAGE FIX */
.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo-img {
    height: 60px !important;
    /* Adjust to your target height */
    max-height: 60px !important;
    /* Prevents global CSS from forcing auto height */
    width: auto !important;
    display: block;
    object-fit: contain;

    /* Color flip to white */
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.brand-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.brand-address .address-title,
.brand-address .address-street {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* COLUMN HEADINGS */
.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

/* NAVIGATION LINKS */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* BOTTOM COPYRIGHT BAR */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
}

.copyright-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   FOOTER SOCIAL LINKS STYLING
   ========================================================================== */

.footer-social-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    /* Space between icons */
    margin: 20px 0;
}

.social-icon-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #EFEDE6;
    /* Soft subtle cream color matching --bg-alt */
    border: 1px solid var(--border-color);
    border-radius: 50%;
    /* Perfect circular icon containers */
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

/* Social Icon SVGs */
.svg-social {
    width: 18px;
    height: 18px;
    color: #42525E;
    /* Matches your --text-muted color base */
    transition: color 0.25s ease;
}

/* Hover Interactive Styling states */
.social-icon-link:hover {
    background-color: #FFFFFF;
    /* Shifts background to clean white */
    border-color: #E8743B;
    /* Signature orange border highlight */
    transform: translateY(-2px);
    /* Gentle micro-lift */
}

.social-icon-link:hover .svg-social {
    color: #E8743B;
    /* Automatically changes icon line artwork to brand orange */
}

/* RESPONSIVE LAYOUT FOR TABLETS & MOBILE */
@media (max-width: 768px) {
    footer.site-footer {
        padding: 48px 0 24px 0;
    }

    .footer-main {
        text-align: left;
        padding-bottom: 15px;
    }

    .brand-col {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .footer-logo {
        display: inline-block;
        margin-bottom: 0;
    }
    .brand-desc {
        font-size: 15px;
    }
}

/* HOW IT WORKS PROCESS STEPS */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 48px auto;
}

/* Connecting Line behind the numbered circles */
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    /* Center with circles */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #E06738;
    /* Orange line */
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 12px;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(216, 211, 200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: rgb(21, 33, 46);
    position: relative;
    z-index: 2;
}

/* INFINITE LOGO SCROLL */
.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

/* Pause animation on hover */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SOLUTIONS GRID & CARDS */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-margin-top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-tag-header {
    font-size: 13px;
    font-weight: 700;
    color: #E06738;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-title {
    color: #15212E !important;
    margin-bottom: 8px;
}

.card-description {
    font-size: 15px;
    color: #5C6B78;
    line-height: 1.6;
    margin-bottom: 28px;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-tag {
    background: #F3F1EC;
    color: #2D3A45;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

/* Scroll margin ensures header doesn't overlap the target card */
.solution-card {
    scroll-margin-top: 100px;
}

/* LOGO BUTTON CONTAINER */
.logo-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    border: none;
    background: transparent;
}

/* 1. HEADER LOGO (Dark logo with white background blended out) */
.site-header .site-logo-img {
    height: 52px !important;
    width: auto !important;
    max-height: 52px !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
    filter: contrast(110%) !important;
    display: block !important;
}

/* 2. FOOTER LOGO ONLY (White logo visible on dark footer) */
.site-footer .site-logo-img {
    width: 200px;
    height: 85px;
    object-fit: contain;
    display: block;
    filter: invert(1) brightness(2);
    /* Turns black logo white */
    mix-blend-mode: screen;
    /* Removes white background box on dark footer */
}

/* =========================================================
   RESPONSIVE DESIGN & SCREEN RESIZING (MOBILE & SPLIT SCREEN)
   ========================================================= */

/* Make images and containers auto-fit screen width */
img {
    max-width: 100%;
    height: auto;
}

/* 1. TABLET & SPLIT SCREEN ADJUSTMENTS (Under 1024px) */
@media screen and (max-width: 1024px) {
    .header-inner {
        padding: 0 16px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav .nav-link {
        font-size: 14px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* 2. MOBILE & NARROW SCREEN ADJUSTMENTS (Under 768px) */
@media screen and (max-width: 768px) {

    /* Header navigation stack */
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .site-header .site-logo-img {
        height: 50px;
        /* Scales down logo slightly for small screens */
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        /* Allows horizontal scrolling for nav links if crowded */
        white-space: nowrap;
        padding-top: 12px;
        justify-content: flex-start;
    }

    .btn-contact {
        font-size: 13px;
        padding: 8px 14px;
    }

    /* Solutions Card Grid switches to 1 single column */
    .solutions-grid {
        grid-template-columns: 1fr !important;
        padding: 0 16px;
    }

    /* How It Works process steps switch to vertical stack */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
        /* Hide horizontal connecting line on mobile */
    }

    /* Stat strip counters stack cleanly */
    .stat-strip {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    /* Typography auto-scale */
    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    .events-content-section {
        padding: 0;
    }
}

/* =========================================================
   COMPLETE MOBILE & SMALL SCREEN RESPONSIVE FIXES
   ========================================================= */

/* 1. Prevent horizontal page scrolling/breaking globally */
html,
body {
    max-width: 100% !important;
}

*,
*:before,
*:after {
    box-sizing: border-box !important;
}

img,
svg,
video {
    max-width: 100% !important;
    height: auto !important;
}

/* 2. Mobile Layout Adjustments (Screen width under 768px) */
@media screen and (max-width: 768px) {

    /* Fix Header & Navigation */
    .site-header {
        padding: 12px 16px !important;
    }

    .header-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .main-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 14px !important;
        width: 100% !important;
    }

    .main-nav .nav-link {
        font-size: 14px !important;
    }

    .btn-contact {
        width: 100% !important;
        text-align: center !important;
        margin-top: 4px !important;
    }

    /* Main Container & Section Padding */
    main {
        padding: 32px 16px !important;
    }

    /* Force multi-column grids or rows into clean single columns */
    .grid,
    .solutions-grid,
    .footer-inner,
    .process-steps,
    .stat-strip {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        width: 100% !important;
    }

    /* Auto-scale headings & card padding */
    h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .card-white,
    .card {
        padding: 20px 16px !important;
        width: 100% !important;
    }

    /* Footer responsiveness */
    .site-footer {
        padding: 40px 16px !important;
        text-align: center !important;
    }

    .footer-inner > div {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* ==========================================
   EVENTS PAGE SPECIFIC STYLES
   ========================================== */

/* METRICS & PROVEN TRACK RECORD BANNER */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
    padding: 24px;
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: center;
}

.stat-section {
    background: #15212E;
    padding: 20px 0;
}

.stat-section .col-lg-2.col-6 {
    flex: 0 0 auto;
    width: 20%;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-number-static {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-text {
    font-size: 13px;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 10px;
}

.stat-label {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 4px;
}

/* SECTION TITLES */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 16px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* EVENT CARDS EXTENSIONS */
.event-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.event-details {
    display: flex;
    gap: 16px;
    margin: 14px 0;
    font-size: 14px;
    color: #64748b;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-register {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #0f172a;
    color: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 16px;
    transition: background 0.2s ease;
}

.btn-register:hover {
    background: #2563eb;
}

/* WORKFLOW SECTION */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

/* CALL TO ACTION BANNER */
.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.cta-box p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 24px;
}

.btn-cta-large {
    padding: 12px 28px;
    font-size: 16px;
}

/* ==========================================================================
   SOLUTIONS PAGE - 2-COLUMN BALANCED INTERFACE
   ========================================================================== */

.solutions-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Clean balanced 2-column look */
    gap: 24px;
}

/* White box shadow card framework */
.solution-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color, #E4E0D7);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
}

.card-tag-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E8743B;
    /* Crisp signature orange brand kicker accent */
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #15212E;
    margin: 0 0 14px 0;
}

.card-description {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #42525E;
    margin-bottom: 24px;
    flex-grow: 1;
    /* Aligns checklists at the base even if heights fluctuate */
}

/* ==========================================================================
   SOLUTIONS SECTION INTRO TYPOGRAPHY
   ========================================================================== */

.solutions-intro-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 12px 24px;
    /* Generous top padding, minimal bottom gap above the grid */
    text-align: left;
}

.solutions-intro-header .kicker-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.solutions-main-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.12;
    color: #15212E;
    /* Signature deep navy text color */
    margin: 0 0 16px 0;
    max-width: 700px;
    /* Limits headline breaking bounds neatly */
    letter-spacing: -0.01em;
}

.solutions-main-subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16.5px;
    line-height: 1.5;
    color: #42525E;
    /* Slate/charcoal readability tint */
    margin: 0;
}

/* Responsive Scaling rules */
@media (max-width: 768px) {
    .solutions-intro-header {
        padding-top: 40px;
    }

    .solutions-main-headline {
        font-size: 34px;
    }

    .solutions-main-subtitle {
        font-size: 15px;
    }
}

/* Checklist Stack */
.card-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-checklist li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #15212E;
    display: flex;
    align-items: center;
    gap: 10px;
}

.orange-check {
    color: #E8743B;
    font-weight: 700;
    font-size: 15px;
}

/* Responsive Collapse Rules */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .solution-card {
        padding: 24px;
    }
}

/* About Page Story Section Alignment */
.about-story-section {
    width: 100%;
    padding: 60px 24px;
    background-color: var(--bg-light, #F5F3EE);
}

.about-story-inner {
    max-width: 1050px;
    /* Gives the text a clean, readable line-length width */
    margin: 0 auto;
    text-align: left;
}

.about-story-inner h2.story-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15;
    color: #15212E;
    margin: 12px 0 32px 0;
    letter-spacing: -0.02em;
}

.founder-image-wrapper {
    display: inline-block;
    position: relative;
    width: clamp(240px, 32vw, 340px);
    height: clamp(240px, 32vw, 340px);
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background-color: #29293f;
    margin: 16px auto;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-image-wrapper:hover .founder-image {
    transform: scale(1.05);
}

.story-content-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Perfectly balances vertical paragraph gaps */
}

.story-content-body p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: #42525E;
    /* Crisp, readable charcoal body color text */
}

.story-content-body strong {
    color: #15212E;
    font-weight: 700;
}

.kicker-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;

    /* CHANGE THIS COLOR VALUE RIGHT HERE */
    color: #E8743B;
}

/* Dynamic Responsive Compression Check rules */
@media (max-width: 768px) {
    .about-story-inner h2.story-headline {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .story-content-body p {
        font-size: 15.5px;
    }
}

#how-it-works-section {
    background: rgb(239, 237, 230);
    border-top: 1px solid rgb(228, 224, 215);
    border-bottom: 1px solid rgb(228, 224, 215);
    text-align: center;
    margin: 80px auto;
    padding: 70px 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-slider-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1) !important;
}

.client-logo {
    max-width: 190px !important;
    max-height: 100px !important;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s;
}

.find-box {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--accent-soft, #FBE7DB);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--accent, #E8743B);
}

/* GLOBAL RESETS & VARIABLES */
:root {
    --primary-dark: #15212E;
    --accent-orange: #E8743B;
    --bg-light: #F5F3EE;
    --border-color: #E4E0D7;
    --text-muted: #42526E;
    --disabled-bg: #C9C3B6;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: #FAF9F5;
    color: var(--primary-dark);
}

/* CONTAINERS */
.viability-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 32px 48px;
}

.viability-card-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 48px;
}

.viability-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 48px;
}

.card-header {
    max-width: 660px;
    margin-bottom: 36px;
}

/* TYPOGRAPHY */
.kicker-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 14px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    max-width: 560px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
}

.card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.group-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 13px;
}

.optional-tag {
    font-weight: 500;
    color: #8A95A0;
}

/* GRID LAYOUTS */
.form-grid {
    display: grid;
    gap: 28px;
    margin-bottom: 32px;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* PILL BUTTON TOGGLES */
.pill-btn input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pill-btn span {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 100px;
    background: var(--bg-light);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.12s ease;
    user-select: none;
}

.pill-btn:hover span {
    background: #EAE5DB;
}

/* Active State for Pills */
.pill-btn input:checked + span {
    background: var(--primary-dark) !important;
    color: #FFFFFF !important;
    border-color: var(--primary-dark) !important;
}

/* INPUT TEXT FIELDS */
.custom-input-text {
    margin-top: 11px;
    width: 100%;
    max-width: 360px;
    font-size: 14.5px;
    color: var(--primary-dark);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 11px 14px;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
}

.custom-input-text.full-width {
    max-width: 100%;
    margin-top: 0;
    padding: 13px 15px;
    font-size: 15px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 720px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px 10px 10px;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.placeholder-box {
    width: 72px;
    height: 56px;
    border-radius: 10px;
    background: #D9D4C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
    flex-shrink: 0;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-checkbox {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    border: 2px solid #C9C3B6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card input:checked ~ .service-content .custom-checkbox {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.service-card input:checked ~ .service-content .custom-checkbox::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

/* FILE UPLOAD */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 600;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 11px 18px;
    border-radius: 10px;
    cursor: pointer;
}

.upload-btn input[type="file"] {
    display: none;
}

.file-name {
    font-size: 13px;
    color: var(--text-muted);
}

/* SUBMIT BUTTON */
.submit-wrapper {
    display: grid;
    gap: 12px;
    max-width: 480px;
}

.btn-submit {
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    border-radius: 11px;
    cursor: not-allowed;
    background: var(--disabled-bg);
    transition: background-color 0.2s ease;
}

.btn-submit.active {
    background: var(--accent-orange) !important;
    cursor: pointer !important;
}

.submit-note {
    font-size: 13px;
    color: #5C6B78;
}

/* CALCULATOR BANNER */
.calculator-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 96px;
}

.calculator-card {
    background: #EFEDE6;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.calc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 8px;
}

.calc-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    max-width: 520px;
    line-height: 1.55;
}

.btn-dark {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary-dark);
    border: none;
    padding: 15px 26px;
    border-radius: 11px;
    cursor: pointer;
    white-space: nowrap;
}

/* SECTION CONTAINER & BACKGROUND */
.events-content-section {
    background-color: #EFECE6;
    /* Light muted beige background */
    padding: 80px 32px 96px;
    min-height: 100vh;
    box-sizing: border-box;
}

/* SECTION HEADER STYLE */
.section-header {
    max-width: 1200px;
    margin: 0 auto 48px auto;
}

.section-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #E8743B;
    /* Accent Orange */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #15212E;
    /* Primary Dark */
    margin: 0 0 16px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #5C6B78;
    margin: 0;
    max-width: 600px;
}

/* 2-COLUMN CARDS GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* WHITE CARD STYLING */
.event-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E1D8;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* CARD HEADER KICKER */
.card-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #E8743B;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* CARD TITLE */
.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #15212E;
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
}

/* CARD DESCRIPTION */
.card-desc {
    font-size: 13px;
    color: #5C6B78;
    line-height: 1.4;
}

/* BULLET LIST STYLING */
.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    /* Pushes list to the bottom of card */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #3B4752;
}

/* CHECKMARK ICON BADGE */
.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FCECE4;
    /* Very light orange circle */
    color: #E8743B;
    /* Orange checkmark */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .event-card {
        padding: 28px;
    }
}

/* ==========================================
   SOLUTIONS PAGE STYLES (MATCHES DESIGN EXACTLY)
   ========================================== */

.solutions-page-container {
    background-color: #FAF8F5;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* TOP HERO SECTION */
.page-hero-section {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    padding: 0 32px;
}

.hero-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #E06738;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 18px 0;
    max-width: 800px;
}

.hero-subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #55616D;
    margin: 0;
    max-width: 580px;
}

/* SECTION 1: PIPELINE & PRE-SALES */
.solutions-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 32px;
}

.section-subkicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #E06738;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* GRID & CARDS (SHARED BASE) */
.solutions-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card,
.event-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE6DF;
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-sizing: border-box;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.card-tag-header,
.card-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E06738;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.card-description,
.card-desc {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: #55616D;
    margin: 0 0 28px 0;
}

/* SECTION 1: PILL TAGS */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.pill-tag {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: #374151;
    background-color: #F3F1EC;
    padding: 6px 14px;
    border-radius: 100px;
}

/* SECTION 2: EVENTS & CONTENT */
.events-content-section {
    width: 100%;
    border-top: 1px solid #E5E0D8;
    /* Section divider line */
    padding-top: 64px;
    padding-bottom: 64px;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    /* FIXED: Keeps container aligned with Section 1 */
    padding: 0 32px;
    box-sizing: border-box;
}

.events-content-section .section-header {
    margin-bottom: 36px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    /* Forces title & kicker to start at left margin */
}

.events-content-section .section-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #E06738;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: left;
    /* ADDED */
}

.events-content-section .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: left;
    /* ADDED */
}

.events-content-section .section-subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #55616D;
    max-width: 580px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    /* ADDED: prevents auto-centering */
    margin-right: auto;
    /* ADDED: keeps width capped at 580px while pinning to the left */
    text-align: left;
    /* ADDED */
}

/* SECTION 2: CHECKMARK BULLETS */
.card-bullet-list {
    list-style: none !important;
    padding: 0 !important;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FCECE4;
    color: #E06738;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* SECTION 3: BOTTOM CALL TO ACTION BANNER */
.cta-banner-section {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.cta-banner {
    background-color: #111A24;
    /* Dark Navy Box */
    border-radius: 20px;
    padding: 56px 32px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-banner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.cta-button {
    display: inline-block;
    background-color: #E06738;
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-transition: background-color 0.2s ease, transform 0.1s ease;
    -moz-transition: background-color 0.2s ease, transform 0.1s ease;
    -ms-transition: background-color 0.2s ease, transform 0.1s ease;
    -o-transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button:hover {
    background-color: #C85427;
    transform: translateY(-1px);
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .solutions-grid,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-card,
    .event-card {
        padding: 28px 24px;
        min-height: auto;
    }

    .events-content-section .section-title {
        font-size: 28px;
    }

    .cta-banner {
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }
}

.cta-disclaimer-text {
    display: block !important;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #55616D;
    text-align: center !important;
    /* Forces center alignment */
    max-width: 780px !important;
    /* Wraps text like Image 1 */
    margin: 48px auto 60px auto !important;
    /* Forces 48px top gap + centers block */
    padding: 0 16px;
    box-sizing: border-box;
}

/* MISSION SECTION & CARD STYLING */
.mission-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.mission-container {
    max-width: 900px;
    /* Controls maximum width on large screens */
    width: 100%;
    margin: 0 auto;
}

.mission-card {
    background: #FFFFFF;
    border: 1px solid #EAE6DF;
    /* Soft border matching design theme */
    border-radius: 20px;
    padding: 48px 56px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.mission-kicker {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #E06738;
    /* Accent orange */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-text {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 26px;
    line-height: 1.45;
    font-weight: 600;
    color: #111827;
    /* Dark black/gray */
    margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .mission-card {
        padding: 32px 24px;
    }

    .mission-text {
        font-size: 20px;
        line-height: 1.4;
    }
}

/* 1. Style selected value in custom dropdown / selects */
select option:checked,
select option:hover {
    color: #E06738 !important;
    /* Orange text color */
}

/* 2. Style focus state when dropdown menu opens/is selected */
select:focus {
    color: #E06738 !important;
    border-color: #E06738 !important;
    outline: none;
}

/* 3. If using custom styled select/radio/checkbox dropdown options */
.custom-select option:checked,
.form-select option:checked {
    background-color: #FFF2ED !important;
    /* Light orange background tint */
    color: #E06738 !important;
    /* Brand orange text */
}

/* ==========================================
   HOW IT WORKS & FOOTNOTE SECTION STYLING
   ========================================== */

.how-it-works-section {
    width: 100%;
    padding: 80px 20px 60px 20px;
    box-sizing: border-box;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Header Alignment & Typography */
.how-it-works-section .section-header {
    margin-bottom: 40px;
    text-align: left;
}

.how-it-works-section .section-kicker {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #E06738;
    /* Accent Orange */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.how-it-works-section .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: left;
}

/* Grid Layout for Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

/* Card Styling */
.step-card {
    background: #FFFFFF;
    border: 1px solid #EAE6DF;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
}

.step-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E06738;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-description {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #55616D;
    margin: 0;
}

/* Footnote / Disclaimer (Centered line below cards) */
.events-disclaimer-text {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #55616D;
    text-align: center !important;
    max-width: 780px;
    margin: 0 auto !important;
    display: block !important;
}

/* Responsive Layout for Tablet & Mobile */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-section .section-title {
        font-size: 28px;
    }

    .step-card {
        padding: 28px 24px;
    }
}

/* ==========================================
   LIVE CAMPAIGN SIMULATOR STYLING
   ========================================== */

.simulator-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.simulator-card {
    background: #15212E;
    border-radius: 24px;
    padding: 48px;
    color: #FFFFFF;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.sim-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.sim-header-text {
    max-width: 560px;
}

.sim-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #E8743B;
    margin-bottom: 14px;
}

.sim-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.sim-subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.sim-btn-replay {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #15212E;
    background: #E8743B;
    border: none;
    padding: 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.sim-btn-replay:hover {
    opacity: 0.9;
}

.sim-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
}

/* Stats */
.sim-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.sim-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.sim-stat-number.accent-color {
    color: #E8743B;
}

.sim-stat-label {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 7px;
}

/* Bars */
.sim-channels-list {
    display: grid;
    gap: 16px;
}

.sim-channel-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 7px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.sim-channel-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
}

.sim-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    overflow: hidden;
}

.sim-bar-fill {
    height: 100%;
    background: #E8743B;
    border-radius: 100px;
    transition: width 0.1s linear;
}

/* Milestones List */
.sim-milestones {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sim-milestone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.35;
    transition: opacity 0.2s ease;
}

.sim-milestone.active {
    opacity: 1;
}

.sim-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #E8743B;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.sim-milestone:not(.active) .sim-check {
    background: rgba(255, 255, 255, 0.2);
    color: transparent;
}

.sim-day-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #E8743B;
    width: 70px;
}

.sim-milestone-label {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Controls */
.sim-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
}

.sim-controls input[type="range"] {
    flex: 1;
    accent-color: #E8743B;
    cursor: pointer;
}

.sim-day-status {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    width: 120px;
    text-align: right;
}

.sim-disclaimer {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 14px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .simulator-card {
        padding: 28px 20px;
    }
}

/* SUCCESS STORIES SECTION STYLES */
.success-stories-section {
    background-color: #f5f3ef;
    /* Off-white / light cream background */
    padding: 80px 20px;
    font-family: inherit;
}

.success-stories-container {
    max-width: 1140px;
    margin: 0 auto;
}

.success-stories-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #121926;
    margin-bottom: 48px;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.story-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #e8e5df;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    margin-bottom: 24px;
    display: block;
}

.quote-icon svg {
    display: block;
    width: 28px;
    height: 22px;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 32px;
}

.story-author {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* Responsive breakpoint for tablets & mobile */
@media (max-width: 768px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-card {
        padding: 28px;
    }

    .success-stories-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }
}

/* AUDIENCE VIABILITY CTA BANNER */
.viability-cta-section {
    background-color: #f5f3ef;
    /* Off-white section background */
    padding: 60px 20px;
}

.viability-cta-container {
    max-width: 1140px;
    margin: 0 auto;
}

.viability-cta-box {
    background-color: #121926;
    /* Dark navy background */
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.viability-cta-content {
    max-width: 650px;
}

.viability-cta-heading {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.viability-cta-subtext {
    color: #94a3b8;
    /* Muted gray text */
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   BUTTON & TAG STYLES
   ========================================================================== */

/* ==========================================================================
   FORCE ORANGE BUTTONS & INDUSTRY TAGS (OVERRIDES ALL DARK STATES)
   ========================================================================== */

/* Base Style */
.viability-btn,
.industry-tag,
button.viability-btn,
button.industry-tag {
    background-color: #F4F2EB !important;
    color: #0F172A !important;
    border: 1px solid #E2DFD7 !important;
    padding: 10px 20px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    /* Removes black tap box on mobile */
}

/* Hover State */
.viability-btn:hover,
.industry-tag:hover,
button.viability-btn:hover,
button.industry-tag:hover {
    background-color: #d94e1b !important;
    border-color: #d94e1b !important;
    color: #ffffff !important;
}

/* FORCE ORANGE ON CLICK, FOCUS, ACTIVE, & SELECTED
   (Covers all possible active pseudo-classes)
*/
.viability-btn:active,
.viability-btn:focus,
.viability-btn:focus-visible,
.viability-btn.active,
.viability-btn.selected,
.industry-tag:active,
.industry-tag:focus,
.industry-tag:focus-visible,
.industry-tag.active,
.industry-tag.selected,
button.viability-btn:active,
button.viability-btn:focus,
button.industry-tag:active,
button.industry-tag:focus {
    background-color: #d94e1b !important;
    /* Force Orange */
    background: #d94e1b !important;
    /* Double override for shorthand styles */
    border-color: #d94e1b !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Arrow Icon Handling */
.viability-btn .arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.viability-btn:hover .arrow,
.viability-btn:active .arrow,
.viability-btn:focus .arrow,
.viability-btn.active .arrow,
.viability-btn.selected .arrow {
    transform: translateX(4px);
    color: #ffffff !important;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: #F4F2EB;
    /* Warm cream/off-white background */
    padding: 80px 20px;
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT COLUMN STYLES */
.contact-tag {
    color: #E26D39;
    /* Orange label text */
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 24px 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 25px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 48px 0;
}

.contact-meta-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.meta-item .meta-label {
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.meta-item .meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

/* RIGHT COLUMN - FORM CARD */
.form-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.strategy-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}

.form-field input,
.form-field textarea {
    background-color: #F3F1EC;
    /* Soft beige field background */
    border: 1px solid #E2DFD7;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #0F172A;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #94A3B8;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #E26D39;
    background-color: #FFFFFF;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* BUTTON */
.btn-send {
    background-color: #E26D39;
    /* Orange primary button */
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.2s ease;
    width: 100%;
}

.btn-send:hover {
    background-color: #D15B27;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   FORM SUCCESS STATE
   ========================================================================== */
.form-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 10px;
}

/* Orange checkmark icon in circular warm background */
.success-circle-icon {
    width: 64px;
    height: 64px;
    background-color: #FCECE4;
    /* Very soft peach/cream tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 12px 0;
}

.success-desc {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #64748B;
    max-width: 320px;
    margin: 0 0 28px 0;
}

/* "Send another" Button */
.btn-send-another {
    background-color: #F4F2EB;
    /* Soft cream background */
    color: #0F172A;
    border: 1px solid #E2DFD7;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-send-another:hover {
    background-color: #E8E4DA;
}

/* ==========================================================================
   EVENTS PAGE - GALLERY SECTION STYLES
   ========================================================================== */

.events-gallery-section {
    background-color: #F5F3EE;
    /* Blends perfectly with your main site canvas */
    padding: 80px 32px;
    border-top: 1px solid var(--border-color);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #15212E;
    margin: 12px 0 16px;
    letter-spacing: -0.01em;
}

.gallery-subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #5C6B78;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* 3-Column Image Grid Strip */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    aspect-ratio: 4 / 3;
    /* Keeps all image containers uniform in size */
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Interactive Hover States */
.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 33, 46, 0.75) 0%, rgba(21, 33, 46, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Compression Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .events-gallery-section {
        padding: 48px 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-title {
        font-size: 28px;
    }
}

/* B2B Liaison Responsive Custom Components */

/* Cards override */
.card-white {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: clamp(24px, 4vw, 36px) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-dark {
    background: #15212E;
    border-radius: 20px;
    padding: clamp(24px, 4vw, 44px) !important;
    color: #fff;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Hero elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E4E0D7;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 26px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #E8743B;
    border-radius: 50%;
    display: inline-block;
}

.hero-heading {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #15212E;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Process steps (How It Works) */
.process-flow-container {
    position: relative;
    margin: 0 auto;
    max-width: 980px;
}

.process-flow-line-wrapper {
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgb(216, 211, 200);
    overflow: hidden;
}

.process-flow-line-dot {
    position: absolute;
    top: -3px;
    width: 30px;
    height: 8px;
    border-radius: 4px;
    background: var(--accent, #E8743B);
    animation: 5s linear 0s infinite normal none running flowdot;
}

.process-step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(216, 211, 200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 22px;
    color: rgb(21, 33, 46);
    position: relative;
    z-index: 2;
}

.process-step-title {
    font-weight: 600;
    font-size: 18px;
    color: rgb(21, 33, 46);
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgb(92, 107, 120);
}

.call-to-action {
    background: #E06738;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

@media (max-width: 767px) {
    .process-flow-container {
        position: relative;
        max-width: 480px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    .process-flow-container .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        row-gap: 0 !important;
    }

    .process-flow-line-wrapper {
        display: block !important;
        position: absolute;
        top: 35px;
        bottom: 35px;
        left: 50px;
        /* 15px container padding + 35px circle center */
        width: 2px;
        height: auto;
        background: rgb(216, 211, 200);
        right: auto;
        z-index: 1;
    }

    .process-flow-line-dot {
        position: absolute;
        left: -3px;
        width: 8px;
        height: 30px;
        border-radius: 4px;
        background: var(--accent, #E8743B);
        animation: flowdot-vertical 5s linear infinite;
        top: 0;
    }

    .process-flow-container .col-12 {
        text-align: left !important;
        position: relative;
        padding-left: 90px !important;
        padding-right: 0 !important;
        padding-bottom: 40px !important;
        min-height: 70px;
    }

    .process-flow-container .col-12:last-child {
        padding-bottom: 0 !important;
    }

    .process-step-circle {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0 !important;
        z-index: 2;
    }

    .process-step-title {
        margin-top: 6px;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .process-step-desc {
        font-size: 14.5px;
        line-height: 1.5;
    }

    .call-to-action {
        padding: 30px 0;
    }
}

@keyframes flowdot-vertical {
    0% {
        top: 0%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Section Header Styles */
.section-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title-large {
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 700;
    color: #15212E;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .events-content-section {
        padding: 30px 0;
    }

    .viability-cta-box {
        padding: 48px 20px;
        display: block;
    }

    .viability-cta-subtext {
        margin-bottom: 10px;
    }

    .stat-section .col-lg-2.col-6 {
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 15px;
    }

    .stat-section {
        padding: 20px 0 0;
    }

    .viability-hero {
        padding: 60px 16px 30px;
    }

    .viability-card-section {
        padding: 0 16px 32px;
    }

    .viability-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .calculator-section {
        padding: 0 16px 48px;
    }

    .calculator-card {
        padding: 28px 20px;
        border-radius: 16px;
        text-align: center;
        justify-content: center;
    }
}

/* SUCCESS STATE IN VIABILITY CARD */
.success-circle-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 116, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-desc {
    max-width: 500px;
}

.success-btn-reset {
    text-decoration: none;
    display: inline-block;
}

/* Custom footer contact brand column fixes */
.site-footer .brand-address {
    margin-bottom: 12px;
}

.site-footer .brand-address .address-title {
    color: #64748b !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 4px 0;
}

.site-footer .brand-address .address-street {
    color: #64748b !important;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.site-footer .brand-address .street-value {
    color: #cbd5e1 !important;
}

.site-footer .brand-contact {
    margin-top: 12px;
}

.site-footer .brand-contact p {
    color: #64748b !important;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.site-footer .brand-contact a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.site-footer .brand-contact a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* Responsive Footer mobile fixes */
@media screen and (max-width: 768px) {

    .site-footer .footer-logo-img {
        margin: 0 auto 24px auto !important;
    }

    .site-footer .footer-social-wrapper {
        justify-content: center !important;
        margin: 20px 0 !important;
    }
.action-link-right{
    text-align: right;
}

}