/* =========================================================
   0. TOKENS
========================================================= */
:root {
    --paper: #F6F3EC;
    --paper-2: #EEE9DC;
    --navy-950: #070C18;
    --navy-900: #101B32;
    --navy-800: #17274A;
    --indigo: #4650D6;
    --indigo-2: #6D75E8;
    --amber: #E2A03F;
    --amber-2: #F0BD6C;
    --teal: #1D8E85;
    --ink: #131A2A;
    --slate: #5C6478;
    --slate-soft: #8891A3;
    --line: #E2DDCE;
    --line-dark: rgba(255, 255, 255, .10);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 6px 20px rgba(16, 27, 50, .06);
    --shadow-pop: 0 18px 45px rgba(16, 27, 50, .14);
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    color: var(--navy-900);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* focus visibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--indigo);
    outline-offset: 3px;
    border-radius: 6px;
}

/* =========================================================
   1. TOP UTILITY BAR + NAV (kept structurally, restyled)
========================================================= */
.sv-topbar {
    background: var(--navy-950);
    color: #C9CEDA;
    font-size: 12.5px;
}

.sv-topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.sv-topbar .left-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sv-topbar .info {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sv-topbar .info i {
    color: var(--amber);
    font-size: 11px;
}

.sv-topbar .divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .15);
}

.sv-topbar .social-icons {
    display: flex;
    gap: 10px;
}

.sv-topbar .social-icons a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9CEDA;
    font-size: 11px;
    transition: .2s var(--ease);
}

.sv-topbar .social-icons a:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy-950);
}

.sv-navbar-wrap {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.sv-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(20px, 5vw, 48px);
    max-width: 1240px;
    margin: 0 auto;
    gap: 20px;
}

.sv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--navy-900);
}

.sv-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.sv-footer .sv-logo img {
    height: 40px;
}

.sv-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sv-nav-links>li>a {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    position: relative;
    padding: 6px 0;
}

.sv-nav-links>li>a.active,
.sv-nav-links>li>a:hover {
    color: var(--indigo);
}

.sv-nav-links>li>a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.sv-call-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--navy-900);
    color: #fff;
    padding: 11px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13.5px;
    transition: .25s var(--ease);
}

.sv-call-btn:hover {
    background: var(--indigo);
    transform: translateY(-1px);
}

.sv-call-btn i {
    color: var(--amber);
}

.sv-menu-toggle {
    display: none;
    font-size: 20px;
    color: var(--navy-900);
}

/* =========================================================
   RECRUITMENT-PLACEMENT.CSS
   Page-specific styles for the Recruitment & Placement page.
   Core design system (tokens, hero, about, services, process,
   insights, partners, faq, cta, footer) lives in style.css —
   this file is for anything unique to this page only.
========================================================= */

/* Active service in the dropdown menu, highlighted */
.dropdown-menu li a.active {
    color: var(--indigo, #4650D6);
    font-weight: 700;
    background: var(--paper, #F6F3EC);
}

/* =========================================================
   2. HERO — signature "talent match" graphic
========================================================= */
.sv-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(620px 420px at 88% -6%, rgba(226, 160, 63, .16), transparent 62%),
        radial-gradient(900px 600px at -10% 110%, rgba(70, 80, 214, .22), transparent 60%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 58%, var(--navy-800) 100%);
    color: #fff;
    padding: 20px 0;
    margin-bottom: -2px;
}

.sv-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.sv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: 18px;
}

.sv-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--amber);
    display: inline-block;
}

.sv-hero h1 {
    font-size: clamp(32px, 4.4vw, 50px);
    font-weight: 800;
    line-height: 1.14;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -.01em;
}

.sv-hero h1 em {
    font-style: normal;
    color: var(--amber-2);
}

.sv-hero p.lead {
    max-width: 480px;
    color: #B9C1D4;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.sv-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: .25s var(--ease);
}

.btn-primary {
    background: var(--amber);
    color: var(--navy-950);
}

.btn-primary:hover {
    background: var(--amber-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(226, 160, 63, .28);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sv-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--line-dark);
    padding-top: 26px;
}

