@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

/* ═══ VARIABLES ═══ */
:root {
    --blue: #2246d9;
    --blue-dk: #1a35aa;
    --blue-glow: rgba(34, 70, 217, 0.2);
    --brand-amber: #f59e0b;
    --brand-gold: #fbbf24;
    --brand-amber-soft: rgba(245, 158, 11, 0.14);
    --navy: #06102b;
    --navy2: #0d1b3e;
    --cyan: #22d3ee;
    --white: #ffffff;
    --paper: #f0f4ff;
    --ink: #0f172a;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.1);
    --r: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --sh: 0 4px 24px rgba(0, 87, 255, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
    --sh-lg: 0 16px 56px rgba(0, 87, 255, 0.14), 0 4px 16px rgba(0, 0, 0, 0.08);
    --transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══ RESET ═══ */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 45%, #fff4dc 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}

/* Shared section spacing */
.section-pad {
    padding: 92px 0;
}

/* ═══ SCROLL REVEAL ═══ */
[data-sr] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-sr].visible {
    opacity: 1;
    transform: translateY(0);
}
[data-sr="left"] {
    transform: translateX(-32px);
}
[data-sr="right"] {
    transform: translateX(32px);
}
[data-sr="left"].visible,
[data-sr="right"].visible {
    transform: translateX(0);
}
[data-sr="scale"] {
    transform: scale(0.9);
}
[data-sr="scale"].visible {
    transform: scale(1);
}

/* ═══ NAVBAR ═══ */
.tit-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    padding: 0;
}
.tit-nav .container {
    max-width: 1200px;
}
.tit-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.tit-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
}
.tit-logo {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.62rem;
    transition: var(--transition);
}
.tit-logo:hover {
    background: rgba(59, 130, 246, 0.11);
    border-color: rgba(59, 130, 246, 0.32);
}
.tit-logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}
.tit-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tit-nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.76);
    transition: color 0.2s;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}
.tit-nav-links a:hover,
.tit-nav-links a.active {
    color: #0f172a;
    border-bottom-color: var(--blue);
}
.tit-nav-cta a {
    padding: 0.6rem 1.5rem;
    background: var(--blue);
    color: #fff;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    border: 2px solid var(--blue);
    transition: var(--transition);
    display: inline-block;
}
.tit-nav-cta a:hover {
    background: var(--blue-dk);
    border-color: var(--blue-dk);
    transform: translateY(-1px);
}

/* Hamburger */
.tit-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.tit-ham span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}
.tit-ham.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.tit-ham.open span:nth-child(2) {
    opacity: 0;
}
.tit-ham.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.tit-mob-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(6, 16, 43, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
}
.tit-mob-menu.open {
    display: flex;
}
.tit-mob-menu a {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}
.tit-mob-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.tit-mob-menu .tit-mob-cta {
    margin: 1rem 2rem 0;
    padding: 0.75rem 1.5rem;
    background: var(--blue);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    text-align: center;
    border: none;
}

/* ═══ BUTTONS ═══ */
.btn-primary-tit,
a.btn-primary-tit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.78rem 1.85rem;
    background: var(--blue);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid var(--blue);
    transition: var(--transition);
}
.btn-primary-tit:hover {
    background: var(--blue-dk);
    border-color: var(--blue-dk);
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(34, 70, 217, 0.32),
        0 0 0 2px var(--brand-amber-soft);
    color: #fff;
}

.btn-ghost-tit,
a.btn-ghost-tit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.78rem 1.85rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}
.btn-ghost-tit:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.btn-white-tit,
a.btn-white-tit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.82rem 2rem;
    background: #fff;
    color: var(--navy);
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid #fff;
    transition: var(--transition);
}
.btn-white-tit:hover {
    background: var(--paper);
    transform: translateY(-2px);
    color: var(--navy);
}

