*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}




html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-color);
    color: white;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

@media (min-width: 1920px) {
    body {
        font-size: 18px;
    }

    .container {
        max-width: 1600px;
    }
}

body {
    background: var(--white-color);
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    line-height: 1.25
}

a {
    text-decoration: none;
    color: inherit
}

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

.urg {
    background: var(--p100);
    border-bottom: 1px solid var(--p200);
    padding: 5px 0
}

@media (max-width: 768px) {

    .urg {
        display: none !important;
    }
}

.urg .container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center
}

.urg-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pd 2s infinite;
    flex-shrink: 0
}

@keyframes pd {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.urg p {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.btn-home {
    /* background: var(--primary-color); */
    color: var(--primary-color) !important;
    /* padding: 6px 16px; */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    /* border: 1px solid var(--primary-color); */
    margin-left: 10px;
}

/* .btn-home:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-1px);
} */

/* Nav */
.nav {
    padding: 14px 0;
    border-bottom: 1px solid var(--s200);
    background: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 100
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-logo {
    /* height: 36px; */
    width: 200px;
    display: block;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 14px
}

.nav-ph {
    font-size: 14px;
    color: var(--s600);
    font-weight: 500
}

.btn-book-free {
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--primary-color);
    transition: all .2s;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.btn-book-free:hover {
    border-color: transparent;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.2);
}

/* ═══════════════════════════════════════
    Custom Hero — overlay + animations
═══════════════════════════════════════ */
.custom-hero {
    position: relative;
    padding: 3rem 0;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

/* Layer 1 – deep purple gradient base */
.custom-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #1d0436 22%, #3d0066bd 45%, #28004beb 70%);
    z-index: 1;
}

/* Layer 2 – subtle grid pattern */
.custom-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 30s linear infinite;
    z-index: 2;
}

@keyframes gridScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 48px 48px;
    }
}

/* Ensure container sits above overlays */
.custom-hero>.container {
    position: relative;
    z-index: 10;
}

/* Glowing orb – top-right */
.custom-hero .orb-tr {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 47, 146, 0.55) 0%, transparent 70%);
    z-index: 3;
    animation: orbPulse 6s ease-in-out infinite;
}

/* Glowing orb – bottom-left */
.custom-hero .orb-bl {
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.10) 0%, transparent 68%);
    z-index: 3;
    animation: orbPulse 8s ease-in-out infinite reverse;
}

/* Green accent line – top */
.custom-hero .accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tertiary-color), transparent);
    z-index: 11;
    animation: lineScan 4s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

@keyframes lineScan {
    0% {
        opacity: 0.6;
        background-position: -200% 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
        background-position: 200% 0;
    }
}

/* Floating particles */
.custom-hero .particle {
    position: absolute;
    border-radius: 50%;
    z-index: 4;
    animation: floatUp linear infinite;
    opacity: 0;
}

.custom-hero .p1 {
    width: 4px;
    height: 4px;
    background: var(--tertiary-color);
    left: 15%;
    bottom: 10%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.custom-hero .p2 {
    width: 3px;
    height: 3px;
    background: rgba(180, 139, 250, .8);
    left: 30%;
    bottom: 20%;
    animation-duration: 9s;
    animation-delay: 1.5s;
}

.custom-hero .p3 {
    width: 5px;
    height: 5px;
    background: var(--tertiary-color);
    left: 55%;
    bottom: 5%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.custom-hero .p4 {
    width: 3px;
    height: 3px;
    background: rgba(196, 181, 253, .7);
    left: 75%;
    bottom: 15%;
    animation-duration: 8s;
    animation-delay: 0.8s;
}

.custom-hero .p5 {
    width: 4px;
    height: 4px;
    background: rgba(57, 255, 20, .6);
    left: 88%;
    bottom: 30%;
    animation-duration: 10s;
    animation-delay: 2s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-380px) scale(0.4);
        opacity: 0;
    }
}