.sv-hero-stat {
    flex: 1 1 130px;
    padding-right: 22px;
    border-right: 1px solid var(--line-dark);
}

.sv-hero-stat:last-child {
    border-right: none;
}

.sv-hero-stat h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 3px;
}

.sv-hero-stat span {
    font-size: 12px;
    color: #96A0B8;
}

/* ==========================
   RIGHT MATCH GRAPHIC
========================== */

.sv-match {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 460px;
    margin-left: auto;
}

.sv-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* SVG Lines */

.sv-match-path {
    fill: none;
    stroke: url(#svGrad);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
    opacity: .55;
}

/* ==========================
      CENTER
========================== */

.sv-match-core {

    position: absolute;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring {

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .18);

    animation: ring 5s linear infinite;
}

.core-ring.ring2 {

    width: 150px;
    height: 150px;

    opacity: .35;

    animation-delay: 2.5s;
}

@keyframes ring {

    0% {
        transform: scale(.9);
        opacity: .2;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.08);
        opacity: .2;
    }

}

.core-icon {

    width: 100px;
    height: 100px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(145deg, #1f2c55, #26376b);

    box-shadow:
        0 0 0 8px rgba(109, 117, 232, .08),
        0 20px 50px rgba(0, 0, 0, .35);

    border: 1px solid rgba(255, 255, 255, .12);
}

.core-icon i {

    font-size: 34px;
    color: #F2B44C;
}

/* ==========================
      NODE
========================== */

.sv-node {

    position: absolute;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.sv-node .ico {

    width: 62px;
    height: 62px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    box-shadow: 0 18px 30px rgba(0, 0, 0, .30);
}

.sv-node span {

    color: #d8dfef;

    font-size: 12px;

    font-weight: 700;
}

.candidate .ico {

    background: linear-gradient(135deg, #7B85FF, #5664E8);

    color: #fff;
}

.role .ico {

    background: linear-gradient(135deg, #FFD56A, #E2A03F);

    color: #132041;
}

/* ==========================
    NODE POSITION
========================== */

.sv-n1 {

    top: 35px;
    left: 45px;
}

.sv-n2 {

    top: 180px;
    left: 5px;
}

.sv-n3 {

    bottom: 35px;
    left: 45px;
}

.sv-n4 {

    top: 35px;
    right: 45px;
}

.sv-n5 {

    top: 180px;
    right: 20px;
}

.sv-n6 {

    bottom: 35px;
    right: 45px;
}

.p7 {
    offset-path: path("M40 205 C180 100 340 180 440 205");
    animation-delay: 2s;
}

/* ==========================
      PULSE
========================== */

.sv-pulse {

    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #FFD56A;

    box-shadow: 0 0 15px #FFD56A;

    offset-rotate: 0deg;

    animation: travel 6s linear infinite;
}

@keyframes travel {

    from {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        offset-distance: 100%;
        opacity: 0;
    }

}

/* LEFT */

.p1 {

    offset-path: path("M110 70 C180 70 210 120 260 205");

    animation-delay: 0s;

}

.p2 {
    offset-path: path("M80 205 C145 205 185 205 260 205");
    animation-delay: 1s;
}


.p3 {

    offset-path: path("M110 340 C180 340 210 280 260 205");

    animation-delay: 2s;

}

/* RIGHT */

.p4 {

    offset-path: path("M410 70 C340 70 310 120 260 205");

    animation-delay: 3s;

}

.p5 {
    offset-path: path("M440 205 C375 205 335 205 260 205");
    animation-delay: 4s;
}

.p6 {

    offset-path: path("M410 340 C340 340 310 280 260 205");

    animation-delay: 5s;

}

/* ==========================
      MOBILE
========================== */

@media(max-width:991px) {

    .sv-match {

        display: none;

    }

}

.sv-match::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 250px;
    height: 250px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(109, 117, 232, .22),
            transparent 70%);

    filter: blur(35px);

    pointer-events: none;

    animation: centerGlow 4s ease-in-out infinite;

}

.sv-match::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 190px;
    height: 170px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(242, 180, 76, .18),
            transparent 72%);

    filter: blur(25px);

    pointer-events: none;

    animation: centerGlow 5s ease-in-out infinite reverse;

}