.btn-outline-white-tit,
a.btn-outline-white-tit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.82rem 2rem;
    background: transparent;
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}
.btn-outline-white-tit:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ═══ TYPOGRAPHY ═══ */
.tit-kicker {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-amber);
    margin-bottom: 0.75rem;
}
.tit-kicker-w {
    color: rgba(255, 255, 255, 0.55);
}
.tit-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.tit-h2 .accent {
    color: var(--brand-amber);
}
.tit-h2-w {
    color: #fff;
}
.tit-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 0;
}
.tit-sub-w {
    color: rgba(255, 255, 255, 0.55);
}
.tit-sub-center {
    margin-left: auto;
    margin-right: auto;
}

/* ═══ SECTIONS ═══ */
.tit-section {
    padding: 100px 0;
}
.tit-section-paper {
    background: var(--paper);
}
.tit-section-white {
    background: #fff;
}
.tit-section-dark {
    background: var(--navy);
}

/* ═══ HERO ═══ */
.tit-hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}
.tit-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(34, 70, 217, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 70, 217, 0.065) 1px, transparent 1px);
    background-size: 52px 52px;
    animation: gridMove 18s linear infinite;
}
@keyframes gridMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 52px 52px;
    }
}
.tit-hero-glow {
    position: absolute;
    width: 750px;
    height: 750px;
    top: -250px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 70, 217, 0.23),
        transparent 68%
    );
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
}
.tit-hero-glow2 {
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: 50px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.1),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}
@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}
.tit-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 64px 0 0;
}
.tit-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.75rem;
    background: rgba(0, 87, 255, 0.15);
    border: 1px solid rgba(0, 87, 255, 0.3);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: 0.04em;
    animation: fadeDown 0.8s ease both;
}
.tit-pulse {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
    }
}
.tit-hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
}
.tit-hero-h1 .cycle-wrap {
    display: block;
    color: #60a5fa;
    min-height: 1.15em;
    overflow: hidden;
    position: relative;
}
.tit-cycle {
    display: inline-block;
    animation: cycleFade 0.4s ease both;
}
@keyframes cycleFade {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tit-hero-h1 .grow {
    color: #fff;
}
.tit-hero-p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 2.25rem;
    animation: fadeUp 0.8s 0.2s ease both;
}
.tit-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.tit-hero-visual {
    position: relative;
    width: min(640px, 100%);
    margin-left: auto;
    animation: heroFloat 5.2s ease-in-out infinite;
    overflow: visible;
}

.hero-overlay {
    position: absolute;
    right: 45%;
    width: 50%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-image {
    position: relative;
    transform: scale(1.2);
    transform-origin: center right;
    z-index: 2;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    filter: blur(100px);
    right: 10%;
    top: 30%;
    z-index: -1;
    pointer-events: none;
}

.tit-hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 48px rgba(2, 12, 36, 0.42));
    position: relative;
    z-index: 2;
}

.tit-hero-float-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.68rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #dbeafe;
    background: rgba(8, 26, 66, 0.62);
    border: 1px solid rgba(147, 197, 253, 0.24);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(2, 8, 26, 0.22);
    z-index: 4;
}

.tit-hero-float-card i {
    color: var(--brand-gold);
}

.tit-hero-float-card.card-a {
    top: 16%;
    left: -6%;
    animation: cardFloatA 3.6s ease-in-out infinite;
}

.tit-hero-float-card.card-b {
    top: 8%;
    right: -7%;
    animation: cardFloatB 4.2s ease-in-out infinite;
}

