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

html {
    scroll-behavior: smooth;
}

:root {
    --bg-main: #080C16;
    --bg-surface: #0C1020;
    --bg-elevated: #101628;
    --bg-simple: #00194d;
    --primary: #487CFF;
    --primary-light: #7BAFFF;
    --text-main: #F2F5FA;
    --text-soft: #EBEDF0;
    --text-muted: #8A9BB8;
    --text-dark: #5A6A85;
    --accent-warm: #FAC496;
    --accent-purple: #C593DB;
    --accent-teal: #9FEED9;
    --accent-sky: #77C9EB;
    --accent-indigo: #5B7CE0;
    --nav-h: 72px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal), var(--accent-warm));
    width: 0;
    z-index: 9999;
    box-shadow: 0 0 12px rgba(72, 124, 255, 0.6);
}

/*  NAVBAR  */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: rgba(8, 12, 22, 0.65);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(72, 124, 255, 0.1);
    transition: background 0.4s;
}

#navbar.solid {
    background: rgba(8, 12, 22, 0.97);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geist', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(72, 124, 255, 0.35);
}

.nav-logo-text {
    font-family: 'Geist', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.nav-logo-text em {
    font-style: normal;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(72, 124, 255, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(72, 124, 255, 0.45);
    color: #fff;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(72, 124, 255, 0.12);
    list-style: none;
    padding: 24px 40px 32px;
    flex-direction: column;
    gap: 0;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.nav-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-mobile-menu li a {
    display: block;
    padding: 14px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(72, 124, 255, 0.07);
    transition: color 0.2s;
}

.nav-mobile-menu li a:hover {
    color: var(--text-main);
}

.nav-mobile-cta {
    display: inline-flex;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 800;
    border-radius: 6px;
    letter-spacing: 0.08em;
}

/*  FOOTER  */
footer {
    background: linear-gradient(transparent 0% 0%, #0C1020ee 0% 100%), url('/images/gamma/3.png');
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid rgba(72, 124, 255, 0.1);
    padding: 88px 80px 44px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 72px;
}

.f-brand-name {
    font-family: 'Geist', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 6px;
}

.f-brand-name span {
    color: var(--primary);
}

.f-tagline {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.f-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 320px;
    margin-bottom: 28px;
}

.f-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.f-badge {
    padding: 4px 12px;
    border: 1px solid rgba(72, 124, 255, 0.22);
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.f-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.f-link:hover {
    color: var(--text-muted);
}

.f-col h6 {
    font-family: 'Geist', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.f-col ul {
    list-style: none;
}

.f-col li {
    margin-bottom: 10px;
}

.f-col a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.f-col a:hover {
    color: var(--text-main);
}

.footer-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(72, 124, 255, 0.08);
    font-size: 12.5px;
    color: var(--text-dark);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-main);
}

/*  SHARED SECTION  */
.section {
    padding: 120px 80px;
    position: relative;
}

.section-inner {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.s-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border: 1px solid rgba(72, 124, 255, 0.28);
    border-radius: 100px;
    background: rgba(72, 124, 255, 0.05);
    font-family: 'Geist', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 22px;
}

.s-title {
    font-family: 'Geist', sans-serif;
    font-size: clamp(34px, 3.8vw, 56px);
    font-weight: 800;
    letter-spacing: -0.038em;
    line-height: 1.0;
    color: var(--text-main);
    margin-bottom: 18px;
}

.s-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 580px;
}

.s-grad {
    background: linear-gradient(120deg, var(--primary), var(--accent-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--accent-teal) 70%, transparent);
    box-shadow: 0 0 18px rgba(72, 124, 255, 0.35);
}

.sep {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(72, 124, 255, 0.18) 30%, rgba(149, 238, 217, 0.12) 70%, transparent 95%);
}

/*  BUTTONS  */
.btn-p {
    padding: 13px 28px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 24px rgba(72, 124, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(72, 124, 255, 0.5);
    color: #fff;
}

.btn-g {
    padding: 13px 28px;
    background: transparent;
    color: var(--text-soft);
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid rgba(242, 245, 250, 0.16);
    border-radius: 8px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-g:hover {
    border-color: rgba(72, 124, 255, 0.45);
    color: var(--text-main);
    background: rgba(72, 124, 255, 0.06);
}

/*  PAGE HERO  */
.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nav-h) + 80px) 80px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(transparent 0% 0%, var(--bg-main) 0% 100%), url('/images/gamma/bg.png');
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 12, 22, 0.97) 0%, rgba(8, 12, 22, 0.6) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 124, 255, 0.4), transparent);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    width: 100%;
}