@keyframes centerGlow {

    0%,
    100% {

        transform: translate(-50%, -50%) scale(1);

        opacity: .6;

    }

    50% {

        transform: translate(-50%, -50%) scale(1.12);

        opacity: 1;

    }

}

@media (max-width:991px) {
    .sv-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sv-hero p.lead {
        margin: 0 auto 30px;
    }

    .sv-hero-actions {
        justify-content: center;
    }

    .sv-hero-stats {
        justify-content: center;
    }

    .sv-hero-stat {
        border-right: none;
        border-bottom: 1px solid var(--line-dark);
        padding-bottom: 14px;
        margin-bottom: 10px;
        flex: 1 1 45%;
    }

    .sv-match {
        display: none;
    }
}

/* =========================================================
   3. ABOUT
========================================================= */
.sv-about {
    background: #fff;
    padding: clamp(64px, 8vw, 96px) 0;
}

.sv-about-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr .86fr;
    gap: 32px;
    align-items: stretch;
}

.sv-about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(155deg, var(--navy-900), var(--navy-800));
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding: 26px;
}

.sv-about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 34px),
        radial-gradient(340px 220px at 20% 10%, rgba(226, 160, 63, .25), transparent 60%);
}

.sv-experience-badge {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: #fff;
}

.sv-experience-badge h3 {
    color: var(--amber-2);
    font-size: 30px;
    font-weight: 800;
}

.sv-experience-badge span {
    font-size: 12px;
    color: #C7CDDD;
    line-height: 1.3;
}

.sv-tag {
    display: inline-block;
    color: var(--indigo);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sv-about-copy h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}

.sv-about-copy p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 14px;
}

.sv-about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.sv-about-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-900);
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 9px 14px;
    border-radius: 100px;
}

.sv-about-features i {
    color: var(--indigo);
}

.sv-why-partner {
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.sv-why-partner h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
}

.sv-why-partner ul {
    margin-bottom: 22px;
    flex: 1;
}

.sv-why-partner li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #CBD1E1;
    margin-bottom: 13px;
    line-height: 1.4;
}

.sv-why-partner li i {
    color: var(--amber-2);
    margin-top: 2px;
    font-size: 12px;
}

.sv-learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--amber);
    color: var(--navy-950);
    padding: 13px 18px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 800;
    transition: .25s var(--ease);
}

.sv-learn-btn:hover {
    background: var(--amber-2);
    transform: translateY(-1px);
}

@media (max-width:991px) {
    .sv-about-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   4. SERVICES
========================================================= */
.sv-services {
    background: var(--paper);
    padding: clamp(64px, 8vw, 96px) 0;
}

.sv-section-head {
    max-width: 620px;
    margin: 0 auto 44px;
    text-align: center;
}

.sv-section-head h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.sv-section-head p {
    color: var(--slate);
    font-size: 15px;
}

.sv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sv-service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.sv-service-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--indigo), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s var(--ease);
}

.sv-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pop);
    border-color: transparent;
}

.sv-service-card:hover::after {
    transform: scaleX(1);
}

.sv-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.sv-service-icon.i-blue {
    background: var(--indigo);
}

.sv-service-icon.i-amber {
    background: var(--amber);
    color: var(--navy-950);
}

.sv-service-icon.i-green {
    background: #1FA34B;
}

.sv-service-icon.i-purple {
    background: #7B5CFA;
}

.sv-service-icon.i-teal {
    background: var(--teal);
}

.sv-service-icon.i-pink {
    background: #E0397F;
}

.sv-service-card h3 {
    font-size: 17.5px;
    font-weight: 700;
    margin-bottom: 9px;
}

.sv-service-card p {
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.6;
}