.tit-hero-float-card.card-c {
    bottom: 10%;
    left: -8%;
    animation: cardFloatC 4.8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes cardFloatA {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes cardFloatB {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}

@keyframes cardFloatC {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Floating stat cards */
.tit-hero-cards {
    position: relative;
    height: 420px;
    margin-top: 20px;
}
.tit-hcard {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.6rem;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    min-width: 200px;
    transition: transform 0.3s;
}
.tit-hcard:hover {
    transform: scale(1.04) !important;
}
.tit-hcard-1 {
    top: 8%;
    right: 0%;
    animation: floatA 4s ease-in-out infinite;
}
.tit-hcard-2 {
    top: 42%;
    left: 2%;
    animation: floatB 4.5s 1s ease-in-out infinite;
}
.tit-hcard-3 {
    bottom: 4%;
    right: 12%;
    animation: floatA 5s 2s ease-in-out infinite;
}
@keyframes floatA {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes floatB {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}
.tit-hcard-emoji {
    font-size: 2rem;
}
.tit-hcard-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.tit-hcard-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Wave */
.tit-wave {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.tit-wave svg {
    width: 100%;
    display: block;
}

/* ═══ LOGO MARQUEE ═══ */
.tit-marquee-wrap {
    padding: 40px 0;
    background: var(--paper);
    overflow: hidden;
}
.tit-marquee-label {
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 1.75rem;
}
.tit-marquee-outer {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
}
.tit-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marqScroll 28s linear infinite;
}
.tit-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marqScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.tit-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 64px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    transition: all 0.2s;
}
.tit-logo-card:hover {
    box-shadow: var(--sh);
    border-color: rgba(0, 87, 255, 0.25);
}
.tit-logo-card img {
    max-height: 28px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all 0.2s;
}
.tit-logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ═══ STATS ═══ */
.tit-stats-row {
    padding: 64px 0;
}
.tit-stat-box {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
}
.tit-stat-box:hover {
    box-shadow: var(--sh-lg);
    border-color: rgba(0, 87, 255, 0.2);
    transform: translateY(-3px);
}
.tit-stat-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.tit-stat-lbl {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
}

/* ═══ SERVICE CARDS ═══ */
.tit-svc-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.tit-svc-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}
.tit-svc-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
    border-color: rgba(0, 87, 255, 0.15);
}
.tit-svc-card:hover::before {
    transform: scaleY(1);
}
.tit-svc-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.tit-svc-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.6rem;
}
.tit-svc-desc {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 1.25rem;
}
.tit-svc-link {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--blue);
    transition: color 0.2s;
}
.tit-svc-link:hover {
    color: var(--blue-dk);
}

/* ═══ PROCESS STEPS ═══ */
.tit-step {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding 0.2s;
}
.tit-step:first-of-type {
    border-top: 1px solid var(--border);
}
.tit-step:hover {
    padding-left: 0.4rem;
}
.tit-step-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.tit-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.tit-step-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ═══ CTA SECTION ═══ */
.tit-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--navy2);
}
.tit-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% 50%,
        rgba(0, 87, 255, 0.2),
        transparent
    );
    animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%,
    100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}
