/* ==========================================
   AcadSigma Core Design System & Stylesheet
   ========================================== */

/* Design Tokens & Variables */
:root {
    --font-primary: 'Space Grotesk', sans-serif;

    /* Color Palette */
    --color-primary-dark: #0B1B3A;
    /* Deep Space Blue */
    --color-secondary-dark: #0D2A4B;
    /* Rich Darkest Blue */
    --color-stroke: #22D3EE;
    /* Electric Cyan */
    --color-cta-light: #2E6BFF;
    /* Royal Blue CTA */
    --color-cta-dark: #22D3EE;
    /* Cyan CTA */
    --color-bg-light: #FFFFFF;
    --color-bg-alt: #F4F7FB;
    /* Credentials BG */
    --color-text-dark: #000000;
    /* Slate 900 */
    --color-text-muted: #343434;
    /* Slate 600 */
    --color-text-light: #F8FAFC;
    /* Slate 50 */
    --color-text-light-muted: #94A3B8;
    /* Slate 400 */

    /* Borders & Blurs */
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(34, 211, 238, 0.2);
    --glass-blur: blur(12px);

    /* Spacing & Widths */
    --container-width: 1360px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities & Typography */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary-dark);
}

.section-title.light {
    color: var(--color-text-light);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-subtitle.light {
    color: var(--color-text-light-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-cta-light);
    color: var(--color-bg-light);
    box-shadow: 0 4px 14px rgba(46, 107, 255, 0.4);
}

.btn-primary:hover {
    background-color: #1e52db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 107, 255, 0.6);
}

.btn-dark-cta {
    background-color: var(--color-cta-dark);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 14px rgba(34, 211, 238, 0.4);
}

.btn-dark-cta:hover {
    background-color: #15b8d0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.6);
}

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

.btn-outline:hover {
    background-color: var(--color-cta-light);
    color: var(--color-bg-light);
}

.w-full {
    width: 100%;
}

/* Header & Navigation */
.main-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-cta-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #ffffff;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateY(-110%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #EAF2FF 0%, #FFFFFF 100%);
    display: flex;
    /*align-items: center;*/
}

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

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--color-cta-light);
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Floating Elements Container */
.hero-visuals {
    position: relative;
    width: 100%;
    height: 480px;
}

.hero-img {
    position: absolute;
    border-radius: 12px;
}

.hero-img.bg-element {
    top: 10%;
    right: 0%;
    width: 48%;
    z-index: 1;
    max-height: 550px;

}

@media (max-width: 640px) {

    .hero-img.bg-element {
        bottom: 10%;
        right: 0%;
        width: 48%;
        z-index: 1;
        max-height: 550px;
        top: unset;
    }
}

.hero-img.people {
    /*top: 8%;*/
    left: 12%;
    width: 83%;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /*animation: bounce-medium 5s ease-in-out infinite;*/
}

.hero-img.dash1 {
    top: 75%;
    right: -5%;
    width: 40%;
    z-index: 3;
    /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);*/
    animation: bounce-fast 4s ease-in-out infinite;
}

.hero-img.dash2 {
    bottom: 35%;
    left: -4%;
    width: 45%;
    z-index: 3;
    /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);*/
    animation: bounce-slow 7s ease-in-out infinite;
}

