/* FLS Styling overwrite */
.fls-input-container .form-control {
    font-size: 18px !important;
}

.form-group .form-icon  {
    top: 16px !important;
}
/* Global tokens */
.text-primary { color: var(--color-primary) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.btn-primary { 
    background-color: var(--color-primary) !important; 
    border-color: var(--color-primary) !important;
}

/* Base typography */
body {
    font-family: 'Manrope', sans-serif;
    color: var(--brand-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
::selection {
    background: var(--color-primary);
    color: white;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--brand-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}
p { color: #6b7280; font-size: 1.1rem; }
a { text-decoration: none; transition: 0.3s; }

.bg-grey {
    background-color: #f9fafb !important;
}
/* Form controls */
.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb), 0.25);
}

/* Layout tweaks */
@media (min-width: 1400px) {
    .container { max-width: 1280px; }
}

.container-wide {
    max-width: 1500px !important;
    margin: 0 auto;
}

/* Buttons */
.btn-theme {
    background-color: var(--color-primary);
    color: white;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.2);
}
.btn-theme:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.btn-theme-outline {
    background-color: transparent;
    color: var(--brand-dark);
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(24, 24, 24, 0.1);
}
.btn-theme-outline:hover {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: white;
}
.btn-large {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 30px;
    transition: 0.3s;
    text-align: center;
    display: block;
    border: 2px solid rgba(255,255,255,0.1);
    color: white;

    &.bg-white {
        background: white !important;
        color: var(--brand-dark) !important;
        border-color: white !important;
    }
}
.btn-large:hover {
    background: white;
    color: var(--brand-dark);
    border-color: white;
    &.bg-white {
        background: var(--brand-dark) !important;
        color: white !important;
        border-color: var(--brand-dark) !important;
    }
}

/* Badges */
.badge-soft {
    background-color: rgba(var(--color-primary-rgb), 0.08);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    display: inline-block;
}

/* Navigation */
.navbar {
    padding: 24px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--brand-dark) !important;
    letter-spacing: -1px;
}
.nav-link {
    font-weight: 600;
    margin: 0 12px;
    font-size: 1rem;
    opacity: 0.7;
}
.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color-primary) !important;
}
.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

/* Hero */
.hero-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf9 100%);
    overflow: hidden;
}
.hero-headline {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 20px 20px 60px -10px rgba(var(--color-primary-rgb), 0.15); 
}
.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-image-container:hover img {
    transform: scale(1.05);
}
.hero-stat {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--brand-dark);
    color: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    min-width: 220px;
}
.hero-stat h4 { margin: 0; color: var(--color-primary); font-size: 2rem; }

/* Feature grid */
.feature-card {
    border: 1px solid rgba(24, 24, 24, 0.06);
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--color-primary-rgb), 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-primary-rgb), 0.12);
    color: var(--color-primary);
    font-size: 1.4rem;
}
.feature-card h5 {
    font-weight: 700;
}

.feature-accordion .feature-card {
    padding: 0;
    margin-bottom: 12px;
}
.feature-accordion .accordion-button {
    padding: 18px 20px;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    color: var(--brand-dark);
    font-weight: 700;
    gap: 12px;
}
.feature-accordion .accordion-button:focus {
    box-shadow: none;
}
.feature-accordion .accordion-button::after {
    filter: grayscale(1);
}
.feature-accordion .accordion-body {
    padding: 0 20px 18px 72px;
}
.feature-accordion .feature-icon {
    margin-bottom: 0;
}

/* Inner page hero */
.inner-hero {
    position: relative;
    padding: 110px 0 90px;
    color: #f8f9ff;
    overflow: hidden;
    background: #2d2d2d;
}
.inner-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(var(--color-primary-rgb), 0.25), transparent 36%);
    pointer-events: none;
}
.inner-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #dbe7ff;
}
.inner-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(var(--color-primary-rgb), 0.25);
}
.inner-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 18px 0 12px;
    letter-spacing: -0.01em;
}
.inner-hero__divider {
    width: 70px;
    color: var(--color-primary);
    height: 3px !important;
    opacity: 1;
    border-radius: 5px; 
}
.inner-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 22px;
    max-width: 760px;
}
.inner-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.inner-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #e9f1ff;
    font-weight: 600;
    font-size: 0.95rem;
}
.inner-hero__chip--primary {
    background: rgba(var(--color-primary-rgb), 0.18);
    border-color: rgba(var(--color-primary-rgb), 0.4);
    color: #fff;
}