.tit-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.tit-cta-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 0.5rem 0 1rem;
}
.tit-cta-h2 .accent {
    color: #60a5fa;
}
.tit-cta-p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}
.tit-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ PAGE HERO ═══ */
.tit-page-hero {
    padding: 140px 0 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.tit-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 70% at 20% 50%,
            rgba(34, 70, 217, 0.2),
            transparent
        ),
        radial-gradient(
            ellipse 42% 50% at 80% 20%,
            rgba(245, 158, 11, 0.17),
            transparent
        ),
        linear-gradient(160deg, var(--navy), #0d2252 100%);
}
.tit-page-hero-inner {
    position: relative;
    z-index: 1;
}
.tit-page-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0.5rem 0 1.25rem;
}
.tit-page-h1 .accent {
    color: var(--brand-gold);
}
.tit-page-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ═══ ABOUT PAGE ═══ */
.tit-about-stat {
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
    color: #fff;
    text-align: center;
    transition: var(--transition);
}
.tit-about-stat:hover {
    transform: translateY(-3px) scale(1.02);
}
.tit-about-stat-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.tit-about-stat-lbl {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 600;
}
.tit-about-story-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(12, 27, 61, 0.16);
    border: 1px solid #d9e4f7;
    background: #fff;
}
.tit-about-story-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.tit-value-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.tit-value-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-3px);
}
.tit-value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.tit-value-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.tit-value-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Timeline */
.tit-timeline {
    position: relative;
    max-width: 860px;
    margin: 3.5rem auto 0;
    padding: 0 1rem;
}
.tit-tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), rgba(0, 87, 255, 0.1));
    transform: translateX(-50%);
}
.tit-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}
.tit-tl-item.right {
    flex-direction: row-reverse;
}
.tit-tl-item.right .tit-tl-card {
    text-align: right;
}
.tit-tl-dot {
    position: absolute;
    left: 50%;
    top: 0.6rem;
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.2);
    transform: translateX(-50%);
    z-index: 2;
}
.tit-tl-card {
    width: calc(50% - 2.5rem);
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tit-tl-card:hover {
    box-shadow: var(--sh);
}
.tit-tl-year {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.tit-tl-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.tit-tl-desc {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* About Team */
.tit-team-card {
    border: 1px solid #dfe8f5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}
.tit-team-card:hover {
    transform: translateY(-4px);
    border-color: #c9daf9;
    box-shadow: 0 16px 34px rgba(10, 28, 63, 0.14);
}
.tit-team-photo {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.tit-team-body {
    padding: 0.95rem 0.9rem 1rem;
}
.tit-team-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.2rem;
}
.tit-team-role {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tit-team-bio {
    margin: 0 0 0.7rem;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #64748b;
}
.tit-team-socials {
    display: flex;
    gap: 0.38rem;
}
.tit-team-socials a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #d8e4f8;
    background: #f8fbff;
    color: #1e40af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}
.tit-team-socials a:hover {
    background: #1e40af;
    border-color: #1e40af;
    color: #fff;
}

/* ═══ SERVICES PAGE ═══ */
.tit-svc-full {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2.25rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.tit-svc-full:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-3px);
}
.tit-svc-full-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.tit-svc-full-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tit-svc-full-tag {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}
.tit-svc-full-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}
.tit-svc-full-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.tit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.tit-tag {
    padding: 0.32rem 0.85rem;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 700;
    border: 1.5px solid;
    transition: var(--transition);
    cursor: default;
}
.tit-tag:hover {
    opacity: 0.75;
}

/* Tech filter */
.tit-filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0 1.5rem;
}
.tit-filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
}
.tit-filter-btn:hover,
.tit-filter-btn.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.tit-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1rem;
}
.tit-tech-chip {
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1.5px solid;
    background: #fff;
    transition: var(--transition);
    cursor: default;
}
.tit-tech-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ═══ CAREERS PAGE ═══ */
.tit-career-card {
    background: #fff;
    border: 1px solid #dbe6f7;
    border-radius: 16px;
    padding: 1.15rem 1rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.tit-career-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(10, 28, 63, 0.12);
}
.tit-career-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}
.tit-career-title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}
.tit-career-status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.22rem 0.58rem;
    border-radius: 999px;
    border: 1px solid transparent;
    flex-shrink: 0;
}
.tit-career-status.is-open {
    color: #047857;
    background: #ecfdf5;
    border-color: #a7f3d0;
}
.tit-career-status.is-closed {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}
.tit-career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    font-size: 0.8rem;
    color: #475569;
}
.tit-career-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.tit-career-desc {
    margin: 0;
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.68;
}
.tit-career-card-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.tit-career-deadline {
    font-size: 0.76rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}