.page-hero .s-tag {
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: 'Geist', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.0;
    color: var(--text-main);
    max-width: 900px;
    margin-bottom: 24px;
}

.page-hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 600px;
}

/*  FLOATING LABEL FORM (ef-)  */
.ef-wrap {
    position: relative;
    padding: 40px 40px 36px;
    background: var(--bg-elevated);
    border: 1px solid rgba(72, 124, 255, 0.18);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.4s;
    max-width: 760px;
    margin: 0 auto;
}

.ef-wrap:hover {
    border-color: rgba(72, 124, 255, 0.38);
}

.ef-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-sky), var(--accent-teal), var(--accent-purple), var(--accent-warm));
    background-size: 200% 100%;
    animation: border-slide 4s linear infinite;
}

@keyframes border-slide {
    0% {
        background-position: 0% 0%;
    }

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

.ef-wrap::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(72, 124, 255, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: ef-aurora 7s ease-in-out infinite alternate;
    pointer-events: none;
}

.ef-wrap::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(149, 238, 217, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    animation: ef-aurora 9s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes ef-aurora {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(20px, -20px);
    }

    100% {
        transform: scale(0.9) translate(-10px, 15px);
    }
}

.ef-form-title {
    position: relative;
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 6px;
    z-index: 1;
}

.ef-form-title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--primary), var(--accent-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ef-form-sub {
    position: relative;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.6;
    z-index: 1;
}

#enquiry-form,
.page-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

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

.ef-field {
    position: relative;
    margin-bottom: 20px;
}

.ef-field input,
.ef-field select,
.ef-field textarea {
    width: 100%;
    padding: 18px 16px 8px;
    background: rgba(8, 12, 22, 0.6);
    border: 1px solid rgba(72, 124, 255, 0.14);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    resize: vertical;
    appearance: none;
}

.ef-field select option {
    background: var(--bg-elevated);
    color: var(--text-main);
}

.ef-field textarea {
    min-height: 100px;
    padding-top: 22px;
}

.ef-field input::placeholder,
.ef-field textarea::placeholder {
    color: transparent;
}

.ef-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    pointer-events: none;
    transition: top 0.22s cubic-bezier(.4, 0, .2, 1), transform 0.22s cubic-bezier(.4, 0, .2, 1), font-size 0.22s cubic-bezier(.4, 0, .2, 1), color 0.22s cubic-bezier(.4, 0, .2, 1), letter-spacing 0.22s;
    letter-spacing: 0.01em;
}

.ef-field.ta label {
    top: 28px;
    transform: none;
}

.ef-field input:focus+label,
.ef-field input:not(:placeholder-shown)+label,
.ef-field select:focus+label,
.ef-field textarea:focus+label,
.ef-field textarea:not(:placeholder-shown)+label {
    top: 10px;
    transform: translateY(0);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ef-field.ta input:focus+label,
.ef-field.ta textarea:focus+label,
.ef-field.ta textarea:not(:placeholder-shown)+label {
    top: 8px;
}

.ef-field.c-blue input:focus,
.ef-field.c-blue select:focus,
.ef-field.c-blue textarea:focus {
    border-color: rgba(72, 124, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(72, 124, 255, 0.1);
    background: rgba(72, 124, 255, 0.04);
}

.ef-field.c-blue input:focus+label,
.ef-field.c-blue select:focus+label,
.ef-field.c-blue textarea:focus+label {
    color: var(--primary-light);
}

.ef-field.c-sky input:focus,
.ef-field.c-sky select:focus,
.ef-field.c-sky textarea:focus {
    border-color: rgba(119, 201, 235, 0.55);
    box-shadow: 0 0 0 3px rgba(119, 201, 235, 0.1);
    background: rgba(119, 201, 235, 0.04);
}

.ef-field.c-sky input:focus+label,
.ef-field.c-sky select:focus+label,
.ef-field.c-sky textarea:focus+label {
    color: var(--accent-sky);
}

.ef-field.c-teal input:focus,
.ef-field.c-teal select:focus,
.ef-field.c-teal textarea:focus {
    border-color: rgba(149, 238, 217, 0.55);
    box-shadow: 0 0 0 3px rgba(149, 238, 217, 0.1);
    background: rgba(149, 238, 217, 0.04);
}

.ef-field.c-teal input:focus+label,
.ef-field.c-teal select:focus+label,
.ef-field.c-teal textarea:focus+label {
    color: var(--accent-teal);
}

.ef-field.c-warm input:focus,
.ef-field.c-warm select:focus,
.ef-field.c-warm textarea:focus {
    border-color: rgba(250, 196, 150, 0.55);
    box-shadow: 0 0 0 3px rgba(250, 196, 150, 0.1);
    background: rgba(250, 196, 150, 0.04);
}

.ef-field.c-warm input:focus+label,
.ef-field.c-warm select:focus+label,
.ef-field.c-warm textarea:focus+label {
    color: var(--accent-warm);
}

.ef-field.c-purple input:focus,
.ef-field.c-purple select:focus,
.ef-field.c-purple textarea:focus {
    border-color: rgba(197, 147, 219, 0.55);
    box-shadow: 0 0 0 3px rgba(197, 147, 219, 0.1);
    background: rgba(197, 147, 219, 0.04);
}

.ef-field.c-purple input:focus+label,
.ef-field.c-purple select:focus+label,
.ef-field.c-purple textarea:focus+label {
    color: var(--accent-purple);
}

.ef-submit {
    position: relative;
    margin-top: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent-indigo));
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(72, 124, 255, 0.3);
}

