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

:root {
    /* ── BRAND ── */
    --teal: #219BB6;
    --teal-600: #1B86A0;
    --teal-700: #166F86;
    --teal-800: #0F5567;
    --teal-900: #0B3D4B;
    --teal-950: #082C36;
    --teal-pale: #E8F5F8;
    --teal-mist: #F2FAFB;

    --gray: #868788;
    --gray-600: #6E6F70;
    --gray-700: #565758;
    --gray-pale: #F5F6F6;
    --gray-line: #E4E6E7;

    --ink: #16252B;
    --ink-soft: #475158;
    --ink-faint: #8A949A;
    --white: #FFFFFF;

    --disp: 'Sora', -apple-system, sans-serif;
    --sans: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 2px 10px rgba(16, 64, 78, 0.06);
    --shadow-md: 0 14px 40px rgba(16, 64, 78, 0.10);
    --shadow-lg: 0 30px 70px rgba(16, 64, 78, 0.16);
    --r: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

::selection {
    background: var(--teal);
    color: #fff;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════ NAVBAR ═══════════════ */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 14px 40px;
    box-shadow: 0 6px 30px rgba(16, 64, 78, 0.07);
}

.nav-logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: height 0.4s;
}

.nav.scrolled .nav-logo img {
    height: 40px;
}

/* white pill behind logo so the colored mark always reads on the photo */
.nav-logo {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 22px rgba(8, 44, 54, 0.16);
    transition: all 0.4s;
}

.nav.scrolled .nav-logo {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.25s;
}

.nav.scrolled .nav-links a {
    color: var(--ink-soft);
}

.nav-links a:hover {
    color: var(--teal);
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav-links a:hover {
    background: var(--teal-mist);
}

.nav-cta {
    background: var(--teal) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 11px 22px !important;
    box-shadow: 0 8px 22px rgba(33, 155, 182, 0.38);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--teal-600) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(33, 155, 182, 0.5);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    padding: 11px;
    border-radius: 11px;
    cursor: pointer;
}

.nav-burger span {
    width: 22px;
    height: 2px;
    background: var(--teal-900);
    border-radius: 2px;
    transition: 0.3s;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 90px;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.08);
    transition: transform 8s ease;
}

.hero-img.ready {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 44, 54, 0.93) 0%, rgba(11, 61, 75, 0.82) 42%, rgba(15, 85, 103, 0.45) 100%),
        radial-gradient(120% 90% at 80% 110%, rgba(33, 155, 182, 0.35) 0%, transparent 55%);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 820px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px 8px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s ease both;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4FD1C5;
    box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.25);
    animation: blip 2s ease-in-out infinite;
}