/* Bento grid */
.bento-box {
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-box:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: rgba(var(--color-primary-rgb), 0.2);
}
.bento-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.bento-box:hover .bento-icon {
    background: var(--color-primary);
    color: white;
}
.bento-primary {
    background-color: var(--color-primary);
    color: white;
    border: none;
}
.bento-primary h3, .bento-primary p { color: white; }
.bento-primary .bento-icon { background: rgba(255,255,255,0.2); color: white; }
.bento-primary:hover {
    background-color: #d14d00;
    transform: translateY(-5px);
}
.bento-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 12rem;
    color: rgba(0,0,0,0.03);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Pricing */
.price-card {
    p {
        font-size: 1rem;
    }
}
.pricing-section {
    background: #fdfdfd;
    color: var(--brand-dark);
    padding: 100px 0;
    position: relative;
}
.price-card-title {
    font-weight: 600 !important;
}
.price-card-light {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(24, 24, 24, 0.08);
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
}
.price-card-popular {
    border: 1px solid rgba(var(--color-primary-rgb), 0.4);
    transition: .2s;
    &:hover {
        box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.1);
        transform: translateY(-6px);
    }
}
.price-card-light .badge {
    background: rgba(var(--color-primary-rgb), 0.12);
    color: var(--color-primary);
    font-weight: 600;
    border: 1px solid var(--color-primary);
    font-size: 11px;
    text-transform: initial;
}
.price-card-light .feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #4b5563;
    font-weight: 500;
}
.price-card-light .feature-list i {
    color: var(--color-primary);
}
.price-card-light .btn {
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}
.price-card-light .btn:hover {
    transform: translateY(-2px);
}

/* Blog cards */
.blog-card {
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--color-primary-rgb), 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.blog-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.16), transparent 70%);
    opacity: 0.35;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.blog-card:hover::before {
    opacity: 0.55;
    transform: scale(1);
}
.blog-card__image {
    height: 180px;
    position: relative;
    overflow: hidden;
}
.blog-card__image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__image-bg {
    transform: scale(1.08);
}
.blog-card__body {
    padding: 18px 18px 0 18px;
}
.blog-card__meta {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}
.blog-card__footer {
    padding: 16px 18px 18px 18px;
}
.blog-card__title {
    font-weight: 800;
    letter-spacing: -0.01em;
}
.blog-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Jobs */
.job-card {
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.job-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--color-primary-rgb), 0.2);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}
.price-card-body {
    font-size: 14px;
}

/* Footer */
footer {
    background-color: var(--brand-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 80px;
    padding-bottom: 40px;
    color: #9ca3af;
}
footer h5 { margin-bottom: 25px; font-size: 1.1rem; color: white; }
footer ul li { margin-bottom: 12px; }
footer a { color: #9ca3af; font-weight: 500; transition: 0.2s; }
footer a:hover { color: var(--color-primary); padding-left: 5px; }

/* CTA banner */
.cta-session {
    background: linear-gradient(90deg, var(--color-primary), #e66c1c);
    color: #fff;
    padding: 70px 0;
}
.cta-kicker {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.9;
}
.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 12px 0 10px;
    color: #FFF;
}
.cta-subtitle {
    margin: 0;
    color: #FFF;
    font-size: 1.05rem;
}
.cta-button {
    background: #1f1f1f;
    color: #fff;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 700;
    border: 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    transition: .2s;
}
.cta-button:hover {
    background: #0f0f0f;
    color: #fff;
    transform: translateY(-2px);
}
.cta-note {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #FFF;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-headline { font-size: 2.8rem; }
    .hero-stat { left: 0; position: relative; display: inline-block; margin-top: -30px; margin-bottom: 20px;}
    .price-card.popular { transform: scale(1); margin: 20px 0; }
    .inner-hero { padding: 90px 0 70px; }
    .inner-hero h1 { font-size: 2.2rem; }
    .inner-hero__subtitle { font-size: 1rem; }
}
