:root {
    --navy: #14213D;
    --navy-mid: #1C2B54;
    --navy-light: #243368;
    --warm-1: #F7F5F2;
    --warm-2: #EFEAE3;
    --warm-3: #E5DDD3;
    --accent: #C97D3A;
    --accent-light: #FBF1E6;
    --accent-mid: #D4894A;
    --white: #ffffff;
    --ink: #0F1923;
    --ink-mid: #3D4F65;
    --ink-muted: #7A8BA0;
    --border: #E8E4DE;
    --border-navy: rgba(255, 255, 255, 0.1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 12px rgba(20, 33, 61, .06);
    --shadow-md: 0 8px 32px rgba(20, 33, 61, .10);
    --shadow-lg: 0 20px 60px rgba(20, 33, 61, .14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.tag-navy {
    color: #8AA3CC;
    background: rgba(255, 255, 255, .08);
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.tag-navy::before {
    background: #8AA3CC;
}

.section-title {
    /* font-size: clamp(30px, 3.5vw, 46px); */
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.2px;
    color: var(--navy);
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-title.light {
    color: white;
}

.section-sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-muted);
    max-width: 520px;
    font-weight: 500;
}

.section-sub.light {
    color: rgba(255, 255, 255, .55);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .22s, transform .22s, box-shadow .22s;
    box-shadow: 0 4px 16px rgba(20, 33, 61, .22);
}

.btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(20, 33, 61, .28);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid var(--navy);
    transition: background .22s, color .22s, transform .22s;
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .22s, transform .22s;
    box-shadow: 0 4px 16px rgba(201, 125, 58, .3);
}

.btn-accent:hover {
    background: var(--accent-mid);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background .2s, transform .2s;
    border: none;
}

.btn-white:hover {
    background: var(--warm-1);
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .35);
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .08);
}

p {
    font-weight: 600;
}


.main-preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Change to your site's background color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Keeps it on top of everything */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* State class to handle the fade-out effect via JS */
.main-preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Logo styling with a subtle pulse effect */
.main-preloader-logo {
    width: 120px;
    /* Adjust size to fit your logo */
    height: auto;
    margin-bottom: 24px;
    animation: main-preloader-pulse 2s infinite ease-in-out;
}

/* Circular loading spinner */
.main-preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    /* Light grey track */
    border-top: 4px solid #3498db;
    /* Accent color (change to match your brand) */
    border-radius: 50%;
    animation: main-preloader-spin 1s linear infinite;
}

/* --- Animations --- */

/* Spinning animation */
@keyframes main-preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Gentle pulse animation for the logo */
@keyframes main-preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 48px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 30%;
}

.nav-logo img {
    width: 45%;
}

@media(max-width: 768px) {
    .nav-logo{
        width: 40%;
    }
    .nav-logo img {
        width: 100%;
    }
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 20px;
    height: 20px;
    color: white;
}

.logo-text {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.4px;
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--warm-1);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-decor-dots {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(20, 33, 61, .12) 1.5px, transparent 2px);
    background-size: 22px 22px;
    z-index: 1;
    opacity: .6;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeUp .65s ease both;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 22px;
}

.hero-headline em {
    font-style: normal;
    color: var(--accent);
    border-bottom: 3px solid var(--accent-light);
    padding-bottom: 2px;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-mid);
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-metrics {
    display: flex;
    justify-content: start;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-metric-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.5px;
    line-height: 1;
}

.hero-metric-num span {
    color: var(--accent);
}