.hero-h1 {
    font-family: var(--disp);
    font-size: clamp(42px, 6.2vw, 78px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.9s 0.22s ease both;
}

.hero-h1 .grad {
    background: linear-gradient(100deg, #5BC5DB, #BDE9F2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-body {
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.36s ease both;
}

.hero-body strong {
    color: #fff;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 12px 30px rgba(33, 155, 182, 0.45);
}

.btn-primary:hover {
    background: var(--teal-600);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(33, 155, 182, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 46px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.66s ease both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    stroke: #5BC5DB;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ═══════════════ MARQUEE / STATS ═══════════════ */
.stats {
    position: relative;
    margin-top: -64px;
    z-index: 5;
}

.stats-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.stat.vis {
    opacity: 1;
    transform: none;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 26%;
    height: 48%;
    width: 1px;
    background: var(--gray-line);
}

.stat-n {
    font-family: var(--disp);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    color: var(--teal-900);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stat-n .accent {
    color: var(--teal);
}

.stat-l {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.01em;
}

/* ═══════════════ SHARED ═══════════════ */
section {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.eyebrow.center {
    justify-content: center;
}

.eyebrow.light {
    color: #6FD3E6;
}

.eyebrow.light::before {
    background: #6FD3E6;
}

.h2 {
    font-family: var(--disp);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.h2.white {
    color: #fff;
}

.lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    font-weight: 300;
}

.lead.white {
    color: rgba(255, 255, 255, 0.72);
}

.fi {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fi.vis {
    opacity: 1;
    transform: none;
}

.fi.d1 {
    transition-delay: 0.08s;
}

.fi.d2 {
    transition-delay: 0.16s;
}

.fi.d3 {
    transition-delay: 0.24s;
}

.fi.d4 {
    transition-delay: 0.32s;
}

/* ═══════════════ USP STRIP ═══════════════ */
.usp {
    padding: 90px 0 30px;
}

.usp-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 56px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usp-card {
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-radius: var(--r);
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card:hover {
    border-color: rgba(33, 155, 182, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.usp-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s;
}

.usp-card:hover .usp-ico {
    background: var(--teal);
}

.usp-ico svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    transition: stroke 0.4s;
}

.usp-card:hover .usp-ico svg {
    stroke: #fff;
}

.usp-card h3 {
    font-family: var(--disp);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.usp-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    font-weight: 300;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    inset: -22px auto auto -22px;
    width: 130px;
    height: 130px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--teal), var(--teal-700));
    z-index: -1;
}

.about-badge {
    position: absolute;
    right: -24px;
    bottom: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--gray-line);
    border-radius: 18px;
    padding: 20px 26px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-badge-n {
    font-family: var(--disp);
    font-size: 38px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.about-badge-l {
    font-size: 12.5px;
    color: var(--gray-600);
    font-weight: 500;
    max-width: 120px;
    line-height: 1.35;
}

.vals {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.val {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.val-dot {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.val-dot svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2.2;
}

.val h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.val p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════ SERVICES ═══════════════ */
.services {
    padding: 110px 0;
    background: var(--teal-950);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 155, 182, 0.18) 0%, transparent 65%);
}

.services-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.srv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r);
    padding: 40px 34px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(33, 155, 182, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.srv-card:hover {
    border-color: rgba(33, 155, 182, 0.5);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.srv-card:hover::before {
    opacity: 1;
}

.srv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.srv-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-700));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(33, 155, 182, 0.4);
}

.srv-ico svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.7;
}

.srv-num {
    font-family: var(--disp);
    font-size: 56px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
}

.srv-card h3 {
    font-family: var(--disp);
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.srv-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.72;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ═══════════════ PROCESS ═══════════════ */
.process {
    padding: 110px 0;
    background: var(--gray-pale);
}

.process-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--teal) 0 8px, transparent 8px 16px);
    opacity: 0.35;
}

.step {
    text-align: center;
    padding: 0 8px;
}

.step-n {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 20px;
    background: var(--white);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--disp);
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s;
}

.step:hover .step-n {
    background: var(--teal);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(33, 155, 182, 0.4);
}

.step h4 {
    font-family: var(--disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 9px;
}

.step p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════ DUAL PATH ═══════════════ */
.dual {
    padding: 110px 0;
}

.dual-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
}

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

.path {
    border-radius: 26px;
    padding: 52px 46px;
    position: relative;
    overflow: hidden;
}

.path-clinic {
    background: linear-gradient(155deg, var(--teal-900), var(--teal-950));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.path-cand {
    background: linear-gradient(155deg, var(--teal), var(--teal-700));
}

.path-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.path-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.path-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.6;
}

.path-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.path h3 {
    font-family: var(--disp);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.path>p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 30px;
}

.path-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 38px;
}

.path-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.path-list li svg {
    width: 19px;
    height: 19px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.4;
    flex-shrink: 0;
    margin-top: 1px;
}

.path-cand .path-list li svg {
    stroke: #E8F9FD;
}

.btn-path {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--teal-900);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.3s;
}

.path-cand .btn-path {
    color: var(--teal-700);
}

.btn-path svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    transition: transform 0.3s;
}

.btn-path:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-path:hover svg {
    transform: translateX(4px);
}

.path-free {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
}

/* ═══════════════ QUOTE ═══════════════ */
.quote-sec {
    padding: 100px 0;
    background: var(--teal-mist);
    overflow: hidden;
}

.quote-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
}

.ceo-avatar {
    width: 168px;
    height: 168px;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--teal), var(--teal-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--disp);
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.ceo-avatar::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 36px;
    border: 1.5px dashed rgba(33, 155, 182, 0.4);
    z-index: -1;
}