@media (max-width:991px) {
    .sv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .sv-services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   5. PROCESS — real sequence, refined line + nodes
========================================================= */
.sv-process {
    background: var(--navy-900);
    padding: clamp(64px, 8vw, 96px) 0;
    position: relative;
    overflow: hidden;
}

.sv-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(520px 320px at 90% 0%, rgba(226, 160, 63, .14), transparent 60%);
}

.sv-process .sv-tag {
    color: var(--amber-2);
}

.sv-process-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.sv-process-head h2 {
    color: #fff;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
}

.sv-process-head p {
    color: #9AA3B8;
    max-width: 360px;
    font-size: 14px;
}

.sv-process-line {
    position: relative;
    z-index: 2;
}

.sv-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    padding-top: 8px;
}

.sv-process-track::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .28) 0 8px, transparent 8px 16px);
}

.sv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.sv-step-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--amber-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    transition: .25s var(--ease);
}

.sv-step:hover .sv-step-dot {
    background: var(--amber);
    color: var(--navy-950);
    transform: scale(1.08);
}

.sv-step .num {
    font-size: 11px;
    font-weight: 800;
    color: var(--indigo-2);
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.sv-step p {
    font-size: 13px;
    font-weight: 700;
    color: #E7EAF3;
}

@media (max-width:900px) {
    .sv-process-track {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 36px;
    }

    .sv-process-track::before {
        display: none;
    }
}

@media (max-width:520px) {
    .sv-process-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   6. INSIGHT GRID — why choose / achievements / industries / testimonial
========================================================= */
.sv-insights {
    background: var(--paper);
    padding: clamp(64px, 8vw, 96px) 0;
}

.sv-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, auto);
    gap: 22px;
}

.sv-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.sv-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.sv-why {
    background: var(--navy-900);
    border: none;
    color: #fff;
}

.sv-why h3 {
    color: #fff;
}

.sv-why ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}

.sv-why li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #C7CDDD;
    line-height: 1.4;
}

.sv-why li i {
    color: var(--amber-2);
    margin-top: 2px;
}

.sv-achieve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sv-achieve-item i {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.sv-achieve-item i.blue {
    color: var(--indigo);
}

.sv-achieve-item i.amber {
    color: var(--amber);
}

.sv-achieve-item i.green {
    color: #1FA34B;
}

.sv-achieve-item i.purple {
    color: #7B5CFA;
}

.sv-achieve-item h4 {
    font-size: 21px;
    font-weight: 800;
}

.sv-achieve-item span {
    font-size: 11.5px;
    color: var(--slate);
}

.sv-industries {
    grid-column: span 2;
}

.sv-industries-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.sv-industries-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: svIndustries 24s linear infinite;
}

.sv-industries-marquee:hover .sv-industries-track {
    animation-play-state: paused;
}

.sv-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 16px;
    white-space: nowrap;
}

.sv-pill i {
    color: var(--indigo);
    font-size: 13px;
}

.sv-pill span {
    font-size: 12.5px;
    font-weight: 700;
}

@keyframes svIndustries {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sv-testimonial i.quote {
    color: var(--indigo);
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
}

.sv-testimonial p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 18px;
}

.sv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.sv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo-2), var(--indigo));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.sv-testimonial-author h4 {
    font-size: 13.5px;
}

.sv-testimonial-author span {
    font-size: 11.5px;
    color: var(--slate);
}

@media (max-width:900px) {
    .sv-insights-grid {
        grid-template-columns: 1fr;
    }

    .sv-industries {
        grid-column: span 1;
    }

    .sv-achieve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-why ul {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   7. PARTNERS MARQUEE
========================================================= */
.sv-partners {
    background: #fff;
    padding: 36px 0 clamp(64px, 8vw, 90px);
    text-align: center;
    border-top: 1px solid var(--line);
}

.sv-partners-heading {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 24px;
}

.sv-partners-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.sv-partners-track {
    display: flex;
    align-items: center;
    gap: 52px;
    width: max-content;
    animation: svPartners 26s linear infinite;
}

.sv-partner-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 19px;
    color: var(--slate-soft);
    white-space: nowrap;
}

@keyframes svPartners {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   8. FAQ
========================================================= */
.sv-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 48px);
}