.tit-career-section-title {
    margin: 0 0 0.6rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
}
.tit-career-side-card {
    border: 1px solid #dbe6f7;
    border-radius: 16px;
    background: #fff;
    padding: 1rem;
    position: sticky;
    top: 96px;
}
.tit-career-side-card h5 {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}
.tit-career-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tit-career-side-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.58rem 0;
    border-bottom: 1px dashed #d9e5f8;
}
.tit-career-side-list li:last-child {
    border-bottom: 0;
}
.tit-career-side-list span {
    font-size: 0.8rem;
    color: #64748b;
}
.tit-career-side-list strong {
    font-size: 0.82rem;
    color: #0f172a;
    font-weight: 700;
    text-align: right;
}
.tit-career-side-note {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 0.8rem;
}
.tit-breadcrumb-soft {
    font-size: 0.82rem;
    color: #64748b;
}
.tit-breadcrumb-soft a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
}
.tit-breadcrumb-soft span:last-child {
    color: #0f172a;
    font-weight: 700;
}
.tit-svc-detail-card {
    border: 1px solid #dbe6f7;
    border-radius: 16px;
    background: #fff;
    padding: 1.35rem 1.2rem;
}
.tit-svc-mini-card {
    border: 1px solid #e2ebf8;
    border-radius: 14px;
    background: #f8fbff;
    padding: 1rem 0.95rem;
}
.tit-svc-mini-card h6 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}
.tit-svc-mini-card p {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.6;
    color: #64748b;
}
.tit-svc-side-card {
    border: 1px solid #dbe6f7;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 36px rgba(10, 28, 63, 0.12);
}
.tit-svc-side-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.tit-svc-side-content {
    padding: 1rem;
}
.tit-svc-side-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #0057ff16;
    color: #0057ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}
.tit-svc-side-content h5 {
    margin: 0 0 0.3rem;
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
}
.tit-svc-side-content p {
    margin: 0 0 0.9rem;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ═══ CONTACT PAGE ═══ */
.tit-form-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--sh);
}
.tit-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.tit-form-card > p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}
.tit-lbl {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 0.4rem;
}
.tit-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--paper);
    transition: all 0.2s;
    outline: none;
    resize: vertical;
}
.tit-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
    background: #fff;
}

.tit-contact-info {
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.tit-contact-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.tit-contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding 0.2s;
    text-decoration: none;
}
.tit-contact-row:last-child {
    border-bottom: none;
}
.tit-contact-row:hover {
    padding-left: 0.25rem;
}
.tit-contact-icon {
    font-size: 1.4rem;
    width: 36px;
    text-align: center;
}
.tit-contact-lbl {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.tit-contact-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.tit-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(
        135deg,
        rgba(0, 87, 255, 0.08),
        rgba(0, 87, 255, 0.04)
    );
    border: 1px solid rgba(0, 87, 255, 0.2);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.5rem;
}
.tit-note-icon {
    font-size: 1.75rem;
}
.tit-note strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--ink);
    display: block;
    margin-bottom: 0.25rem;
}
.tit-note p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* FAQ */
.tit-faq-item {
    border-radius: var(--r);
    background: #fff;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.tit-faq-item:hover,
.tit-faq-item.open {
    border-color: rgba(0, 87, 255, 0.25);
    box-shadow: var(--sh);
}
.tit-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    user-select: none;
}
.tit-faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--blue);
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.tit-faq-item.open .tit-faq-toggle {
    transform: rotate(45deg);
}
.tit-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    transition:
        max-height 0.35s ease,
        padding 0.3s ease;
}
.tit-faq-item.open .tit-faq-a {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem;
}