.quote-mark {
    font-family: var(--disp);
    font-size: 80px;
    line-height: 0.5;
    color: var(--teal);
    opacity: 0.3;
    margin-bottom: 18px;
    display: block;
    height: 30px;
}

.quote-text blockquote {
    font-family: var(--disp);
    font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.quote-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.qm-bar {
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background: var(--teal);
}

.qm-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}

.qm-role {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 2px;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
    padding: 110px 0;
    background: var(--teal-950);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 155, 182, 0.16) 0%, transparent 65%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.contact-dets {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cdet {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cdet-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(33, 155, 182, 0.15);
    border: 1px solid rgba(33, 155, 182, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cdet-ico svg {
    width: 20px;
    height: 20px;
    stroke: #6FD3E6;
    fill: none;
    stroke-width: 1.7;
}

.cdet-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6FD3E6;
    margin-bottom: 4px;
}

.cdet-val,
.cdet-val a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.5;
}

.cdet-val a:hover {
    color: #6FD3E6;
}

.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 42px;
}

.form-title {
    font-family: var(--disp);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    font-weight: 300;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    margin-bottom: 16px;
}

.fl {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.fctrl {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    outline: none;
    transition: all 0.25s;
}

.fctrl:focus {
    border-color: var(--teal);
    background: rgba(33, 155, 182, 0.08);
    box-shadow: 0 0 0 4px rgba(33, 155, 182, 0.15);
}

.fctrl::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.fctrl {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236FD3E6' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

select.fctrl option {
    background: #0B3D4B;
    color: #fff;
}

textarea.fctrl {
    resize: vertical;
    min-height: 120px;
}

.f-submit {
    width: 100%;
    background: var(--teal);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 12px 28px rgba(33, 155, 182, 0.4);
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.f-submit:hover {
    background: var(--teal-600);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(33, 155, 182, 0.55);
}

.f-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 16px;
    font-weight: 300;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    background: #061F27;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.ft-logo {
    background: #fff;
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 22px;
}

.ft-logo img {
    height: 40px;
    display: block;
}

.ft-tag {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
    max-width: 320px;
}

.ft-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.ft-social {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.ft-social svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.8;
}

.ft-social:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
}

.ft-social:hover svg {
    stroke: #fff;
}

.ft-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6FD3E6;
    margin-bottom: 22px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ft-col ul a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s;
}

