/* ===== CSS VARIABLES ===== */
:root {
    --navy: #1F255E;
    --navy-dark: #141847;
    --navy-light: #2d3578;
    --gold: #E3A91A;
    --gold-light: #f0c040;
    --gold-dim: rgba(227, 169, 26, 0.15);
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --text: #111827;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --section-bg: #F8F9FF;
    --card-shadow: 0 4px 24px rgba(31, 37, 94, 0.10);
    --card-shadow-hover: 0 16px 48px rgba(31, 37, 94, 0.18);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 64px 0;
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(227, 169, 26, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 560px;
    line-height: 1.7;
}

.highlight {
    position: relative;
    display: inline-block;
    color: var(--navy);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(227, 169, 26, 0.35);
    z-index: -1;
    border-radius: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(31, 37, 94, 0.3);
}

.btn-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31, 37, 94, 0.4);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(227, 169, 26, 0.35);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 169, 26, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.btn i,
.btn svg {
    font-size: 14px;
}

/* ===== PAGE SYSTEM ===== */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(31, 37, 94, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo img {
    height: 38px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--section-bg);
}

.nav-link.active {
    font-weight: 600;
}

.nav-cta {
    margin-left: 8px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--section-bg);
    color: var(--navy);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1240 0%, #1F255E 45%, #2d3578 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(227, 169, 26, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.hero-left {}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(227, 169, 26, 0.15);
    border: 1px solid rgba(227, 169, 26, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {}

.stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-num span {
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-mockup-bg {
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-bg-2 {
    width: 520px;
    height: 520px;
    background: rgba(227, 169, 26, 0.04);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(227, 169, 26, 0.1);
    animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

.hero-logo-center {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.hero-logo-center img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    min-width: 170px;
    z-index: 4;
}

.hero-float-card:nth-child(2) {
    top: 5%;
    left: 0%;
    animation-delay: 0s;
}

.hero-float-card:nth-child(3) {
    top: 20%;
    right: -8%;
    animation-delay: 1.5s;
}

.hero-float-card:nth-child(4) {
    bottom: 30%;
    left: -10%;
    animation-delay: 3s;
}

.hero-float-card:nth-child(5) {
    bottom: 5%;
    right: 0%;
    animation-delay: 4.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.float-icon.navy {
    background: var(--navy);
    color: var(--gold);
}

.float-icon.gold {
    background: var(--gold);
    color: var(--navy);
}

.float-icon.green {
    background: #10B981;
    color: white;
}

.float-icon.blue {
    background: #3B82F6;
    color: white;
}

.float-text-title {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
}

.float-text-val {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--section-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.trust-bar-inner {
    text-align: center;
}

.trust-bar-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.trust-logo-item:hover {
    opacity: 0.75;
}

.trust-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    font-family: var(--font-display);
}

.trust-logo-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* ===== SERVICES ===== */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(31, 37, 94, 0.15);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--section-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
    color: var(--navy);
}

.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--gold);
}

.service-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 16px;
    transition: gap 0.3s;
}

.service-card:hover .service-link {
    gap: 10px;
}

/* ===== TECH STACK ===== */
.tech-stack {
    background: var(--navy);
    padding: 80px 0;
}

.tech-stack .section-title {
    color: white;
}

.tech-stack .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tech-category {}

.tech-cat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.tech-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.tech-pill:hover {
    background: rgba(227, 169, 26, 0.15);
    border-color: rgba(227, 169, 26, 0.3);
    color: white;
}

.tech-pill i {
    color: var(--gold);
    font-size: 12px;
}

/* ===== CASE STUDIES ===== */
.case-studies {
    background: var(--section-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.case-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.case-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-body {
    padding: 28px 28px 32px;
}

.case-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.case-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.case-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

.case-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.case-metric {
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-metric-val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
}

.case-metric-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== WHY US ===== */
.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-feature {
    padding: 24px;
    background: var(--section-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-feature:hover {
    border-color: rgba(31, 37, 94, 0.2);
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 14px;
}

.why-feature-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.why-feature-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.why-visual {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3578 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(227, 169, 26, 0.1);
    border-radius: 50%;
}

.why-visual-logo {
    margin: 0 auto 24px;
}

.why-visual-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: auto;
}

.why-visual-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.why-visual-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 32px;
}

.why-stats-row {
    display: flex;
    gap: 0;
}

.why-stat {
    flex: 1;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-stat+.why-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 16px;
}

.why-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.why-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PROCESS ===== */
.process {
    background: var(--section-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
    z-index: 0;
}

.process-step {
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .process-num {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    transform: scale(1.08);
}

.process-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--navy);
}

.process-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.process-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testi-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--section-bg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 80px;
    line-height: 1;
    color: rgba(31, 37, 94, 0.06);
    font-family: Georgia, serif;
}

.testi-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(31, 37, 94, 0.15);
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.testi-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.testi-role {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #0d1240 0%, var(--navy) 60%, #2d3578 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(227, 169, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
}

.final-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(227, 169, 26, 0.15);
    border: 1px solid rgba(227, 169, 26, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
}

.final-cta-title span {
    color: var(--gold);
}

.final-cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #0A0F35;
    padding: 72px 0 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 36px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SERVICES PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, #0d1240 0%, var(--navy) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-hero-title span {
    color: var(--gold);
}

.page-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.service-full-card {
    display: flex;
    gap: 24px;
    padding: 36px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-full-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(31, 37, 94, 0.15);
}

.service-full-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--section-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--navy);
    transition: var(--transition);
}

.service-full-card:hover .service-full-icon {
    background: var(--navy);
    color: var(--gold);
}

.service-full-content {}

.service-full-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.service-full-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-full-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-pill {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--section-bg);
    color: var(--text-gray);
    border: 1px solid var(--border);
}

/* ===== CASE STUDIES PAGE ===== */
.cases-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.case-full-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.case-full-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
}

.case-full-img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-full-body {
    padding: 36px;
}

.case-full-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.case-full-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.25;
}

.case-full-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-full-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
    background: var(--section-bg);
    border-radius: 12px;
    margin-bottom: 24px;
}

.case-result-item {
    text-align: center;
}

.case-result-val {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}

.case-result-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}

.case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.case-tech-pill {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(31, 37, 94, 0.06);
    color: var(--navy);
}

/* ===== ABOUT PAGE ===== */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 48px;
}

.about-visual {
    background: linear-gradient(135deg, var(--navy), #2d3578);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-visual-logo img {
    width: 100px;
    margin: 0 auto 24px;
}

.about-visual-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-visual-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.about-visual-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-stat {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat-val {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.about-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.about-story-text {}

.about-story-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.value-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--section-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--navy);
}

.value-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.value-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.team-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.team-body {
    padding: 16px 20px 24px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    margin-top: 0px;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.contact-info-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--navy);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-item-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.contact-item-val {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-top: 2px;
}

.contact-form-wrap {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--section-bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--navy);
    background: white;
    box-shadow: 0 0 0 3px rgba(31, 37, 94, 0.08);
}

.form-textarea {
    min-height: 120px;
}

.form-submit {
    width: 100%;
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: none;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .section {
        padding: 72px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .cases-full-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .trust-logos {
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .case-full-results {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-visual-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll progress bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    width: 0%;
    transition: width 0.1s linear;
}