/* ── Entrance animations ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.custom-hero .hero-eyebrow {
    animation: fadeSlideRight 0.7s cubic-bezier(.22, .68, 0, 1.2) forwards;
    opacity: 0;
}

.custom-hero h1 {
    animation: fadeSlideUp 0.75s cubic-bezier(.22, .68, 0, 1.2) 0.15s forwards;
    opacity: 0;
}

.custom-hero .hero-sub {
    animation: fadeSlideUp 0.7s ease 0.3s forwards;
    opacity: 0;
}

.custom-hero .hero-ctas {
    animation: fadeSlideUp 0.7s ease 0.45s forwards;
    opacity: 0;
}

.custom-hero .hero-trust {
    animation: fadeSlideUp 0.7s ease 0.6s forwards;
    opacity: 0;
}

.custom-hero .hcard {
    animation: fadeScaleIn 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.35s forwards;
    opacity: 0;
}

.hero-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 14px
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero p {
    color: var(--white-color);
}

.hero p strong {
    font-weight: 700;
    color: var(--white-color);
}

.hero p .acc {
    color: var(--g400)
}

.hero-sub {
    font-size: 16px;
    color: var(--p300);
    margin-bottom: 28px;
    line-height: 1.7
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-color);
    background: var(--wa);
    padding: 14px 28px;
    border-radius: 10px;
    transition: all .2s;
    border: none;
    cursor: pointer
}

.btn-wa:hover {
    filter: brightness(1.1);
    transform: translateY(-2px)
}

.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.hero-trust span {
    font-size: 13px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 6px
}

.hero-trust span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--g400);
    border-radius: 50%
}

/* Hero card */
.hcard {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px 24px
}

.hcard h3 {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 16px;
    font-weight: 600
}

.hcard-i {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px
}

.hcard-i:last-child {
    margin-bottom: 0
}

.hcard-n {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .3);
    border: 1px solid rgba(124, 58, 237, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--p300);
    flex-shrink: 0
}

.hcard-t p {
    font-size: 14px;
    color: var(--p200)
}

.hcard-t span {
    font-size: 12px;
    color: var(--white-color)
}

/* Cert bar */
.cbar {
    background: var(--s50);
    border-bottom: 1px solid var(--s200);
    padding: 100px 0;
    overflow: hidden;
}

.cbar .cbar-title {
    color: var(--primary-color);
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.certiper {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cbar-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbar-img {
    height: 200px;
    width: 350px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
    cursor: pointer;
}

.certiper-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.certiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--s300);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.certiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Certification Carousel Arrows */
.certiper-prev,
.certiper-next {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border: 1px solid var(--s200);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    top: 45%;
    --swiper-navigation-color: var(--primary-color);
}

.certiper-prev:hover,
.certiper-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(61, 0, 102, 0.2);
    --swiper-navigation-color: var(--white-color);
}

.certiper-prev::after,
.certiper-next::after {
    font-size: 14px;
    font-weight: 700;
    --swiper-navigation-color: var(--primary-color);
    transition: all 0.3s ease;
}

.certiper-prev:hover::after,
.certiper-next:hover::after {
    --swiper-navigation-color: var(--white-color);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

/* Section */
.sec {
    padding: 100px 0;
}

.title-section {
    margin-bottom: 2.5rem;
}

.sec-l {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center
}

.sec-t {
    font-size: 30px;
    font-weight: 700;
    color: var(--s900);
    margin-bottom: 8px;
    text-align: center;
    text-transform: capitalize;
}

.sec-s {
    font-size: 1rem;
    color: var(--s500);
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center
}

.sec-alt {
    background: var(--s50)
}

/* Process */
.proc-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative
}

.proc-g::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: var(--p200);
    z-index: 0
}

.proc-s {
    text-align: center;
    position: relative;
    z-index: 1
}

.proc-n {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 12px;
    transition: all .3s
}

.proc-s:hover .proc-n {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1) rotate(5deg);
}

.proc-s {
    transition: all 0.3s ease;
}

.proc-s:hover {
    transform: translateY(-5px);
}

.proc-s h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--s800);
    margin: 1rem 0;
    text-transform: capitalize;
}

.proc-s p {
    color: var(--s500);
}

/* Packages */
.pkg-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pkg {
    border: 1px solid var(--s200);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    background: var(--white-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pkg:hover {
    border-color: var(--p200);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.1), 0 10px 10px -5px rgba(124, 58, 237, 0.04);
}

.pkg.ft {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(124, 58, 237, .1)
}

.pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap
}

.pkg-tier {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--s500);
    font-weight: 500;
    margin-bottom: 4px
}

.pkg-price {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--s900);
    margin-bottom: 2px
}

.pkg-desc {
    font-size: 14px;
    color: var(--s500);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--s100)
}

.pkg ul {
    list-style: none;
    margin-bottom: 20px
}

.pkg li {
    font-size: 1rem;
    color: var(--s600);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pkg li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ft li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D0066' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.pkg-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
    cursor: pointer
}

.pkg-o {
    color: var(--primary-color);
    border: 1.5px solid var(--p200);
    background: var(--white-color)
}

