/* Team member social icons */
.team-social {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    justify-content: center;
}

.team-social a {
    color: var(--muted);
    background: rgba(245, 249, 255, 0.07);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.team-social a:hover {
    color: var(--green);
    background: rgba(243, 171, 45, 0.13);
    border-color: var(--green);
}

:root {
    --green: #f3ab2d;
    --blue: #5f90cb;
    --teal: #7da7d8;
    --grad: linear-gradient(120deg, #f3ab2d 0%, #f8bf59 40%, #88afde 100%);
    --dark: #0d3561;
    --surface: #114171;
    --card: #184f84;
    --border: #2d6397;
    --muted: rgba(230, 239, 255, 0.78);
    --white: #f5f9ff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-size: 16px !important;
}

h2,
h3,
h4,
h5,
h6 {
    font-size: clamp(18px, 2vw, 20px) !important;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--grad);
    border-radius: 4px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    height: 170px;
    background: rgba(13, 53, 97, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: height 0.3s;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand img {
    height: 155px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(243, 171, 45, 0.4));
}

.brand-hex {
    width: 36px;
    height: 32px;
    clip-path: polygon(25% 4%, 75% 4%, 96% 50%, 75% 96%, 25% 96%, 4% 50%);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-hex span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.brand-word {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--white);
}

.brand-sub {
    margin-top: 3px;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(220, 233, 252, 0.86);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.active,
.mob-menu a.active {
    color: var(--white);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.nav-social a i {
    line-height: 1;
    display: block;
}

.nav-social a:hover {
    color: var(--white);
    border-color: var(--green);
    background: rgba(243, 171, 45, 0.12);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 11px 26px;
    border-radius: 7px;
    background: var(--grad);
    color: #0d3561;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav shrink on scroll */
nav.scrolled {
    height: 68px !important;
}

nav.scrolled .nav-brand img {
    height: 54px !important;
}

.mob-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 170px;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    transition: top 0.3s;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    padding: 13px 6vw;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mob-menu a:hover {
    color: var(--green);
}

.mob-social {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 6vw 14px;
    border-top: 1px solid var(--border);
}

.mob-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.92rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mob-social a:hover {
    color: var(--white);
    border-color: var(--green);
    background: rgba(243, 171, 45, 0.12);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 78% 45%, rgba(33, 118, 199, 0.13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 18% 65%, rgba(61, 190, 110, 0.09) 0%, transparent 60%),
        var(--dark);
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(61, 190, 110, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(33, 118, 199, 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100vh;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(61, 190, 110, 0.3);
    background: rgba(61, 190, 110, 0.07);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 26px;
    opacity: 0;
    animation: up 0.6s 0.1s forwards;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 7px var(--green);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    opacity: 0;
    animation: up 0.6s 0.25s forwards;
}

.g {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 38px;
    opacity: 0;
    animation: up 0.6s 0.4s forwards;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: up 0.6s 0.55s forwards;
}

.btn-p {
    padding: 13px 30px;
    border-radius: 7px;
    background: var(--grad);
    color: #0d3561;
    border: none;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(33, 118, 199, 0.28);
    transition: opacity 0.2s, transform 0.2s;
}

.btn-p:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.btn-o {
    padding: 12px 30px;
    border-radius: 7px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-o:hover {
    border-color: var(--blue);
    color: #7ec8f5;
    transform: translateY(-2px);
}

.hero-logo-float {
    position: absolute;
    right: 7vw;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadein 1s 0.8s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.logo-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(61, 190, 110, 0.08), 0 0 0 24px rgba(33, 118, 199, 0.05), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.logo-ring img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.logo-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* STATS */
.stats {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 6vw;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-n {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-l {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
}

/* SECTION */
section {
    padding: 88px 6vw;
}

.page-hero {
    background: var(--surface);
    padding: 220px 6vw 90px;
    border-bottom: 1px solid var(--border);
}

.page-hero .s-sub {
    max-width: 680px;
}

.s-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: inline-block;
}

.s-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.s-sub {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 480px;
}

/* SERVICES */
#services {
    background: var(--surface);
}

.svc-head {
    margin-bottom: 50px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
}

.svc-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
    border-radius: 12px 12px 0 0;
}

.svc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 118, 199, 0.3);
    box-shadow: 0 12px 36px rgba(33, 118, 199, 0.12);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 190, 110, 0.08);
    border: 1px solid rgba(61, 190, 110, 0.14);
}

.svc-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.6;
    fill: none;
}

.svc-card:nth-child(odd) .svc-icon svg {
    stroke: var(--green);
}

.svc-card:nth-child(even) .svc-icon svg {
    stroke: #5ab4f5;
}

.svc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 9px;
}

.svc-desc {
    font-size: 0.86rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
}

/* ABOUT */
#about {
    background: var(--surface);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
}

.about-main {
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 28px;
}

.about-img-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-logo-big {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(61, 190, 110, 0.07), 0 0 0 22px rgba(33, 118, 199, 0.04), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.about-logo-big img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.chip {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--muted);
    background: var(--card);
}

.about-text .s-sub {
    margin-bottom: 28px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 24px;
}

.about-h {
    background: rgba(245, 249, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}

.about-h-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.about-h-sub {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 22px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.55;
}

.ck {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 1px;
    background: rgba(61, 190, 110, 0.1);
    border: 1px solid rgba(61, 190, 110, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck svg {
    width: 10px;
    height: 10px;
    stroke: var(--green);
    stroke-width: 2.5;
    fill: none;
}

.about-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.about-kpi {
    min-width: 120px;
}

.about-kpi-n {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.about-kpi-l {
    margin-top: 3px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-side-card {
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 20px 18px;
}

.about-side-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.about-side-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
}

.about-mini-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.about-mini-list li {
    font-size: 0.86rem;
    color: rgba(245, 249, 255, 0.88);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.55;
}

.about-mini-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.about-side-cta {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    transition: border-color 0.2s, transform 0.2s;
}

.about-side-cta:hover {
    border-color: var(--green);
    transform: translateY(-1px);
}

/* HOME EXTRA */
#home-extra {
    background: linear-gradient(180deg, var(--surface) 0%, #0f3b68 100%);
}

.extra-head {
    margin-bottom: 34px;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.extra-card {
    background: rgba(10, 45, 82, 0.75);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.extra-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 171, 45, 0.55);
    box-shadow: 0 12px 32px rgba(4, 22, 41, 0.35);
}

.extra-label {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(243, 171, 45, 0.35);
    background: rgba(243, 171, 45, 0.12);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.extra-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.extra-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.extra-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.extra-card li {
    font-size: 0.8rem;
    color: rgba(245, 249, 255, 0.86);
    line-height: 1.45;
    position: relative;
    padding-left: 14px;
}

.extra-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 7px;
}

#home-clients {
    background: var(--surface);
    padding-top: 26px;
}

.clients-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
}

.clients-head .s-sub {
    max-width: 760px;
    margin: 0 auto;
}

.clients-marquee {
    overflow: hidden;
    border: 1px solid rgba(45, 99, 151, 0.75);
    border-radius: 14px;
    background: rgba(10, 45, 82, 0.65);
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 16px 14px;
    animation: client-scroll 30s linear infinite;
}

.client-logo {
    width: 180px;
    height: 82px;
    border-radius: 10px;
    background: rgba(245, 249, 255, 0.06);
    border: 1px solid rgba(45, 99, 151, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-logo img {
    max-width: 132px;
    max-height: 54px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

@keyframes client-scroll {
    from {
        transform: translateX(0);
    }

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

#home-faq {
    background: var(--surface);
    padding: 34px 6vw 74px;
}

.faq-head {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 18px;
}

.faq-head .s-sub {
    max-width: 680px;
    margin: 0 auto;
}

.faq-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(45, 99, 151, 0.75);
    background: rgba(10, 45, 82, 0.58);
    box-shadow: 0 16px 34px rgba(6, 26, 48, 0.26);
}

.faq-grid {
    display: grid;
    gap: 10px;
}

.faq-grid details {
    text-align: left;
    border: 1px solid rgba(45, 99, 151, 0.65);
    border-radius: 9px;
    padding: 11px 13px;
    background: rgba(17, 65, 113, 0.45);
}

.faq-grid summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(245, 249, 255, 0.94);
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.62;
}

.faq-shell .about-side-cta {
    display: inline-flex;
    margin-top: 14px;
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}

/* PROCESS */
#process {
    background: var(--surface);
}

.proc-head {
    margin-bottom: 52px;
}

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

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

.proc-num-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: var(--grad);
    padding: 2px;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.proc-step:hover .proc-num-wrap {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(33, 118, 199, 0.3);
}

.proc-num-bg {
    flex: 1;
    border-radius: 50%;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proc-num-inner {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.proc-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
}

/* LEADERSHIP */
#leadership {
    background: var(--surface);
}

.lead-head {
    margin-bottom: 52px;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.lead-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lead-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 28px;
    font-size: 9rem;
    line-height: 1;
    font-family: Georgia, serif;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.18;
    pointer-events: none;
}

.lead-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(33, 118, 199, 0.14);
}

.lead-quote {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.lead-person {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.lead-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
    display: flex;
}

.lead-avatar-inner {
    flex: 1;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: var(--dark);
    overflow: hidden;
    position: relative;
    color: transparent;
}

.lead-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lead-avatar-inner::after {
    content: attr(data-fallback);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
}

.lead-avatar-inner.no-photo::after {
    opacity: 1;
}

.lead-avatar-inner.no-photo img {
    display: none;
}

.lead-info-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.lead-info-role {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3px;
}

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

/* CONTACT */
#contact {
    background: var(--surface);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-left .s-sub {
    margin-bottom: 34px;
}

.c-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.c-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.c-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(61, 190, 110, 0.07);
    border: 1px solid rgba(61, 190, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--green);
    stroke-width: 1.6;
    fill: none;
}

.c-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}

.c-val {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.cf {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fg label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.fg input,
.fg textarea,
.fg select {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 11px 14px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--teal);
}

.fg input.field-invalid,
.fg textarea.field-invalid,
.fg select.field-invalid {
    border-color: #f8bf59;
    box-shadow: 0 0 0 2px rgba(248, 191, 89, 0.2);
}

.fg textarea {
    resize: vertical;
    min-height: 110px;
}

.fg select option {
    background: var(--card);
}

.cf-btn {
    width: 100%;
    padding: 13px;
    border-radius: 7px;
    background: var(--grad);
    color: #0d3561;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.cf-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: #0a2d52;
    margin-top: auto;
    padding: 20px 6vw 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ft-word {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.ft-logo {
    width: 30px;
    height: 26px;
    clip-path: polygon(25% 4%, 75% 4%, 96% 50%, 75% 96%, 25% 96%, 4% 50%);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--green);
    line-height: 1;
}

.ft-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.22rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--white);
}

.ft-sub {
    margin-top: 3px;
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(220, 233, 252, 0.86);
    font-weight: 500;
}

.ft-copy {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 300;
}

.ft-links {
    display: flex;
    gap: 20px;
}

.ft-links a {
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-links a:hover {
    color: var(--green);
}

.toast-wrap {
    position: fixed;
    right: 24px;
    top: 0px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    min-width: 280px;
    max-width: 360px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(10, 45, 82, 0.96);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    transform: translateY(14px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: rgba(61, 190, 110, 0.45);
}

.toast.error {
    border-color: rgba(243, 171, 45, 0.55);
}

.toast-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.toast-text {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--muted);
}

.home-image-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(21, 47, 99, 0.78);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.18s ease;
    padding: 20px;
}

.home-image-modal.show {
    opacity: 1;
}

.home-image-modal-card {
    position: relative;
    width: min(700px, 92vw);
    border-radius: 14px;
    border: 1px solid rgba(243, 171, 45, 0.45);
    background: #152f63;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.home-image-modal-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
    background: #152f63;
}

.home-image-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
    background: rgba(21, 47, 99, 0.72);
    transition: background 0.2s ease;
}

.home-image-modal-close:hover {
    background: rgba(243, 171, 45, 0.88);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.on {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: 0.08s
}

.d2 {
    transition-delay: 0.16s
}

.d3 {
    transition-delay: 0.24s
}

.page {
    width: min(1400px, 100%);
    margin: 0 auto 56px;
    padding: 2rem 6vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.team-page .page-hero {
    padding: 170px 6vw 0px;
}

.team-page .page-hero .s-title {
    font-size: clamp(2.7rem, 5.2vw, 4rem);
}

.team-page .page-hero .s-sub {
    max-width: 760px;
    font-size: 1.02rem;
}

/* ── Card ── */
.card {
    width: 100%;
    max-width: 320px;
    min-height: 430px;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(165deg, #114171 0%, #184f84 55%, #0d3561 100%);
    box-shadow: 0 20px 56px rgba(6, 28, 51, 0.4);
    position: relative;
}

/* Circular ring decorations */
.card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(125, 167, 216, 0.2);
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(125, 167, 216, 0.14);
    pointer-events: none;
}

/* ── Arc SVG ── */
.arc-lines {
    position: absolute;
    right: -30px;
    top: 40px;
    width: 200px;
    height: 300px;
    opacity: 0.07;
    pointer-events: none;
}

/* ── Logo area ── */
.card-top {
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.logo-hex {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo-text .sub {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ── Photo ── */
.photo-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 20px 0;
    position: relative;
    z-index: 2;
}

.photo-frame {
    width: 200px;
    height: 220px;
    border-radius: 20px;
    background: rgba(13, 53, 97, 0.88);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 2px solid rgba(45, 99, 151, 0.75);
}

/* Replace .photo-placeholder with an <img> when you have a real photo */
.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.photo-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.upload-hint {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ── Name & Role ── */
.card-bottom {
    padding: 20px 20px 28px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 22px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px auto;
}

.member-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .page {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    }

    .team-page .page-hero {
        padding: 145px 6vw 44px;
    }
}

@media (max-width: 680px) {
    .page {
        margin-top: 8px;
        grid-template-columns: minmax(270px, 320px);
        gap: 20px;
    }

    .team-page .page-hero {
        padding: 112px 6vw 30px;
    }
}


@keyframes up {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

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

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (max-width: 860px) {
    .brand-name {
        font-size: 1.35rem;
    }

    .brand-sub {
        font-size: 0.5rem;
        letter-spacing: 0.18em;
    }

    .hero-content {
        flex-direction: column;
        gap: 32px;
        height: 50vh;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        margin-top: 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .hero-logo-float {
        display: none;
    }

    #about,
    #contact {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

    .faq-shell {
        padding: 14px;
    }

    .client-logo {
        width: 150px;
        height: 72px;
    }

    .client-logo img {
        max-width: 112px;
        max-height: 48px;
    }

    .nav-links,
    .nav-cta,
    .nav-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mob-social {
        display: flex;
    }

    nav {
        height: 90px !important;
        padding: 0 4vw;
    }

    .nav-brand img {
        height: 76px !important;
        filter: none;
    }

    nav.scrolled {
        height: 72px !important;
    }

    nav.scrolled .nav-brand img {
        height: 58px !important;
    }

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

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

    .toast-wrap {
        right: 14px;
        left: 14px;
        bottom: 14px;
    }

    .toast {
        min-width: 0;
        max-width: none;
    }

    .home-image-modal {
        padding: 14px;
    }

    .home-image-modal-card {
        width: 100%;
    }

    footer {
        padding: 18px 5vw 22px;
    }
}

a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 70px;
    right: 5px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}