/* Form success */
.tit-success {
    text-align: center;
    padding: 3rem 1rem;
    display: none;
}
.tit-success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: successPop 0.5s ease;
}
@keyframes successPop {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
.tit-success h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.tit-success p {
    color: var(--muted);
}

/* ═══ TOOLS SECTION ═══ */
.tools-section {
    --tools-bg: #f3f6fb;
    --tools-card-bg: #ffffff;
    --tools-card-border: #dbe4f2;
    --tools-text: #1f2a44;
    --tools-muted: #66758f;
    --tools-accent: var(--brand-amber);
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(34, 70, 217, 0.08) 0,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(245, 158, 11, 0.08) 0,
            transparent 34%
        ),
        var(--tools-bg);
}
.tools-section .tools-head {
    max-width: 760px;
}
.tools-section .tools-arrow {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--tools-card-border);
    background: var(--tools-card-bg);
    color: var(--tools-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(24, 39, 75, 0.08);
}
.tools-section .tools-label-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.tools-section .tools-kicker {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tools-accent);
}
.tools-section .tools-shell {
    background: #fff;
    border: 1px solid #dde6f3;
    border-radius: 22px;
    padding: 1rem;
    box-shadow:
        0 14px 34px rgba(14, 29, 58, 0.08),
        0 1px 1px rgba(14, 29, 58, 0.05);
}
.tools-section .tools-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.8rem;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e5ecf7;
    margin-bottom: 0.7rem;
}
.tools-section .tools-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding-top: 0.2rem;
}
.tools-section .tools-row-name {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #1f2a44;
}
.tools-section .tools-row-count {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #edf2fb;
    color: #52617a;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tools-section .tools-row-list {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0,
        black 7%,
        black 93%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        black 7%,
        black 93%,
        transparent 100%
    );
}
.tools-section .tools-row-track {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    animation: toolsRowLoop 24s linear infinite;
}
.tools-section .tools-row-track.rev {
    animation-name: toolsRowLoopReverse;
    animation-duration: 28s;
}
.tools-section .tools-row:hover .tools-row-track {
    animation-play-state: paused;
}
.tools-section .tool-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 34px;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #d8e2f0;
    background: #f8fafe;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--tools-text);
    line-height: 1;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}
.tools-section .tool-pill i {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: #2f5fd4;
}
.tools-section .tool-pill:hover {
    background: #ffffff;
    border-color: #c8d7ee;
}
@keyframes toolsRowLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes toolsRowLoopReverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* ═══ WHY SECTION ═══ */
.tit-why {
    background:
        radial-gradient(
            circle at 5% 0%,
            rgba(0, 87, 255, 0.08) 0,
            transparent 46%
        ),
        radial-gradient(
            circle at 95% 100%,
            rgba(193, 18, 31, 0.05) 0,
            transparent 40%
        ),
        #ffffff;
}
.tit-why-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.tit-why-stat-card {
    border: 1px solid #dfe8f6;
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
}
.tit-why-stat-num {
    font-size: 1.32rem;
    line-height: 1;
    font-weight: 900;
    color: #0f2b6f;
}
.tit-why-stat-label {
    margin-top: 0.35rem;
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5d708f;
}
.tit-why-tile {
    border: 1px solid #dfe8f6;
    border-radius: 18px;
    padding: 1.1rem 1rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}