.pkg-o:hover {
    border-color: var(--primary-color);
    background: var(--p50)
}

.pkg-f {
    color: var(--white-color);
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color)
}

.pkg-f:hover {
    background: var(--accent-color)
}

/* Self check */
.sc-box {
    background: var(--white-color);
    border: 1px solid var(--s200);
    border-radius: 14px;
    padding: 28px;
    max-width: 900px;
    margin: 0 auto
}

.sc-i {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--s100)
}

.sc-i:last-of-type {
    border-bottom: none
}

.sc-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--s300);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
    transition: all .2s
}

.sc-icon:hover {
    border-color: var(--primary-color)
}

.sc-icon.checked {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.sc-i p {
    font-size: 1rem;
    color: var(--s700)
}

.sc-res {
    margin-top: 24px;
    padding: 24px;
    background: var(--p50);
    border: 1px solid var(--p200);
    border-radius: 16px;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.sc-res a {
    margin: 0;
}

/* Leader – two-column layout */
.lead-card {
    border: 1px solid var(--s200);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white-color);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: stretch;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.lead-card:hover {
    border-color: var(--p300);
    box-shadow: 0 16px 48px rgba(124, 58, 237, .1)
}

.lead-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--primary-color), var(--primary-color));
    min-height: 480px;
    align-self: stretch
}

.lead-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform: scale(1.12);
    transition: transform .4s
}

.lead-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #1d075299);
}

.lead-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.lead-name {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--s900);
    margin-bottom: 4px
}

.lead-info .role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3px
}

.lead-info .prev {
    font-size: 13px;
    color: var(--s500);
    margin-bottom: 16px
}

.lead-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px
}

.lead-cert {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--p100);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--p200)
}

.lead-bio {
    font-size: 14px;
    color: var(--s600);
    line-height: 1.75;
    margin-bottom: 20px
}

.lead-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--s100);
    margin-bottom: 16px
}

.lead-stat {
    text-align: center;
    padding: 10px 6px;
    background: var(--s50);
    border-radius: 10px
}

.lead-stat .num {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color)
}

.lead-stat .lbl {
    font-size: 11px;
    color: var(--s500);
    margin-top: 2px
}

.lead-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600
}

.lead-link:hover {
    text-decoration: underline
}

@media(max-width:860px) {
    .lead-card {
        grid-template-columns: 1fr;
    }

    .lead-img-wrap {
        min-height: 450px !important;
        max-height: 550px;
    }

    .lead-photo {
        min-height: 100%;
        transform: scale(1) !important;
        object-position: center !important;
    }

    .lead-content {
        padding: 28px 24px;
    }

    .lead-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials */
.testi-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.testi {
    background: var(--white-color);
    border: 1px solid var(--s200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testi:hover {
    border-color: var(--p200);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.08);
}

.testi-q {
    font-size: 32px;
    color: var(--p200);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 6px
}

.testi-txt {
    font-size: 1rem;
    color: var(--s700);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--p100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color)
}

.testi-nm {
    font-size: 14px;
    font-weight: 600;
    color: var(--s800)
}

.testi-rl {
    font-size: 12px;
    color: var(--s500)
}

/* Differentiators */
.diff-g {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

.diff {
    padding: 2rem;
    border: 1px solid var(--s200);
    border-radius: 20px;
    background: var(--white-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.diff:hover {
    border-color: var(--p200);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.08);
}

.diff-ic {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: var(--p100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.diff h4 {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 600;
    color: var(--s800);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.diff p {
    color: var(--s500);
}

/* FAQ */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-i {
    background: var(--white-color);
    border: 1px solid var(--s200);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-i:hover {
    border-color: var(--p200);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.08);
}

.faq-i.open {
    border-color: var(--p300);
    background: var(--p50);
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.1), 0 10px 10px -5px rgba(124, 58, 237, 0.04);
}

.faq-q {
    font-family: var(--heading-font);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--s800);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 1.5rem;
    user-select: none;
}

.faq-q::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233D0066' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4.5v15m7.5-7.5h-15' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-i.open .faq-q::after {
    transform: rotate(45deg);
    filter: brightness(1.2);
}

.faq-i.open .faq-q {
    color: var(--primary-color);
}

.faq-a {
    font-size: 1rem;
    color: var(--s600);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
}

.faq-i.open .faq-a {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Industries */
.ind-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.ind-tag {
    font-size: 14px;
    color: var(--s600);
    border: 1px solid var(--s200);
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--white-color);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.ind-tag:hover {
    border-color: var(--p300);
    color: var(--primary-color);
    background: var(--p50)
}

/* Final CTA */
.fcta {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    background: url('/images/home/footer-bg.png'), linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--primary-color) 98.84%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 40px 0 0 0;
}

.fcta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .2), transparent 70%)
}

.fcta .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px
}