.hero-metric-lbl {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero visual */
.hero-visual {
    animation: fadeUp .7s .15s ease both;
}

.hero-img {
    width: 600px;
    height: 600px;
    border: none;
}

@media(max-width: 768px) {
    .hero-headline {
        text-align: center;
    }

    .hero-sub {
        text-align: center;
        font-size: 15px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn-primary {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-actions .btn-outline {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-card-header {
    background: var(--navy);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-card-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.hero-card-dots {
    display: flex;
    gap: 6px;
}

.hero-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.hero-card-body {
    padding: 28px 24px;
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prog-row {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prog-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-mid);
}

.prog-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.prog-track {
    height: 7px;
    background: var(--warm-2);
    border-radius: 4px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--navy);
    animation: growBar 1.4s cubic-bezier(.4, 0, .2, 1) both;
}

.prog-fill.accent {
    background: var(--accent);
}

.prog-fill.teal {
    background: #2A7F8A;
}

.prog-fill.green {
    background: #2E7D56;
}

@keyframes growBar {
    from {
        width: 0 !important;
    }
}

.hero-card-chips {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy);
    background: var(--warm-1);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

/* ── TRUST / SOCIAL PROOF ── */
.trust-section {
    background: var(--navy);
    padding: 72px 0;
}

.trust-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.trust-content {}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.trust-metric {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: background .25s;
}

.trust-metric:last-child {
    border-right: none;
}

.trust-metric:hover {
    background: rgba(255, 255, 255, .05);
}

.trust-metric-n {
    font-size: 34px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.trust-metric-n span {
    color: var(--accent);
}

.trust-metric-l {
    font-size: 12px;
    color: rgba(255, 255, 255, .9);
    margin-top: 6px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.trust-logo-item {
    flex: 1;
    padding: 18px 24px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo-item:last-child {
    border-right: none;
}

.trust-logo-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .5px;
    text-align: center;
}



@media(max-width: 768px) {
    .hero {
        padding: 100px 0px 0px 0px;
    }

    .hero-metrics {
        align-items: center;
        justify-content: center;
    }

    .hero-metric-num {
        justify-self: center;
    }

    .hero-metric-lbl {
        justify-self: center;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-img {
        width: 100%;
        height: 370px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ── SERVICES ── */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: white;
    padding: 36px 32px;
    transition: background .25s;
    cursor: default;
    position: relative;
}

.service-card:hover {
    background: var(--warm-1);
}

.service-card:hover .service-icon {
    background: white;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--warm-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .25s;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--navy);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 600;
    color: var(--ink-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 14px;
    text-decoration: none;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform .2s;
}

.service-card:hover .service-link svg {
    transform: translateX(3px);
}





/* ── PROCESS ── */
.process-section {
    padding: 100px 0;
    background: var(--warm-1);
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header .section-sub {
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(10% + 24px);
    right: calc(10% + 24px);
    height: 1px;
    background: var(--border-navy);
    background: var(--border);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: background .25s, border-color .25s, transform .25s;
}

.process-step:hover .process-num {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: scale(1.08);
}

.process-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--ink-muted);
}

/* ── STARTUP ONBOARDING ── */
.startup-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.startup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.startup-visual {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.startup-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 125, 58, .2) 0%, transparent 70%);
}

.startup-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background .25s;
}

.check-item:hover {
    background: rgba(255, 255, 255, .1);
}

.check-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(201, 125, 58, .25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.check-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
}

.check-desc {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
    margin-top: 10px;
}

.startup-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.startup-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}


@media(max-width: 768px) {
    .startup-visual {
        padding: 20px;
    }

    .startup-label {
        margin-bottom: 30px;
        font-size: 16px;
    }
}

/* ── FORMATS ── */
.formats-section {
    padding: 100px 0;
    background: var(--warm-1);
}

.formats-header {
    text-align: center;
    margin-bottom: 60px;
}

.formats-header .section-sub {
    margin: 0 auto;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.format-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}

.format-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--navy);
}

.format-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--warm-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-icon svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
}

.format-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.format-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--ink-muted);
}

/* ── ASSESSMENTS ── */
.assess-section {
    padding: 100px 0;
    background: var(--white);
}

.assess-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-content: center;
}

.assess-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.assess-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.assess-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.assess-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--warm-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.assess-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
}

.assess-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.assess-card-desc {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--ink-muted);
}

.assess-card-tags {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.assess-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    background: var(--warm-1);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
}

/* assess visual */
.assess-visual-panel {
    background: var(--warm-1);
    border-radius: var(--radius-lg);
    /* padding: 36px; */
    border: 1px solid var(--border);
}

.assess-visual-img {
    width: 100%;
}

.assess-panel-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-muted);
    margin-bottom: 28px;
}

.radial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radial-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: center;
    border: 1px solid var(--border);
}

.radial-n {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.5px;
    line-height: 1;
}

.radial-n span {
    color: var(--accent);
}

.radial-l {
    font-size: 11.5px;
    color: var(--ink-muted);
    margin-top: 5px;
}

.roi-bar-section {
    margin-top: 20px;
}

.roi-bar-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-mid);
    margin-bottom: 12px;
}

.roi-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roi-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.roi-lbl {
    font-size: 12px;
    color: var(--ink-muted);
    width: 110px;
    flex-shrink: 0;
}