.ft-col ul a:hover {
    color: #6FD3E6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.fb-txt {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 300;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes blip {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(79, 209, 197, 0.05);
    }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {

    .usp-grid,
    .srv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 16px;
    }

    .steps::before {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .wrap {
        padding: 0 22px;
    }

    .nav,
    .nav.scrolled {
        padding: 14px 22px;
    }

    /* ── Full-screen overlay menu ── */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 104px 30px 38px;
        background: linear-gradient(165deg, #0B3D4B 0%, #082C36 100%);
        box-shadow: none;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.4s ease, visibility 0.5s;
        overflow-y: auto;
        z-index: 1001;
    }

    /* subtle dot mesh, same language as the hero */
    .nav-links::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 24px 24px;
        mask-image: linear-gradient(to bottom, #000, transparent 75%);
        -webkit-mask-image: linear-gradient(to bottom, #000, transparent 75%);
        pointer-events: none;
    }

    .nav.open .nav-links {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-links > li {
        width: 100%;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateX(26px);
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.open .nav-links > li {
        opacity: 1;
        transform: none;
    }

    .nav.open .nav-links > li:nth-child(1) { transition-delay: 0.10s; }
    .nav.open .nav-links > li:nth-child(2) { transition-delay: 0.16s; }
    .nav.open .nav-links > li:nth-child(3) { transition-delay: 0.22s; }
    .nav.open .nav-links > li:nth-child(4) { transition-delay: 0.28s; }
    .nav.open .nav-links > li:nth-child(5) { transition-delay: 0.34s; }
    .nav.open .nav-links > li:nth-child(6) { transition-delay: 0.40s; }
    .nav.open .nav-links > li:nth-child(7) { transition-delay: 0.46s; }

    .nav-links a {
        color: #fff !important;
        font-family: var(--disp);
        font-size: clamp(25px, 7.5vw, 34px);
        font-weight: 600;
        letter-spacing: -0.01em;
        padding: 18px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: transparent;
        color: #6FD3E6 !important;
    }

    /* trailing chevron on each item */
    .nav-links > li > a:not(.nav-cta)::after {
        content: '';
        width: 11px;
        height: 11px;
        border-top: 2px solid rgba(111, 211, 230, 0.7);
        border-right: 2px solid rgba(111, 211, 230, 0.7);
        transform: rotate(45deg);
        flex-shrink: 0;
    }

    /* CTA becomes a full-width button */
    .nav-links a.nav-cta {
        margin-top: 26px !important;
        justify-content: center;
        font-family: var(--sans);
        font-size: 16px !important;
        font-weight: 600 !important;
        padding: 18px 24px !important;
        border-radius: 14px !important;
        border-bottom: none;
        box-shadow: 0 14px 34px rgba(33, 155, 182, 0.45);
    }

    .nav-links a.nav-cta::after { display: none; }

    /* language switch as pills */
    .nav-lang {
        margin-top: 22px;
        display: flex;
        gap: 10px;
    }

    .nav-lang a {
        flex: 0 0 auto;
        font-size: 14px !important;
        font-weight: 600 !important;
        padding: 11px 20px !important;
        border-radius: 11px !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .nav-lang a::after { display: none !important; }

    .nav-lang a.is-active {
        background: var(--teal) !important;
        color: #fff !important;
        border-color: var(--teal) !important;
    }

    /* mobile-only contact block, pinned to the bottom */
    .nav-mobile-extra {
        display: block;
        margin-top: auto;
        padding-top: 30px;
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nav-mobile-contact a {
        font-family: var(--sans) !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.72) !important;
        padding: 0 !important;
        border-bottom: none !important;
        justify-content: flex-start;
        gap: 14px;
    }

    .nav-mobile-contact a::after { display: none !important; }

    .nav-mobile-contact svg {
        width: 19px;
        height: 19px;
        stroke: #6FD3E6;
        fill: none;
        stroke-width: 1.8;
        flex-shrink: 0;
    }

    /* keep logo + burger above the overlay */
    .nav-logo,
    .nav-burger {
        z-index: 1002;
    }

    .nav.open .nav-logo {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 6px 22px rgba(8, 44, 54, 0.25);
        padding: 9px 16px;
    }

    .nav-burger {
        display: flex;
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-burger span {
        transition: transform 0.35s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.2s ease;
        transform-origin: center;
    }

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

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

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

    .stats-card {
        grid-template-columns: 1fr 1fr;
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .usp-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .usp-grid,
    .srv-grid {
        grid-template-columns: 1fr;
    }

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

    .quote-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .ceo-avatar {
        margin: 0 auto;
    }

    .quote-meta {
        justify-content: center;
    }

    .frow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .path {
        padding: 40px 30px;
    }

    .form-card {
        padding: 30px 24px;
    }
}

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

    .stat::after {
        display: none !important;
    }

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

    .hero-btns .btn {
        flex: 1;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ═══════════════ ADDITIONS: SUBPAGES & FORMS ═══════════════ */

/* Skip transparent-nav flash on light pages */
.nav.nav--solid {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Language switch in nav */
.nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

/* mobile-only contact block – hidden on desktop */
.nav-mobile-extra {
    display: none;
}

.nav-lang a {
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 9px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 8px !important;
}

.nav.scrolled .nav-lang a,
.nav--solid .nav-lang a {
    color: var(--ink-faint) !important;
}

.nav-lang a.is-active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.16) !important;
}

.nav.scrolled .nav-lang a.is-active,
.nav--solid .nav-lang a.is-active {
    color: var(--teal) !important;
    background: var(--teal-mist) !important;
}

/* ── Compact page hero (legal pages) ── */
.page-hero {
    position: relative;
    padding: 180px 0 90px;
    background: linear-gradient(135deg, var(--teal-900), var(--teal-950));
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 155, 182, 0.28) 0%, transparent 65%);
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--disp);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 640px;
    font-weight: 300;
}

/* ── Legal / prose content ── */
.prose {
    padding: 80px 0 100px;
    background: var(--white);
}

.prose .wrap {
    max-width: 880px;
}

.prose h2 {
    font-family: var(--disp);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin: 44px 0 14px;
    letter-spacing: -0.01em;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-family: var(--disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin: 28px 0 8px;
}

.prose p,
.prose li {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--ink-soft);
    font-weight: 300;
}

.prose p {
    margin-bottom: 14px;
}

.prose ul {
    margin: 0 0 16px 0;
    padding-left: 22px;
}

.prose li {
    margin-bottom: 6px;
}

.prose a {
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(33, 155, 182, 0.3);
}

.prose a:hover {
    border-color: var(--teal);
}

.prose strong {
    color: var(--ink);
    font-weight: 600;
}

.prose .meta-card {
    background: var(--teal-mist);
    border: 1px solid var(--gray-line);
    border-radius: var(--r);
    padding: 26px 30px;
    margin-bottom: 30px;
}

.prose .meta-card p {
    margin-bottom: 4px;
}

/* ── Applicant: "who can apply" check list ── */
.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin-top: 36px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
    font-weight: 300;
}

.checklist li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: #fff;
    fill: none;
    stroke-width: 2.4;
    background: var(--teal);
    border-radius: 7px;
    padding: 3px;
    margin-top: 1px;
}

/* ── Form alerts ── */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 26px;
    font-size: 14.5px;
    line-height: 1.55;
}