.fcta-left {
    text-align: left;
}

.fcta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 12px;
    line-height: 1.2
}

.fcta-left>p {
    font-size: 16px;
    color: var(--p300);
    margin-bottom: 28px;
    line-height: 1.7
}

.fcta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.fcta .ph {
    font-size: 14px;
    color: var(--white-color)
}

.fcta .ph strong {
    color: var(--p300)
}

.fcta-form {
    /* background: var(--white-color); */
    padding: 32px;
    border-radius: 16px;
    /* box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25); */
    position: relative;
    z-index: 2
}

.fcta-form h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--s900);
    margin-bottom: 20px
}

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

.form-grp {
    margin-bottom: 16px
}

.form-grp.full {
    grid-column: 1/-1;
    margin-bottom: 0
}

.form-grp label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--s700);
    margin-bottom: 6px
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--s50);
    border: 1px solid var(--s200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--s900);
    outline: none;
    transition: all .2s;
    box-sizing: border-box
}

.form-control:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .1)
}

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

.form-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.form-btn:hover {
    background: var(--primary-color)
}

/* Footer */
.foot {
    margin-top: 2rem;
    padding: 28px 0;
    border-top: 1px solid var(--dark-divider-color);
}

.foot .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.foot p {
    color: var(--white-color);
    letter-spacing: 0.5px;
}

.foot a {
    color: var(--white-color)
}

.foot strong {
    color: var(--white-color);
}

/* WA float */
.waf {
    display: none !important;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--wa);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px #25d36659;
    z-index: 1000;
    transition: all .2s;
    cursor: pointer
}

.btn-wa {
    display: none !important;
}

.waf:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px #25d36673;
}

.waf svg {
    width: 28px;
    height: 28px;
    fill: var(--white-color)
}