/* Floating Bounce Animations */
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes bounce-medium {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes bounce-fast {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Integrations Section */
.integrations {
    padding: 40px 0 80px 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.integrations-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.integrations-wrapper h3 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.connect-label {
    font-size: 1.25rem;
    color: var(--color-cta-light);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.integration-connector {
    width: 100%;
    max-width: 900px;
    height: 100px;

}

/* Track Lines */
.connector-track {
    stroke: rgba(46, 107, 255, 0.08);
    stroke-width: 1.5;
    fill: none;
}

/* Glowing Light Beams */
.connector-beam {
    fill: none;
    stroke: var(--color-cta-light);
    stroke-width: 1.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 2px #6c97ff);
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: animateBeam 4s ease-in-out infinite;
    opacity: 0.85;
}

/* Staggered Beam Delays */
.beam-1,
.beam-2,
.beam-3,
.beam-4,
.beam-5,
.beam-6 {
    animation-delay: 0ms;
}

@keyframes animateBeam {
    0% {
        stroke-dashoffset: 500;
    }

    100% {
        stroke-dashoffset: -500;
    }
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    /* NO GAP to ensure perfect alignment with SVG */
    width: 100%;
    max-width: 900px;
    margin-bottom: 2rem;
}

.logo-badge {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 12px;
    /* acts as 24px gap vertically and horizontally */
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--color-cta-light);
}

.logo-badge img {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.logo-badge:hover img {
    transform: scale(1.05);
}

.logo-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* The Problem Section */
.problem {
    padding: 100px 0;
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.problem-card {
    background: #0d2A48;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-stroke);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-stroke);
    box-shadow: 0 55px 72px rgb(34 211 238 / 55%);
}

.problem-card:hover::before {
    /*transform: scaleX(1);*/
}

.problem-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.problem-card p {
    color: var(--color-text-light-muted);
    font-size: 0.95rem;
}

/* What AcadSigma Does */
.features {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.features .container {
    max-width: 1000px;
}

.feature-row {
    display: grid;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

/* Row 1, Row 3 (Odd): Image on left (55%), Info on right (45%) */
.feature-row:nth-of-type(odd) {
    grid-template-columns: 5.5fr 4.5fr;
}

.feature-row:nth-of-type(odd) .feature-image {
    order: -1;
}

/* Row 2, Row 4 (Even): Info on left (45%), Image on right (55%) */
.feature-row:nth-of-type(even) {
    grid-template-columns: 4.5fr 5.5fr;
}

.feature-row:nth-of-type(even) .feature-image {
    order: initial;
}

.feature-image {
    background: var(--color-bg-alt);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.feature-info h3 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.feature-info p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.feature-link {
    color: var(--color-cta-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-link:hover {
    gap: 12px;
}

.features-cta-container {
    text-align: center;
    margin-top: 60px;
}

.features-cta-container p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.how-grid {
    position: relative;
    max-width: 1000px;
    height: 1020px;
    margin: 0 auto;
}

/* Staggered SVG Connection Arrows */
.how-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.arrow-line {
    fill: none;
    stroke: rgba(34, 211, 238, 0.25);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    transition: var(--transition);
}

.arrow-line.active {
    stroke: #22D3EE;
    stroke-width: 2.5;
    stroke-dasharray: 8 4;
    animation: activeArrowFlow 1.2s linear infinite;
    filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.6));
    opacity: 1;
}

@keyframes activeArrowFlow {
    to {
        stroke-dashoffset: -24;
    }
}

.step-item {
    position: absolute;
    width: 400px;
    height: 210px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

/* Glow behind cards on scroll */
.step-item::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, rgba(34, 211, 238, 0) 70%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.step-item.active {
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.step-item.active::before {
    opacity: 1;
}

/* Absolute positions for staggered layout */
.step-1 {
    top: 0;
    left: 0;
}

.step-2 {
    top: 270px;
    left: 500px;
}

.step-3 {
    top: 540px;
    left: 160px;
}

.step-4 {
    top: 810px;
    left: 600px;
}

/* Left Badge Capsule inside box */
.step-badge {
    width: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 0 0 16px;
    padding: 10px 0;
    flex-shrink: 0;
}

.step-badge span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-light-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.step-item.active .step-badge span {
    color: var(--color-stroke);
}

/* Card Content */
.step-card-content {
    flex: 1;
    padding: 20px 24px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.step-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #0B1B3A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-stroke);
}

.step-icon {
    width: 20px;
    height: 20px;
}

.step-card-content h3 {
    font-size: 1.35rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.step-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-light-muted);
    line-height: 1.5;
}

/* Works With Section */
.tools-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}


.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.tools-column {
    border: 1px solid #E5E9F0;
    border-radius: 16px;
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.tools-column h4 {
    font-size: 1.125rem;
    color: var(--color-cta-light);
    padding-bottom: 15px;
}

.tools-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--color-bg-alt);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
}

.tool-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tool-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.tool-img:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    max-width: 200px;
}

.credentials-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.credentials-tagline span {
    color: var(--color-cta-light);
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0 40px 0;
    background-color: var(--color-bg-light);
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
}

.marquee-container {
    display: flex;
    gap: 60px;
    width: max-content;
}

/* Blur Masks */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track-ltr {
    display: flex;
    gap: 60px;
    animation: marquee-ltr-anim 35s linear infinite;
}

.marquee-track-rtl {
    display: flex;
    gap: 60px;
    animation: marquee-rtl-anim 35s linear infinite;
}

.marquee-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--color-bg-alt);
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.marquee-logo svg {
    color: var(--color-cta-light);
}

@keyframes marquee-ltr-anim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rtl-anim {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Success Stories */
.testimonials {
    padding: 25px 0 120px 0;
    background-color: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cta-light), #22D3EE);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(46, 107, 255, 0.2);
    box-shadow: 0 20px 40px -15px rgba(46, 107, 255, 0.08);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.testimonial-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(46, 107, 255, 0.06);
    color: var(--color-cta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover .testimonial-icon-wrapper {
    background: var(--color-cta-light);
    color: #ffffff;
    transform: scale(1.05);
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.tag-primary {
    background: rgba(46, 107, 255, 0.06);
    color: var(--color-cta-light);
}

.tag-secondary {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text-muted);
}

.testimonial-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.testimonial-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-cta-light);
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
}

.testimonial-link svg {
    transition: transform 0.2s ease;
}

.testimonial-link:hover {
    color: #1a56db;
}

.testimonial-link:hover svg {
    transform: translateX(4px);
}

/* Above Footer Callout CTA Section */
.footer-cta-section {
    padding: 120px 0 80px;
    margin-top: 60px;
    background: linear-gradient(135deg, #0B1B3A 0%, #0D2149 100%);
    color: var(--color-text-light);
    text-align: center;
    position: relative;
}

.cta-box {
    max-width: 960px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: var(--color-text-light-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light-muted);
}

/* Footer Section */
.main-footer {
    padding: 80px 0 20px 0;
    background-color: var(--color-primary-dark);
    color: var(--color-text-light-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.8fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.btn-footer-cta {
    background-color: #FFFFFF;
    color: var(--color-primary-dark);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.btn-footer-cta:hover {
    background-color: #E2E8F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.social-links a:hover {
    background: var(--color-cta-light);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #22D3EE;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--color-stroke);
}

/* Contact List styling */
.contact-list li {
    margin-bottom: 16px !important;
}

.contact-list li a,
.contact-list li .contact-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light-muted);
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-list li a svg,
.contact-list li .contact-location svg {
    color: var(--color-stroke);
    flex-shrink: 0;
}

.contact-list li a:hover {
    color: var(--color-stroke);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.875rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {

    .hero-grid,
    .feature-row,
    .feature-row:nth-of-type(odd),
    .feature-row:nth-of-type(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row .feature-image,
    .feature-row:nth-of-type(odd) .feature-image,
    .feature-row:nth-of-type(even) .feature-image {
        order: initial;
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 2;
    }

    .integration-connector {
        display: none;
    }

    .connect-label {
        margin-bottom: 2rem;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 2.25rem;
    }

    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .how-connector {
        display: none;
    }

    .step-item {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {

    .problem-grid,
    .stats-grid,
    .logos-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 1;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-visuals {
        height: 320px;
    }
}

/* ==========================================
   Services Page Styles
   ========================================== */
.services-hero {
    background: linear-gradient(180deg, #EAF2FF 0%, #FFFFFF 100%);
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
}

.text-center {
    text-align: center;
}

.services-hero-title {
    font-family: var(--font-primary);
    font-size: 3.125rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.25;
}

.services-hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 48px;
}

.services-hero-banner {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.services-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.services-offerings-nav {
    padding: 30px 0 35px;
    background-color: #FFFFFF;
    position: sticky;
    top: var(--header-height);
    z-index: 990;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.services-offerings-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    transition: font-size 0.3s ease, margin-bottom 0.3s ease;
}

.services-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    transition: gap 0.3s ease;
}

.service-pill {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    background-color: #EBF2FD;
    border: 1px solid #D0E1FD;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

/* Compact Stuck State */
.services-offerings-nav.is-stuck {
    padding: 12px 0 16px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
}

.services-offerings-nav.is-stuck .services-offerings-title {
    font-size: 1.65rem;
    margin-bottom: 25px;
}

.services-offerings-nav.is-stuck .services-pills-container {
    gap: 10px;
}

.services-offerings-nav.is-stuck .service-pill {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.service-pill:hover {
    background-color: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.service-pill.active {
    background-color: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1.125rem;
    }

    .services-offerings-title {
        font-size: 1.75rem;
    }

    .service-pill {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

/* ==========================================
   Service Section Layout & Cards
   ========================================== */
.service-section {
    padding: 70px 0 90px;
    background-color: #FFFFFF;
    scroll-margin-top: calc(var(--header-height) + 95px);
}

.service-overview-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.service-overview-text {
    flex: 0 0 calc(42% - 20px);
}

.service-overview-image {
    flex: 0 0 calc(58% - 20px);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.35;
}

.service-description {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.7;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-target {
    margin-bottom: 50px;
}

.target-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
}

.target-description {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.65;
    margin: 0;
}

.what-changes-section {
    padding-top: 20px;
}

.what-changes-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 44px;
    letter-spacing: -0.01em;
}

.changes-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.changes-row {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.row-4 .change-card {
    flex: 1;
    max-width: 270px;
}

.row-3 .change-card {
    flex: 1;
    max-width: 360px;
}

.row-2 .change-card {
    flex: 1;
    max-width: 360px;
}

.change-card {
    background-color: #0D2A48;
    border: 1px solid #22D3EE;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 190px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
}

/* Card Hover Animation: Rise & Glow */
.change-card:hover {
    transform: translateY(-10px);
    border-color: #22D3EE;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(34, 211, 238, 0.4);
}

.change-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.change-card-text {
    font-family: var(--font-primary);
    color: #F8FAFC;
    font-size: 1.125rem;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 992px) {
    .service-overview-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-overview-text,
    .service-overview-image {
        flex: 1 1 100%;
        width: 100%;
    }

    .changes-row {
        flex-direction: column;
        align-items: center;
    }

    .row-4 .change-card,
    .row-3 .change-card,
    .row-2 .change-card {
        max-width: 100%;
        width: 100%;
    }
}

/* ==========================================
   About Us Page Specific Styles
   ========================================== */
.why-we-started-section {
    padding: 70px 0 90px;
    background-color: #FFFFFF;
}

.about-section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.why-we-started-text {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.75;
    max-width: 920px;
    margin: 0 auto;
}

.what-we-believe-section {
    padding: 90px 0;
}

.what-we-believe-section .change-card,
.what-we-believe-section .change-card-text,
.what-we-believe-section .problem-card p {
    color: #FFFFFF;
}

.what-we-believe-section .problem-card:hover,
.what-we-believe-section .change-card:hover {
    transform: translateY(-8px);
    border-color: #22D3EE;
    box-shadow: 0 55px 72px rgb(34 211 238 / 55%);
}

.what-we-believe-section .problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.meet-team-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.meet-team-intro {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    max-width: 880px;
    margin: 0 auto 50px;
}

.team-cards-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #F8FAFC;
    padding: 36px 24px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.team-avatar-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 4px solid #FFFFFF;
}

.team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 12px;
}

.team-bio {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-bio.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.read-more-btn {
    background: none;
    border: none;
    color: #2563EB;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 0;
    margin-bottom: 14px;
    display: inline-block;
    transition: color 0.2s ease;
    font-family: var(--font-primary);
}

.read-more-btn:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

.team-linkedin {
    color: #0077B5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.team-linkedin:hover {
    transform: scale(1.2);
}

/* ==========================================
   Contact Us Page Specific Styles
   ========================================== */
.contact-hero {
    background: linear-gradient(180deg, #EAF2FF 0%, #FFFFFF 100%);
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 70px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-hero-title {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.22;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.contact-details-heading {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.contact-info-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #F0F6FF;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 14px;
    max-width: 380px;
    border: 1px solid #D6E4FF;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-info-pill:hover {
    transform: translateX(4px);
    border-color: #B4CEFD;
}

.info-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    width: 24px;
    height: 24px;
}

.info-pill-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #334155;
    font-weight: 500;
}

.contact-form-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 18px;
}

.row-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    width: 100%;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #CBD5E1;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #000000;
    background-color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94A3B8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form-submit {
    display: inline-block;
    background-color: #22D3EE;
    color: #000000;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 44px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-form-submit:hover {
    background-color: #06B6D4;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.contact-audit-banner {
    background-color: #0B1B3a;
    padding: 80px 0;
    color: #FFFFFF;
}

.audit-banner-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.65;
    color: #F8FAFC;
    max-width: 980px;
    margin: 0 auto 36px;
}

.btn-cyan-call {
    display: inline-block;
    background-color: #22D3EE;
    color: #000000;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: 10px;
    transition: all 0.25s ease;
    margin-bottom: 24px;
    text-decoration: none;
}

.btn-cyan-call:hover {
    background-color: #06B6D4;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.calendly-link-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #94A3B8;
}

.calendly-link-text a {
    color: #38BDF8;
    text-decoration: underline;
}

.contact-map-section {
    padding: 70px 0 90px;
    background-color: #FFFFFF;
}

.map-card-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

@media (max-width: 992px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .row-2-col {
        grid-template-columns: 1fr;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }
}

/* ==========================================
   Success Stories Page Specific Styles
   ========================================== */
.stories-page-wrapper {
    background-color: #FFFFFF;
    padding-bottom: 0;
}

.services-hero {
    background-color: #F4F7FB;
}

.story-card-section {
    padding: 70px 0;
    scroll-margin-top: 90px;
}

.story-card-section.story-bg-gray {
    background-color: #F4F7FB;
}

.story-card-section.story-bg-gray .story-card,
.story-card-section.story-bg-gray .story-pill-tag {
    background-color: #FFFFFF;
    border: 1px solid rgba(154, 166, 189, 0.28);
}

.story-card-section.story-bg-white {
    background-color: #FFFFFF;
}

.story-card-section.story-bg-white .story-card,
.story-card-section.story-bg-white .story-pill-tag {
    background-color: #F4F7FB;
    border: 1px solid rgba(154, 166, 189, 0.28);
}

.story-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 36px;
}

.story-tags-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.story-pill-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    color: #000000;
}

.story-section-h2 {
    font-family: var(--font-primary);
    font-size: 2.1rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.story-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.story-card {
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.story-icon-box {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.story-icon-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.story-card-heading {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 0;
}

.story-card-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

@media (max-width: 992px) {
    .story-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .story-section-h2 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   How It Works Page Specific Styles
   ========================================== */
.hiw-statement-text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    max-width: 920px;
    margin: 44px auto 0;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.hiw-process-section {
    padding: 90px 0;
    background-color: #0B1B3A;
    color: #FFFFFF;
}

.hiw-process-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 64px;
    align-items: flex-start;
    position: relative;
}

.hiw-process-grid::after {
    content: "";
    position: absolute;
    left: calc(42.5% + 10px);
    top: 0;
    bottom: 0;
    width: 16px;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0) 0%, #22D3EE 50%, rgba(34, 211, 238, 0) 100%);
    /* box-shadow: 0 0 16px rgba(34, 211, 238, 0.4); */
    border-radius: 8px;
    pointer-events: none;
}

.hiw-process-left {
    position: sticky;
    top: calc(var(--header-height) + 50px);
    align-self: flex-start;
    padding-right: 20px;
}

.hiw-process-title {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.hiw-process-right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.hiw-step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hiw-step-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.step-badge {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #22D3EE;
    color: #000000;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.4);
    margin-top: -8px;
}

.step-content {
    flex-grow: 1;
}

.step-heading {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.step-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-bullets li {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.65;
    position: relative;
    padding-left: 22px;
}

.step-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #38BDF8;
    font-weight: 700;
}

.hiw-offerings-section {
    padding: 90px 0 40px;
    background-color: #FFFFFF;
}

.hiw-offerings-title {
    font-family: var(--font-primary);
    font-size: 2.35rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.hiw-offerings-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 50px;
    line-height: 1.5;
}

.hiw-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.hiw-card {
    background-color: #f4F7FB;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}

.hiw-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #0B1B3A;
    border: 1px solid #22D3EE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-icon {
    width: 24px;
    height: 24px;
}

.hiw-card-text {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.hiw-data-note {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 20px;
}

/* FAQ Accordion Section */
.hiw-faq-section {
    padding: 40px 0 100px;
    background-color: #FFFFFF;
}

.faq-section-title {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 56px;
    letter-spacing: -0.01em;
}

.faq-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #D0DBEB;
    border-radius: 0;
    padding: 24px 0;
    transition: all 0.25s ease;
}

.faq-question {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 400;
    color: #000000;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2563EB;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-answer p {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-top: 14px;
    margin-bottom: 0;
}

.faq-item.open .faq-question {
    font-weight: 700;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 4px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .hiw-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-process-left {
        position: static;
        padding-right: 0;
    }

    .hiw-process-grid::after {
        display: none;
    }

    .hiw-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Audit Form Modal Styles
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    padding: 36px 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid #E2E8F0;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F1F5F9;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background-color: #E2E8F0;
    color: #000000;
}

.modal-header {
    margin-bottom: 24px;
    padding-right: 28px;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-subtitle {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

.modal-form .form-group {
    margin-bottom: 16px;
}

.btn-modal-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 8px;
}

.modal-success-msg {
    margin-top: 16px;
    padding: 12px 16px;
    background-color: #DCFCE7;
    color: #166534;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid #BBF7D0;
}

/* ==========================================
   Blogs Page Styles
   ========================================== */
.blogs-page-wrapper {
    background-color: #FFFFFF;
    min-height: calc(100vh - var(--header-height));
}

.blogs-hero {
    padding: 180px 0 65px 0;
    background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
}

.blogs-hero-title {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.blogs-hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.55rem;
    line-height: 1.6;
    color: #475569;
    max-width: 1140px;
    margin: 0 auto;
}

.blogs-grid-section {
    padding: 20px 0 100px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #F1F5F9;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #2563EB;
    margin-top: auto;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-link svg {
    transition: transform 0.2s ease;
}

.blog-card-link:hover {
    color: #1D4ED8;
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Responsive Grid for Blogs */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .blogs-hero-title {
        font-size: 2.25rem;
    }

    .blogs-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .blogs-hero {
        padding: 50px 0 25px 0;
    }

    .blogs-hero-title {
        font-size: 1.85rem;
    }

    .blog-card-title {
        font-size: 1.15rem;
    }
}

/* ==========================================
   Cloudflare Turnstile Component Styling
   ========================================== */
.turnstile-row,
.turnstile-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
    min-height: 65px;
}

.cf-turnstile {
    max-width: 100%;
    margin: 0 auto;
}

/* ==========================================
   Privacy Policy Page Styling
   ========================================== */
.privacy-content-section {
    padding: 70px 0 100px;
    background-color: #0B1B3A;
    color: #FFFFFF;
}

.privacy-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.privacy-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.privacy-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.privacy-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.1);
    color: #22D3EE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.01em;
}

.privacy-intro-text,
.privacy-card-text {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px 0;
}

.privacy-card-text:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.privacy-list li {
    font-family: var(--font-primary);
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    padding-left: 28px;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: -2px;
    color: #22D3EE;
    font-size: 1.4rem;
    font-weight: 700;
}

.privacy-list li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.privacy-email-link {
    color: #22D3EE;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.privacy-email-link:hover {
    color: #38BDF8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content-section {
        padding: 50px 0 70px;
    }

    .privacy-card {
        padding: 24px;
        border-radius: 16px;
    }

    .privacy-card-title {
        font-size: 1.3rem;
    }
}