.roi-track {
    flex: 1;
    height: 6px;
    background: var(--warm-2);
    border-radius: 3px;
    overflow: hidden;
}

.roi-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--navy);
    animation: growBar 1.3s ease both;
}

.roi-fill.a {
    background: var(--accent);
}

.roi-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    width: 32px;
    text-align: right;
}

/* ── PRICING ── */
.pricing-section {
    padding: 100px 0;
    background: var(--warm-1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .section-sub {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto 40px;
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    letter-spacing: .5px;
}

.price-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.price-card.featured .price-tier {
    color: rgba(255, 255, 255, .45);
}

.price-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -2px;
    line-height: 1;
}

.price-amount sup {
    font-size: 22px;
    vertical-align: super;
    font-weight: 400;
}

.price-card.featured .price-amount {
    color: white;
}

.price-pp {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.price-card.featured .price-pp {
    color: rgba(255, 255, 255, .45);
}

.price-duration {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-mid);
    margin-bottom: 24px;
}

.price-card.featured .price-duration {
    color: rgba(255, 255, 255, .65);
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 24px;
}

.price-card.featured .price-divider {
    border-color: rgba(255, 255, 255, .12);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ink-mid);
    line-height: 1.5;
}

.price-card.featured .price-features li {
    color: rgba(255, 255, 255, .7);
}

.price-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--warm-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 1px;
}

.price-card.featured .price-features li::before {
    background: rgba(201, 125, 58, .3);
    color: var(--accent);
}

/* offer */
.ob {
    border-radius: 20px;
    overflow: hidden;
    background: #14213D;
    padding: 48px 44px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    margin: 1rem 0;
}

.ob-glow {
    position: absolute;
    top: -60px;
    right: 80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #C97D3A;
    opacity: 0.12;
    pointer-events: none;
}

.ob-glow2 {
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #C97D3A;
    opacity: 0.07;
    pointer-events: none;
}

.ob-left {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ob-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 125, 58, 0.18);
    border: 1px solid rgba(201, 125, 58, 0.35);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.ob-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C97D3A;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.ob-eyebrow-text {
    font-size: 12px;
    font-weight: 500;
    color: #C97D3A;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ob-title {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.ob-title span {
    color: #C97D3A;
}

.ob-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 420px;
}

.ob-items {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ob-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.ob-item i {
    font-size: 15px;
    color: #C97D3A;
}

.ob-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.ob-right {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 200px;
}

.ob-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 24px;
    text-align: center;
    margin-bottom: 12px;
}

.ob-card-num {
    font-size: 54px;
    font-weight: 500;
    color: #C97D3A;
    line-height: 1;
    letter-spacing: -1px;
}

.ob-card-unit {
    font-size: 20px;
    color: rgba(201, 125, 58, 0.6);
}

.ob-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.ob-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.ob-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 10px 14px;
}

.ob-perk-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(201, 125, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ob-perk-icon i {
    font-size: 14px;
    color: #C97D3A;
}

.ob-perk-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.ob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #C97D3A;
    border-radius: 10px;
    padding: 13px 0;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    border: none;
    width: 100%;
    text-decoration: none;
}

.ob-cta i {
    font-size: 14px;
}

.ob-cta:hover {
    opacity: 0.92;
}

.ob-val {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}


@media(max-width: 768px) {
    .ob {
        flex-direction: column;
        gap: 20px;
        padding: 48px 25px;
    }

    .ob-perks {
        grid-template-columns: 1fr;
    }

    .ob-right {
        width: 100%;
    }

    .ob-title {
        font-size: 22px;
    }
}

/* ── ADVANTAGE ── */
.advantage-section {
    padding: 100px 0;
    background: var(--white);
}

.advantage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advantage-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color .25s, background .25s, transform .25s;
}

.adv-item:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateX(4px);
}

.adv-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--warm-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
}

.adv-item:hover .adv-icon {
    background: white;
}

.adv-icon svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
}

.adv-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.adv-desc {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-muted);
}

/* ── WHY US ── */
.why-section {
    padding: 100px 0;
    background: var(--warm-1);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header .section-sub {
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: transform .3s, box-shadow .3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
}

.why-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--ink-muted);
}

/* ── ABOUT / MISSION ── */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.mission-statement {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--navy);
    font-style: italic;
    padding: 32px;
    border-left: 4px solid var(--accent);
    background: var(--warm-1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 32px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--warm-1);
}