/* Responsive */
@media(max-width:860px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .hero h1 {
        font-size: 30px
    }

    .pkg-g {
        grid-template-columns: 1fr
    }

    .proc-g {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc-g::before {
        display: none
    }

    .testi-g {
        grid-template-columns: 1fr
    }

    .diff-g {
        grid-template-columns: 1fr
    }

    .lead-top {
        flex-direction: column;
        text-align: center
    }

    .lead-stats {
        justify-content: center
    }

    .fcta .container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .fcta-left {
        text-align: center
    }

    .fcta-btns {
        justify-content: center
    }

    .fcta-form {
        text-align: left
    }

    .foot .container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .foot .container div {
        text-align: center !important;
    }
}

@media(max-width:560px) {
    .hero {
        padding: 44px 0 36px
    }

    .hero h1 {
        font-size: 26px
    }

    .sec {
        padding: 44px 0
    }

    .sec-t {
        font-size: 24px
    }

    .nav-ph {
        display: none
    }

    .btn-book-free {
        padding: 8px 16px;
        font-size: 11px;
        white-space: nowrap;
        border-radius: 6px;
    }

    .nav-logo {
        width: 140px;
    }

    .nav .container {
        gap: 8px;
    }

    .fcta {
        padding: 44px 0;
    }

    .proc-g {
        grid-template-columns: 1fr;
    }

    @media(max-width:380px) {
        .nav-logo {
            width: 110px;
        }

        .btn-book-free {
            padding: 6px 12px;
            font-size: 10px;
        }
    }
}

/* ── Scroll Reveal Animations ── */
.reveal-on-scroll {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

/* When Animate.css is triggered */
.reveal-on-scroll.animate__animated {
    opacity: 1;
    visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        transition: none;
        opacity: 1;
    }
}

/* Mobile Fix for Buttons */
@media (max-width: 768px) {

    .btn-default::before {
        display: none !important;
    }

    .btn-default {
        padding: 12px 24px !important;
        font-size: 14px !important;
        text-align: center;
        justify-content: center;
        width: auto;
        min-width: 160px;
    }

    .nav-r .btn-book-free {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }

    .hero-ctas {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════
    Additional Landing Styles
═══════════════════════════════════════ */

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tertiary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
}

/* Threat Landscape Section */
.sec-threat {
    background: var(--p100);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sec-threat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(106, 47, 146, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.threat-badge {
    background: #6a2f921a;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid var(--primary-color);
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.threat-card {
    background: #6a2f921f;
    border: 1px solid #6a2f924d;
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 10px -10px #00000080;
}

.threat-card:hover {
    background: #ffffff05;
    transform: translateY(-10px);
    border-color: var(--accent-secondary-color);
    box-shadow: 0 20px 40px -10px #00000080;
}

.threat-val {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
    letter-spacing: -1px;
}

.threat-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.threat-footer {
    margin-top: 50px;
    color: var(--s500);
    font-size: 16px;
    font-style: italic;
    opacity: 0.8;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    animation: fadeSlideRight 0.7s cubic-bezier(.22, .68, 0, 1.2) forwards;
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.h-badge-red {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.h-badge-blue {
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
}

.h-badge svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 1199px) {
    .threat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .threat-grid {
        grid-template-columns: 1fr;
    }

    .threat-val {
        font-size: 36px;
    }

    .hero-badges {
        justify-content: center;
    }

    .form-grid-sidebar {
        grid-template-columns: 1fr;
    }

    .form-grp.full-width {
        grid-column: span 1;
    }
}

/* Hero Form Sidebar Styles */
.hero-form {
    background: var(--white-color);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.hero-form h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    font-family: var(--heading-font);
}

.hero-form p {
    margin: 0 0 20px 0;
    font-size: 14px;
    text-align: center;
}

.form-grid-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
}

.form-grp.full-width {
    grid-column: span 2;
}

.form-grid-sidebar .form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-grid-sidebar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(61, 0, 102, 0.1);
    background: white;
}

.form-btn.w-100 {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 575px) {
    .form-btn.w-100 {
        padding: 12px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

/* FCTA hcard styles */
.fcta-hcard {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

/* Quick Self-Check Section */
.sc-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.sc-i {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.sc-i:last-of-type {
    border-bottom: none;
}

.sc-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sc-icon.checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.sc-icon.checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sc-i p {
    font-size: 16px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.sc-res {
    margin-top: 30px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    border: 1px dashed #cbd5e1;
}

.sc-res a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* ── Mobile Optimization Refinements ── */

@media (max-width: 768px) {
    .sec {
        padding: 60px 0;
    }

    .custom-hero {
        padding: 40px 0;
    }

    .hero-form {
        margin-top: 30px;
        padding: 25px;
    }

    .sc-box {
        padding: 25px;
        margin: 30px 15px 0;
    }

    .sc-i p {
        font-size: 14px;
    }

    .urg .container {
        flex-direction: column;
        gap: 5px;
        padding: 8px 0;
    }

    .btn-home {
        margin-left: 0;
    }

    .form-grid-sidebar {
        grid-template-columns: 1fr;
    }

    .form-grp.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        gap: 8px;
    }

    .h-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .sec-t {
        font-size: 28px !important;
    }

    .threat-val {
        font-size: 32px;
    }
}

/* ── Professional Placeholders ── */
::placeholder {
    color: #94a3b8 !important;
    opacity: 0.7;
    font-size: 13px;
}

:-ms-input-placeholder {
    color: #94a3b8 !important;
}

::-ms-input-placeholder {
    color: #94a3b8 !important;
}

/* ── Premium Form Validation ── */
.form-control.is-invalid {
    border-color: #ef4444 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ef4444' viewBox='0 0 24 24'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z'%3e%3c/path%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px !important;
}

.form-control.is-valid {
    border-color: #10b981 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2310b981' viewBox='0 0 24 24'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3e%3c/path%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px !important;
}

.error-hint {
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.3s ease-in-out;
}

/* LinkedIn Page Footer Style Updates */
.li-footer {
    padding: 40px 0 30px 0 !important;
    background: rgba(0, 0, 0, 0.15) !important;
}

.li-footer .li-footer-inner {
    flex-basis: 100%;
    text-align: center;
}

.li-footer-title {
    margin-bottom: 8px !important;
    font-size: 20 !important;
    font-weight: 700 !important;
    color: var(--white-color) !important;
    letter-spacing: 0.5px !important;
}

.li-footer-address {
    margin-bottom: 24px !important;
    color: var(--white-color) !important;
}

.li-footer-bottom {
    border-top: 1px solid var(--white-color) !important;
    padding-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    color: var(--white-color) !important;
    flex-wrap: wrap !important;
}

.li-footer-link {
    color: var(--white-color) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    font-weight: 500 !important;
}

.li-footer-link:hover {
    color: var(--tertiary-color) !important;
}

.li-footer-separator {
    opacity: 0.3 !important;
}