.sv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sv-faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
}

.sv-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-900);
    text-align: left;
    gap: 16px;
}

.sv-faq-q .plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .25s var(--ease);
    color: var(--indigo);
    font-size: 12px;
}

.sv-faq-item.active .sv-faq-q .plus {
    transform: rotate(45deg);
    background: var(--indigo);
    color: #fff;
}

.sv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
}

.sv-faq-item.active .sv-faq-a {
    max-height: 200px;
}

.sv-faq-a p {
    padding: 0 22px 20px;
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.65;
}

/* =========================================================
   9. CTA BANNER
========================================================= */
.sv-cta {
    margin: 0 clamp(20px, 5vw, 48px) clamp(64px, 8vw, 96px);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
    padding: clamp(40px, 5vw, 56px) clamp(28px, 5vw, 56px);
}

.sv-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 260px at 100% 0%, rgba(226, 160, 63, .22), transparent 60%);
}

.sv-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.sv-cta-inner h2 {
    color: #fff;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 8px;
}

.sv-cta-inner p {
    color: #B9C1D4;
    font-size: 14.5px;
}

/* =========================================================
   10. FOOTER
========================================================= */
.sv-footer {
    background: var(--navy-950);
    color: #B9C1D4;
    padding-top: clamp(48px, 6vw, 72px);
}

.sv-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 44px;
}

.sv-footer .sv-logo {
    color: #fff;
    margin-bottom: 14px;
}

.sv-footer-about p {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #98A1B8;
}

.sv-footer-socials {
    display: flex;
    gap: 10px;
}

.sv-footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: .2s;
}

.sv-footer-socials a:hover {
    background: var(--amber);
    color: var(--navy-950);
    border-color: var(--amber);
}

.sv-footer h4 {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 18px;
}

.sv-footer ul li {
    margin-bottom: 11px;
}

.sv-footer ul li a {
    font-size: 13.5px;
    color: #98A1B8;
    transition: .2s;
}

.sv-footer ul li a:hover {
    color: var(--amber-2);
    padding-left: 2px;
}

.sv-footer-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    margin-bottom: 13px;
    color: #98A1B8;
}

.sv-footer-info i {
    color: var(--amber-2);
    margin-top: 3px;
}

.sv-newsletter-text {
    font-size: 13.5px;
    color: #98A1B8;
    margin-bottom: 14px;
    line-height: 1.6;
}

.sv-newsletter-form {
    display: flex;
    gap: 8px;
}

.sv-newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-size: 13px;
    outline: none;
}

.sv-newsletter-form input::placeholder {
    color: #7D869C;
}

.sv-newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--amber);
    color: var(--navy-950);
    font-weight: 800;
    transition: .2s;
}

.sv-newsletter-form button:hover {
    background: var(--amber-2);
}

.sv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px clamp(20px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: #7D869C;
}

.sv-footer-policy {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sv-footer-policy a:hover {
    color: var(--amber-2);
}

.sv-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy-950);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-pop);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: .3s var(--ease);
}

.sv-scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* On mobile: move scroll-top to the LEFT so it doesn't overlap the
   floating contact buttons anchored to the RIGHT */
@media (max-width: 868px) {
    .sv-scroll-top {
        right: auto;
        left: 16px;
        bottom: 16px;
    }
}

@media (max-width:900px) {
    .sv-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .sv-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   11. RESPONSIVE NAV
========================================================= */
@media (max-width:991px) {
    .sv-menu-toggle {
        display: block;
    }

    .sv-nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 80vw);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 90px 28px 28px;
        transform: translateX(100%);
        transition: .3s var(--ease);
        box-shadow: -10px 0 30px rgba(0, 0, 0, .12);
    }

    .sv-nav-links.open {
        transform: translateX(0);
    }

    .sv-nav-links>li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }

    .sv-call-btn span {
        display: none;
    }
}
/* Mobile view me top bar hide */
@media (max-width: 868px) {
    .top-bar,
    .sv-topbar {
        display: none !important;
    }
}