.tit-why-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(10, 28, 63, 0.12);
}
.tit-why-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
    font-size: 1rem;
}
.tit-why-tile-title {
    font-size: 1.06rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.4rem;
}
.tit-why-tile-desc {
    margin: 0;
    font-size: 0.88rem;
    color: #5f6f85;
    line-height: 1.6;
}
.tit-why-tile.tone-blue {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    border-color: #d8e4fb;
}
.tit-why-tile.tone-blue .tit-why-tile-icon {
    background: #e8f0ff;
    color: #2151c4;
    border-color: #cfe0ff;
}
.tit-why-tile.tone-red {
    background: linear-gradient(180deg, #ffffff 0%, #fff4f6 100%);
    border-color: #f0dbe2;
}
.tit-why-tile.tone-red .tit-why-tile-icon {
    background: #fdebef;
    color: #c1121f;
    border-color: #f7d6de;
}
.tit-why-tile.tone-green {
    background: linear-gradient(180deg, #ffffff 0%, #f2fbf6 100%);
    border-color: #dbeee3;
}
.tit-why-tile.tone-green .tit-why-tile-icon {
    background: #e8f7ef;
    color: #147a50;
    border-color: #cce9da;
}
.tit-why-tile.tone-indigo {
    background: linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%);
    border-color: #e4ddf5;
}
.tit-why-tile.tone-indigo .tit-why-tile-icon {
    background: #f0eaff;
    color: #6c38c8;
    border-color: #ddd1fb;
}

/* ═══ FOOTER ═══ */
.tit-footer {
    background: var(--navy);
    padding: 72px 0 32px;
}
.tit-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.82rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dbe5f7;
    margin-bottom: 1.05rem;
    box-shadow: 0 8px 18px rgba(2, 8, 26, 0.16);
}
.tit-footer .tit-f-logo {
    height: 44px;
    width: auto;
    display: block;
}
.tit-footer-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.46);
    line-height: 1.85;
    max-width: 300px;
}
.tit-socials {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.1rem;
}
.tit-soc {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.62);
    transition: all 0.2s;
}
.tit-soc:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}
.tit-footer-head {
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 1.25rem;
}
.tit-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tit-footer-links li {
    margin-bottom: 0.65rem;
}
.tit-footer-links a,
.tit-footer-links span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    line-height: 1.75;
}
.tit-footer-links a:hover {
    color: #fff;
}
.tit-footer-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}
.tit-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.22);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ═══ KEYFRAMES ═══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
    .tit-hero-float-card {
        font-size: 0.68rem;
        padding: 0.36rem 0.58rem;
    }
    .tit-hero-float-card.card-a {
        left: -2%;
    }
    .tit-hero-float-card.card-b {
        right: -2%;
    }
    .tit-hero-float-card.card-c {
        left: -3%;
    }
}

@media (max-width: 992px) {
    .tit-tl-line {
        left: 16px;
    }
    .tit-tl-item,
    .tit-tl-item.right {
        flex-direction: column;
        padding-left: 2.5rem;
    }
    .tit-tl-item.right .tit-tl-card {
        text-align: left;
    }
    .tit-tl-dot {
        left: 16px;
    }
    .tit-tl-card {
        width: 100%;
    }
    .tit-career-side-card {
        position: static;
        top: auto;
    }
    .tit-about-story-image {
        height: 420px;
    }
}
@media (max-width: 768px) {
    .tit-nav-links,
    .tit-nav-cta {
        display: none;
    }
    .tit-ham {
        display: flex;
    }
    .tit-section {
        padding: 64px 0;
    }
    .tit-hero-h1 {
        font-size: 2.6rem;
    }
    .tit-cta {
        padding: 72px 0;
    }
    .tit-page-hero {
        padding: 120px 0 60px;
    }
    .tit-about-story-image {
        height: 290px;
    }
    .tit-footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .tit-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-pad {
        padding: 72px 0;
    }
    .tools-section .tools-arrow {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .tools-section .tools-shell {
        border-radius: 16px;
        padding: 0.75rem;
    }
    .tools-section .tools-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-bottom: 0.55rem;
        padding: 0.65rem;
    }
    .tools-section .tools-row-head {
        padding-top: 0;
    }
    .tools-section .tools-row-name {
        font-size: 0.82rem;
    }
    .tools-section .tool-pill {
        min-height: 32px;
        font-size: 0.72rem;
        padding: 0.32rem 0.58rem;
    }
    .tools-section .tool-pill i {
        width: 18px;
        height: 18px;
        border-radius: 6px;
        font-size: 0.58rem;
    }
    .tit-why-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        margin-bottom: 0.7rem;
    }
    .tit-why-stat-card {
        border-radius: 12px;
        padding: 0.7rem 0.75rem;
    }
    .tit-why-stat-num {
        font-size: 1.12rem;
    }
    .tit-why-stat-label {
        font-size: 0.62rem;
    }
    .tit-why-tile {
        border-radius: 14px;
        padding: 0.9rem 0.82rem;
    }
    .tit-why-tile-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        margin-bottom: 0.62rem;
        font-size: 0.85rem;
    }
    .tit-why-tile-title {
        font-size: 0.96rem;
        margin-bottom: 0.32rem;
    }
    .tit-why-tile-desc {
        font-size: 0.82rem;
    }
}