.pillar-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.pillar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.pillar-desc {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-mid);
    line-height: 1.6;
}

/* ── FINAL CTA ── */
.cta-section {
    padding: 40px 0px 50px 0px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    /* height: 70vh; */
}

.cta-img {
    position: absolute;
    bottom: -10%;
    left: 20%;
    opacity: 0.2;
}

.cta-bg-orb {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 125, 58, .18) 0%, transparent 65%);
}

.cta-bg-orb2 {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 70%);
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner .section-sub {
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 1);
}

/* ── FOOTER ── */
footer {
    /* background: #0C1527; */
    background: #fff;
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.footer-logo img {
    width: 50%;
}

.footer-tagline {
    font-size: 13.5px;
    color: rgba(0, 0, 0, 0.35);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, .12);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.45);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: #C97D3A;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}

.footer-bottom span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.footer-bottom span a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    margin-right: 5px;
}


.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12.5px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover {
    color: rgba(0, 0, 0, 0.6);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 0 28px;
    }

    .nav-links {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-decor {
        display: none;
    }

    .trust-inner {
        grid-template-columns: 1fr;
    }

    .trust-label {
        display: none;
    }

    .trust-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .startup-inner {
        grid-template-columns: 1fr;
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .assess-inner {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .advantage-inner {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .offer-banner {
        flex-direction: column;
        text-align: center;
    }

    .offer-pill {
        margin: 0;
    }
}




@media(max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}










/* --- Core Section Structure --- */
.careers-section {
    background-color: var(--warm-1);
    color: var(--ink);
    padding: 140px 200px;
    /* Aligns with your wide premium grid structural layouts */
    position: relative;
    overflow: hidden;
}

.careers-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

/* --- Left Typography Panel (Sticky Editorial Styling) --- */
.careers-hero-panel {
    position: sticky;
    top: 100px;
}

.careers-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
}

.careers-display-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.text-gradient {
    color: var(--navy-mid);
    position: relative;
    display: inline-block;
}

.panel-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin-bottom: 32px;
}

.careers-panel-lead {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.careers-panel-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-mid);
    max-width: 90%;
}

/* --- Right Side Card Wrapper --- */
.careers-form-panel {
    width: 100%;
}

.form-card {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.form-card-header {
    margin-bottom: 40px;
}

.form-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-card-subtitle {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* --- Form Field Control Grid Layouts --- */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.premium-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.premium-input-group {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 8px;
}

.premium-input-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-mid);
    letter-spacing: 0.02em;
}

.premium-input-group label .asterisk {
    color: var(--accent);
}

/* Luxury Input Field Styles */
.premium-input-group input,
.premium-input-group textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background-color: var(--warm-1);
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.premium-input-group input::placeholder,
.premium-input-group textarea::placeholder {
    color: var(--ink-muted);
    opacity: 0.7;
}

/* Hover and Active Visual Triggers */
.premium-input-group input:hover,
.premium-input-group textarea:hover {
    border-color: var(--ink-muted);
}

.premium-input-group input:focus,
.premium-input-group textarea:focus {
    background-color: var(--white);
    border-color: var(--navy);
}

/* Animated Interaction Accents under Fields */
.premium-input-group .focus-border-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.premium-input-group input:focus~.focus-border-line,
.premium-input-group textarea:focus~.focus-border-line {
    width: 100%;
    left: 0;
}

.premium-input-group textarea {
    resize: none;
}