.ef-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.ef-submit:hover::before {
    left: 160%;
}

.ef-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(72, 124, 255, 0.45);
}

.ef-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 124, 255, 0.2), transparent);
    margin: 24px 0 20px;
}

.ef-privacy {
    font-size: 11px;
    color: var(--text-dark);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.ef-privacy span {
    color: var(--primary-light);
}

/*  FORM SECTION WRAPPER  */
.form-section {
    padding: 100px 80px 120px;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(72, 124, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.form-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.form-section-head h2 {
    font-family: 'Geist', sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--text-main);
    margin-bottom: 14px;
}

.form-section-head p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/*  CARD GRIDS  */
.card-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(72, 124, 255, 0.1);
    border: 1px solid rgba(72, 124, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.card-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(72, 124, 255, 0.1);
    border: 1px solid rgba(72, 124, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.card-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(72, 124, 255, 0.08);
    border: 1px solid rgba(72, 124, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 56px;
}

.inner-card {
    background: var(--bg-elevated);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.inner-card:hover {
    background: rgba(8, 12, 22, 0.9);
}

.inner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-c, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.card-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: block;
}

.card-t {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.25;
}

.card-d {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-dark);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    text-decoration: none;
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 10px;
}

/*  PROCESS FLOW  */
.process-flow {
    display: grid;
    grid-template-columns: repeat(var(--steps, 5), 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
}

.process-flow::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 10%, var(--accent-sky) 40%, var(--accent-teal) 70%, var(--primary) 90%, transparent);
    z-index: 0;
}

.pstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.pnode {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: var(--bg-elevated);
    border: 1.5px solid rgba(72, 124, 255, 0.3);
    margin-bottom: 28px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.pnode:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(72, 124, 255, 0.4);
    transform: scale(1.08) translateY(-4px);
}

.pnode-n {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    font-family: 'Geist', sans-serif;
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(72, 124, 255, 0.5);
}

.pstep-t {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.pstep-d {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--text-dark);
}

/*  PRINCIPLE CARDS  */
.principle-card {
    background: var(--bg-elevated);
    padding: 44px 36px;
    border: 1px solid rgba(72, 124, 255, 0.08);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.principle-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--card-c, var(--primary));
    transition: width 0.3s;
}

.principle-card:hover {
    border-color: rgba(72, 124, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.principle-card:hover::before {
    width: 4px;
}

.pc-num {
    font-family: 'Geist', sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: rgba(72, 124, 255, 0.12);
    margin-bottom: -8px;
    line-height: 1;
}

.pc-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.pc-body {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-muted);
}

/*  GSAP REVEAL HELPERS  */
.gsap-fade {
    opacity: 0;
}

.gsap-up {
    opacity: 0;
    transform: translateY(30px);
}

/*  RESPONSIVE  */
@media (max-width: 992px) {
    #navbar {
        padding: 0 28px;
    }

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

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: flex;
    }

    .section {
        padding: 80px 28px;
    }

    .page-hero {
        padding: calc(var(--nav-h) + 48px) 28px 60px;
    }

    .card-3,
    .card-4 {
        grid-template-columns: 1fr;
    }

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

    .process-flow {
        grid-template-columns: 1fr 1fr;
    }

    .process-flow::after {
        display: none;
    }

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

    .ef-wrap {
        padding: 28px 24px;
    }

    footer {
        padding: 60px 28px 36px;
    }

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

    .form-section {
        padding: 60px 28px 80px;
    }
}

@media (max-width: 768px) {
    .process-flow {
        grid-template-columns: 1fr;
    }

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

    .page-hero-title {
        font-size: clamp(34px, 8vw, 50px);
    }

    .s-title {
        font-size: clamp(28px, 7vw, 44px);
    }
}

.gsap-up {
    opacity: 1 !important;
    transform: none;
}