.alert svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: none;
    stroke-width: 2;
    margin-top: 1px;
}

.alert-success {
    background: rgba(33, 155, 182, 0.12);
    border: 1px solid rgba(33, 155, 182, 0.4);
    color: #0B3D4B;
}

.alert-success svg {
    stroke: var(--teal);
}

.alert-error {
    background: rgba(214, 69, 69, 0.10);
    border: 1px solid rgba(214, 69, 69, 0.35);
    color: #9B2C2C;
}

.alert-error svg {
    stroke: #D64545;
}

/* Light form card variant (on light backgrounds) */
.form-card.light {
    background: var(--white);
    border: 1px solid var(--gray-line);
    box-shadow: var(--shadow-lg);
}

.form-card.light .form-title {
    color: var(--ink);
}

.form-card.light .form-sub {
    color: var(--gray-600);
}

.form-card.light .fl {
    color: var(--ink-soft);
}

.form-card.light .fctrl {
    background: var(--gray-pale);
    border: 1px solid var(--gray-line);
    color: var(--ink);
}

.form-card.light .fctrl::placeholder {
    color: var(--ink-faint);
}

.form-card.light .fctrl:focus {
    background: #fff;
    border-color: var(--teal);
}

.form-card.light select.fctrl {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23219BB6' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-card.light select.fctrl option {
    background: #fff;
    color: var(--ink);
}

.form-card.light .f-note {
    color: var(--ink-faint);
}

/* ── File upload ── */
.file-drop {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px dashed var(--gray-line);
    border-radius: 12px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.25s;
    background: var(--gray-pale);
}

.form-card:not(.light) .file-drop {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.file-drop:hover {
    border-color: var(--teal);
    background: var(--teal-mist);
}

.form-card:not(.light) .file-drop:hover {
    background: rgba(33, 155, 182, 0.10);
}

.file-drop input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-drop svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.file-drop-txt {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
}

.form-card:not(.light) .file-drop-txt {
    color: rgba(255, 255, 255, 0.7);
}

.file-drop-txt small {
    display: block;
    font-size: 11.5px;
    font-weight: 400;
    color: var(--ink-faint);
    margin-top: 2px;
}

/* ── Consent checkbox ── */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 6px 0 18px;
    cursor: pointer;
}

.consent input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--teal);
    flex-shrink: 0;
    cursor: pointer;
}

.consent span {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.form-card.light .consent span {
    color: var(--gray-600);
}

.consent a {
    color: var(--teal);
    text-decoration: none;
}

.form-card:not(.light) .consent a {
    color: #6FD3E6;
}

/* Two-column form section on wide applicant layout */
.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.apply-info .lead {
    margin-top: 18px;
}

@media (max-width: 1024px) {
    .apply-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

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

/* 4-column variant for benefit grids */
.usp-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .usp-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .usp-grid.cols-4 { grid-template-columns: 1fr; } }

/* 3-column variant for checklists */
.checklist.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .checklist.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .checklist.cols-3 { grid-template-columns: 1fr; } }