/* --- Luxury Premium Action CTA Button --- */
.premium-form-action {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.premium-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-arrow-wrapper {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Premium Hover Transitions */
.premium-submit-btn:hover {
    background-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.premium-submit-btn:hover .btn-arrow-wrapper {
    transform: translateX(6px);
}

.premium-submit-btn:active {
    transform: translateY(0);
}

/* --- High Resolution Breakpoints for Consistent Scaling --- */
@media (max-width: 1400px) {
    .careers-section {
        padding: 100px 80px;
    }

    .careers-container {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .careers-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .careers-hero-panel {
        position: relative;
        top: 0;
    }

    .careers-display-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 640px) {
    .careers-section {
        padding: 60px 24px;
    }

    .premium-form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-card {
        padding: 32px 24px;
    }
}


@media(max-width: 768px) {

    .services-section,
    .process-section,
    .startup-section,
    .formats-section,
    .assess-section,
    .pricing-section,
    .advantage-section,
    .why-section,
    .about-section {
        padding: 60px 0px;
    }
}









/*==========================================================
POPUP OVERLAY
==========================================================*/
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 99999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*==========================================================
POPUP
==========================================================*/
.enquiry-popup {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .18);
    transform: translateY(40px) scale(.88);
    opacity: 0;
    transition: .45s cubic-bezier(.22, .61, .36, 1);
}

.popup-overlay.active .enquiry-popup {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/*==========================================================
CLOSE BUTTON
==========================================================*/
.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    background: #f4f4f4;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0f172a;
}

.popup-close:hover {
    background: #13294B;
    color: #fff;
    transform: rotate(90deg);
}

/*==========================================================
TOP
==========================================================*/
.popup-top {
    margin-bottom: 32px;
}

.popup-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    background: #fff4eb;
    color: #f58b2b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: .3px;
}

.popup-top h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #13294B;
    margin: 0 0 12px;
}

.popup-top p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/*==========================================================
FORM
==========================================================*/
#popupEnquiryForm {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.popup-field {
    display: flex;
    flex-direction: column;
}

.popup-field label {
    font-size: 14px;
    font-weight: 600;
    color: #13294B;
    margin-bottom: 8px;
}

/*==========================================================
INPUT
==========================================================*/
.popup-field input {
    width: 100%;
    height: 56px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 15px;
    color: #13294B;
    outline: none;
    transition: .3s;
    background: #fff;
}

.popup-field input::placeholder {
    color: #a0a7b4;
}

.popup-field input:hover {
    border-color: #f58b2b;
}

.popup-field input:focus {
    border-color: #f58b2b;
    box-shadow: 0 0 0 4px rgba(245, 139, 43, .12);
}

/*==========================================================
ERROR
==========================================================*/
.error-text {
    display: block;
    min-height: 18px;
    margin-top: 7px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .08) !important;
}

/*==========================================================
SUBMIT BUTTON
==========================================================*/
.popup-submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    background: #13294B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    margin-top: 6px;
}

.popup-submit-btn:hover {
    background: #f58b2b;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 139, 43, .28);
}

/*==========================================================
SUCCESS & ERROR POPUPS
==========================================================*/
.info-popup {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 100000;
}

.info-popup.active {
    opacity: 1;
    visibility: visible;
}

.info-popup-box {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 22px;
    padding: 40px 34px;
    text-align: center;
    transform: scale(.85);
    transition: .35s cubic-bezier(.22, .61, .36, 1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

.info-popup.active .info-popup-box {
    transform: scale(1);
}

/*==========================================================
ICON
==========================================================*/
.info-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.info-icon.success {
    background: #e9fff1;
    color: #16a34a;
}

.info-icon.error {
    background: #fff1f1;
    color: #dc2626;
}

/*==========================================================
TEXT
==========================================================*/
.info-popup-box h3 {
    margin: 0 0 12px;
    color: #13294B;
    font-size: 28px;
    font-weight: 700;
}

.info-popup-box p {
    margin: 0 0 28px;
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

/*==========================================================
BUTTON
==========================================================*/
.info-btn {
    border: none;
    cursor: pointer;
    height: 52px;
    padding: 0 34px;
    border-radius: 12px;
    background: #13294B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.info-btn:hover {
    background: #f58b2b;
    transform: translateY(-2px);
}

/*==========================================================
SCROLLBAR
==========================================================*/
.enquiry-popup::-webkit-scrollbar {
    width: 6px;
}

.enquiry-popup::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 50px;
}

/*==========================================================
RESPONSIVE
==========================================================*/
@media(max-width:768px) {
    .enquiry-popup {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .popup-top h2 {
        font-size: 26px;
    }

    .popup-top p {
        font-size: 14px;
    }

    .popup-submit-btn {
        height: 54px;
    }

    .popup-field input {
        height: 52px;
    }

    .info-popup-box {
        padding: 30px 22px;
    }

    .info-popup-box h3 {
        font-size: 24px;
    }

    .info-icon {
        width: 72px;
        height: 72px;
        font-size: 34px;
    }
}

@media(max-width:480px) {
    .popup-overlay {
        padding: 14px;
    }

    .enquiry-popup {
        padding: 44px 24px;
    }

    .popup-top h2 {
        font-size: 22px;
    }

    .popup-close {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}