/* =====================================================
   SwynchWit Technologies - Editorial Light Redesign
   ===================================================== */

:root {
    --bg-0: #f6f1e8;
    --bg-1: #fffdf8;
    --bg-2: #edf6f1;
    --bg-3: #dfe8ff;
    --bg-card: rgba(255, 253, 248, 0.86);
    --bg-card-strong: #fffdf8;
    --bg-dark: #18263f;
    --bg-dark-soft: #243457;
    --line: rgba(24, 38, 63, 0.12);
    --line-strong: rgba(24, 38, 63, 0.22);
    --line-accent: rgba(23, 68, 215, 0.18);

    --ink: #18263f;
    --ink-soft: #2d3a51;
    --muted: #5e6b7d;
    --muted-soft: #8a97a9;
    --white: #ffffff;

    --teal: #0f9f8f;
    --teal-deep: #0a786c;
    --blue: #1744d7;
    --blue-deep: #1034a6;
    --cobalt: #3860ff;
    --coral: #ef7d57;
    --gold: #f1b24c;
    --emerald: #0f9f6e;

    --grad: linear-gradient(135deg, #0f9f8f 0%, #1744d7 58%, #3860ff 100%);
    --grad-soft: linear-gradient(135deg, rgba(15, 159, 143, 0.16), rgba(23, 68, 215, 0.1));
    --grad-warm: linear-gradient(135deg, rgba(239, 125, 87, 0.16), rgba(241, 178, 76, 0.08));

    --font: 'Manrope', sans-serif;
    --font-d: 'Sora', sans-serif;

    --nav-h: 86px;
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius: 22px;
    --radius-sm: 16px;
    --radius-xs: 12px;
    --radius-full: 999px;

    --ease: cubic-bezier(0.2, 1, 0.3, 1);
    --trans: all 0.34s cubic-bezier(0.2, 1, 0.3, 1);

    --shadow-xl: 0 30px 90px rgba(24, 38, 63, 0.12);
    --shadow-lg: 0 20px 48px rgba(24, 38, 63, 0.1);
    --shadow-md: 0 12px 28px rgba(24, 38, 63, 0.08);
    --shadow-sm: 0 8px 18px rgba(24, 38, 63, 0.06);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--ink);
    line-height: 1.72;
    background: linear-gradient(180deg, #fffdf8 0%, #f6f1e8 46%, #edf6f1 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 12%, rgba(239, 125, 87, 0.12), transparent 18%),
        radial-gradient(circle at 84% 10%, rgba(23, 68, 215, 0.1), transparent 22%),
        radial-gradient(circle at 80% 78%, rgba(15, 159, 143, 0.1), transparent 18%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23, 68, 215, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 68, 215, 0.04) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: radial-gradient(circle at center, black 24%, transparent 92%);
    -webkit-mask-image: radial-gradient(circle at center, black 24%, transparent 92%);
    opacity: 0.55;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans);
}

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
}

::selection {
    background: rgba(23, 68, 215, 0.16);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f2eee7;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, #0f9f8f, #1744d7);
}

.container {
    width: min(1320px, calc(100% - 56px));
    margin: 0 auto;
}

.section {
    padding: 112px 0;
}

.section-sm {
    padding: 72px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 253, 248, 0.78);
    border: 1px solid var(--line-accent);
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(239, 125, 87, 0.12);
}

.section-title {
    margin-top: 20px;
    margin-bottom: 16px;
    font-family: var(--font-d);
    font-size: clamp(1.9rem, 3.2vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.section-subtitle {
    margin: 0 auto;
    max-width: 660px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 62%, var(--cobalt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: var(--trans);
}

.btn-primary {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 16px 34px rgba(24, 38, 63, 0.16);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--ink) 0%, #22385d 100%);
    box-shadow: 0 22px 42px rgba(24, 38, 63, 0.2);
}

.btn-outline {
    color: var(--ink);
    background: rgba(255, 253, 248, 0.74);
    border-color: var(--line-strong);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 159, 143, 0.36);
    background: rgba(255, 255, 255, 0.9);
    color: var(--teal-deep);
}

.btn-ghost {
    min-height: auto;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--blue);
}

.btn-ghost:hover {
    gap: 16px;
    color: var(--ink);
}

.btn-white {
    color: var(--ink);
    background: var(--bg-card-strong);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

.btn-outline-white {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
}

.btn-outline-white:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.btn-lg {
    min-height: 58px;
    padding: 16px 34px;
}

.btn-full {
    width: 100%;
}

.loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fffdf8 0%, #f1ece3 100%);
    z-index: 9999;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.loader-logo-img,
.loader-name-img,
.logo-img,
.nav-name-img,
.ft-logo-img,
.ft-name-img {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(24, 38, 63, 0.14);
}

.loader-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.loader-name-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* =====================================================
   Dark Brand Theme Overrides
   ===================================================== */

:root {
    --bg-0: #07101a;
    --bg-1: #0b1320;
    --bg-2: #101b2d;
    --bg-3: #15253d;
    --bg-card: rgba(11, 19, 32, 0.84);
    --bg-card-strong: #101a2b;
    --bg-dark: #050b14;
    --bg-dark-soft: #0d1726;
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(148, 163, 184, 0.3);
    --line-accent: rgba(96, 165, 250, 0.28);

    --ink: #edf4ff;
    --ink-soft: #d5e2f6;
    --muted: #a3b5cb;
    --muted-soft: #8194ad;
    --white: #ffffff;

    --teal: #34d3c2;
    --teal-deep: #79e7da;
    --blue: #6cb6ff;
    --blue-deep: #4f8ffc;
    --cobalt: #8a8dff;
    --coral: #f2a07d;
    --gold: #f6ca7a;
    --emerald: #44d89a;

    --grad: linear-gradient(135deg, #34d3c2 0%, #4f8ffc 55%, #8a8dff 100%);
    --grad-soft: linear-gradient(135deg, rgba(52, 211, 194, 0.18), rgba(79, 143, 252, 0.16));
    --grad-warm: linear-gradient(135deg, rgba(242, 160, 125, 0.22), rgba(246, 202, 122, 0.12));

    --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.42);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.34);
    --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.28);
    --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.2);
}

html {
    color-scheme: dark;
}

body {
    color: var(--ink);
    background: linear-gradient(180deg, #050c16 0%, #091221 42%, #0f1b2d 100%);
}

body::before {
    background:
        radial-gradient(circle at 14% 12%, rgba(52, 211, 194, 0.16), transparent 18%),
        radial-gradient(circle at 84% 10%, rgba(79, 143, 252, 0.14), transparent 22%),
        radial-gradient(circle at 80% 78%, rgba(138, 141, 255, 0.12), transparent 18%);
}

body::after {
    background-image:
        linear-gradient(rgba(108, 182, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 182, 255, 0.05) 1px, transparent 1px);
    opacity: 0.38;
}

::selection {
    background: rgba(108, 182, 255, 0.22);
    color: var(--white);
}

::-webkit-scrollbar-track {
    background: #091221;
}

.section-label,
.hero-badge {
    background: rgba(11, 19, 32, 0.74);
    border-color: rgba(96, 165, 250, 0.22);
    color: var(--ink-soft);
}

.btn-outline {
    color: var(--ink);
    background: rgba(11, 19, 32, 0.72);
    border-color: var(--line);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    background: rgba(17, 29, 47, 0.92);
    border-color: rgba(52, 211, 194, 0.3);
    color: var(--teal-deep);
}

.btn-white {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.btn-primary {
    background: var(--grad);
    box-shadow: 0 18px 38px rgba(26, 79, 127, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45cfd6 0%, #5d9aff 55%, #9993ff 100%);
}

.loader {
    background: linear-gradient(180deg, #06101a 0%, #0b1422 100%);
}

.loader-logo {
    background: rgba(11, 19, 32, 0.92);
    border-color: var(--line);
}

.loader-tagline {
    color: var(--muted-soft);
}

.nav-container {
    background: rgba(11, 19, 32, 0.78);
    border-color: var(--line);
}

.navbar.scrolled .nav-container {
    background: rgba(11, 19, 32, 0.92);
    border-color: var(--line-strong);
}

.nav-logo {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-link {
    color: var(--muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
}

.hamburger {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    background: var(--ink);
}

.mobile-menu {
    background: rgba(11, 19, 32, 0.94);
    border-color: var(--line);
}

.mob-link {
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.02);
}

.mob-link:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    background: linear-gradient(180deg, rgba(7, 14, 24, 0.96) 0%, rgba(10, 18, 32, 0.98) 48%, rgba(15, 27, 45, 1) 100%);
}

.hero::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(52, 211, 194, 0.18), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(79, 143, 252, 0.18), transparent 22%),
        radial-gradient(circle at 70% 80%, rgba(138, 141, 255, 0.12), transparent 18%);
}

.hero::after {
    background-color: #101a2b;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        url("../assets/Full.png");
    border-color: rgba(108, 182, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 40px 70px rgba(0, 0, 0, 0.38);
}

.hero-stats {
    background: rgba(11, 19, 32, 0.78);
    border-color: var(--line);
}

.hstat + .hstat::before {
    background: rgba(148, 163, 184, 0.14);
}

.hstat-label,
.scroll-hint,
.section-subtitle,
.hero-subtitle,
.about-para,
.svc-card p,
.proc-body p,
.tech-chip span,
.tc-body p,
.ft-desc,
.cta-text p,
.cinfo-card p,
.cinfo-card a,
.ft-ci span,
.ft-ci a,
.cform-note,
.footer-bottom p {
    color: var(--muted);
}

.scroll-arrow-anim span {
    border-right-color: var(--muted-soft);
    border-bottom-color: var(--muted-soft);
}

.marquee-bar {
    background: rgba(11, 19, 32, 0.72);
    border-top-color: var(--line);
    border-bottom-color: var(--line);
}

.marquee-items span {
    color: var(--ink-soft);
}

.marquee-items .sep {
    color: rgba(148, 163, 184, 0.26);
}

.about-floating-card,
.pillar-card,
.svc-card,
.stat-box,
.proc-body,
.tech-chip,
.team-card,
.tbtn,
.cinfo-card,
.cinfo-social,
.contact-form-box,
.footer-grid,
.ft-logo,
.toast {
    background: rgba(11, 19, 32, 0.82);
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}

.about-floating-card {
    background: rgba(11, 19, 32, 0.88);
}

.afc-icon,
.proc-icon,
.cinfo-icon,
.svc-card:hover .svc-icon {
    color: var(--white);
    background: linear-gradient(135deg, #14304d 0%, #21486e 55%, #1b3150 100%);
}

.about-img-main,
.about-img-float {
    border-color: var(--line);
}

.ai-focus {
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.38) 0%, rgba(18, 31, 53, 0.82) 100%);
}

.pillar-card {
    background: linear-gradient(180deg, rgba(11, 19, 32, 0.92) 0%, rgba(16, 27, 45, 0.82) 100%);
}

.pillar-card.featured,
.tcard,
.cta-body {
    background: linear-gradient(135deg, #0a1322 0%, #121f35 100%);
}

.pillar-tags span {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.svc-card:hover,
.proc-body:hover,
.team-card:hover,
.pillar-card:hover,
.tech-chip:hover,
.cinfo-card:hover,
.tbtn:hover {
    background: rgba(17, 29, 47, 0.94);
    border-color: var(--line-strong);
}

.stats-overlay {
    background: linear-gradient(135deg, rgba(6, 12, 22, 0.8), rgba(13, 23, 38, 0.9));
}

.stat-box {
    background: rgba(11, 19, 32, 0.72);
}

.stat-ico {
    color: var(--teal);
}

.process {
    background: linear-gradient(180deg, rgba(7, 14, 24, 0.18) 0%, rgba(15, 27, 45, 0.92) 100%);
}

.proc-step:not(:last-child)::after {
    border-top-color: rgba(108, 182, 255, 0.24);
}

.tech-chip:nth-child(odd) {
    background: rgba(16, 27, 45, 0.88);
}

.team {
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.24) 0%, rgba(12, 20, 33, 0.92) 100%);
}

.tc-social a,
.soc-btn,
.ft-social a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--ink-soft);
}

.tc-social a:hover,
.soc-btn:hover,
.ft-social a:hover {
    background: var(--grad);
    border-color: transparent;
    color: var(--white);
}

.tdot {
    background: rgba(148, 163, 184, 0.22);
}

.tdot.active {
    background: var(--blue);
}

.cform-group input,
.cform-group select,
.cform-group textarea,
.nl-form input {
    background: rgba(7, 14, 24, 0.86);
    border-color: var(--line);
    color: var(--ink);
}

.cform-group input::placeholder,
.cform-group textarea::placeholder,
.nl-form input::placeholder {
    color: var(--muted-soft);
}

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus,
.nl-form input:focus {
    background: #111d2f;
    border-color: rgba(108, 182, 255, 0.36);
    box-shadow: 0 0 0 4px rgba(79, 143, 252, 0.12);
}

.cform-group select option {
    background: #0c1626;
    color: var(--ink);
}

.nl-form button,
.back-to-top {
    background: var(--grad);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #4f8ffc 0%, #8a8dff 100%);
}

.footer-bottom .fa-heart {
    color: var(--coral);
}

.footer-bottom p:last-child {
    color: var(--muted-soft);
}

.loader-bar {
    width: 220px;
    height: 4px;
    margin: 26px auto 0;
    background: rgba(24, 38, 63, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 999px;
    animation: loaderBar 1.8s var(--ease) forwards;
}

.loader-tagline {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

@keyframes loaderBar {
    from { width: 0; }
    to { width: 100%; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 14px;
}

.nav-container {
    width: min(1320px, calc(100% - 40px));
    height: calc(var(--nav-h) - 18px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 16px 0 14px;
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(24, 38, 63, 0.12);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    transition: var(--trans);
}

.navbar.scrolled .nav-container {
    background: rgba(255, 253, 248, 0.9);
    border-color: rgba(24, 38, 63, 0.16);
    box-shadow: 0 18px 38px rgba(24, 38, 63, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    border-radius: 999px;
    background: #18263f;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 38px;
    width: auto;
    border-radius: 8px;
}

.nav-name-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: rgba(24, 38, 63, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    min-height: 48px;
    padding: 12px 22px;
    font-size: 0.86rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: transparent;
}

.hamburger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: calc(var(--nav-h) + 4px);
    left: 50%;
    z-index: 999;
    width: min(1320px, calc(100% - 40px));
    padding: 18px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    transform: translate(-50%, -120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
}

.mobile-menu.open {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.mob-link {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mob-link:hover {
    color: var(--ink);
    background: rgba(24, 38, 63, 0.06);
}

.mob-cta {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-h) + 52px) 0 84px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.72) 0%, rgba(246, 241, 232, 0.9) 48%, rgba(237, 246, 241, 0.92) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 18%, rgba(239, 125, 87, 0.18), transparent 16%),
        radial-gradient(circle at 76% 16%, rgba(23, 68, 215, 0.16), transparent 20%);
}

.hero::after {
    display: none;
}

#neuralCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.38;
    mix-blend-mode: multiply;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    left: -140px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(239, 125, 87, 0.18) 0%, transparent 72%);
}

.hero-glow-2 {
    width: 560px;
    height: 560px;
    right: -140px;
    top: -160px;
    background: radial-gradient(circle, rgba(23, 68, 215, 0.16) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 56px));
    margin: 0 auto;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 52px;
}

.hero-left {
    flex: 0 0 54%;
    min-width: 0;
}

.hero-right {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 72px;
}

.hero-img-card {
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    background: #101d2e;
    border: 1px solid rgba(108, 182, 255, 0.14);
    box-shadow: 0 36px 72px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transform: rotate(6deg);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 28px;
    border-radius: var(--radius-full);
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid var(--line-accent);
    box-shadow: var(--shadow-sm);
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(15, 159, 143, 0.12);
}

.hero-title {
    max-width: 780px;
    margin-bottom: 22px;
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 4.4vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.typed-wrapper {
    display: block;
    min-height: 1.08em;
    margin-top: 10px;
}

.cursor-blink {
    animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    max-width: 620px;
    margin: 0 0 38px;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.1rem);
    line-height: 1.88;
}

.hero-subtitle strong {
    color: var(--ink);
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(760px, 100%);
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.8);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.hstat {
    position: relative;
    padding: 24px 28px;
    text-align: left;
}

.hstat + .hstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(24, 38, 63, 0.08);
}

.hstat-num,
.hstat-plus {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1;
    color: var(--ink);
}

.hstat-num {
    font-size: 2.45rem;
}

.hstat-plus {
    font-size: 1.4rem;
    color: var(--coral);
}

.hstat-label {
    display: block;
    margin-top: 8px;
    color: var(--muted-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hstat-divider {
    display: none;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 44px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--muted-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.scroll-arrow-anim {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scroll-arrow-anim span {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--muted-soft);
    border-bottom: 1.5px solid var(--muted-soft);
    transform: rotate(45deg);
    animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-arrow-anim span:nth-child(2) {
    opacity: 0.42;
    animation-delay: 0.18s;
}

@keyframes scrollBounce {
    0% { opacity: 0; transform: rotate(45deg) translate(-3px, -3px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(4px, 4px); }
}

.marquee-bar {
    overflow: hidden;
    padding: 16px 0;
    background: rgba(255, 253, 248, 0.74);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-items {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 36s linear infinite;
}

.marquee-items span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marquee-items span i {
    color: var(--blue);
}

.marquee-items .sep {
    color: rgba(24, 38, 63, 0.18);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.about {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.about-visuals {
    position: relative;
    padding: 30px 24px 54px 0;
}

.about-img-main {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid var(--line-strong);
    background: #ffffff;
    box-shadow: var(--shadow-xl);
}

.about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 38, 63, 0) 0%, rgba(24, 38, 63, 0.18) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(24, 38, 63, 0.92);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.about-img-badge i {
    color: var(--gold);
    font-size: 1.4rem;
}

.about-img-badge strong {
    display: block;
    font-size: 0.94rem;
}

.about-img-badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
}

.about-img-float {
    position: absolute;
    right: -8px;
    bottom: 12px;
    width: 46%;
    overflow: hidden;
    border-radius: 28px;
    border: 12px solid var(--bg-card-strong);
    box-shadow: var(--shadow-lg);
}

.about-img-float img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    top: 24px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.afc-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: var(--ink);
}

.afc-num {
    display: block;
    font-family: var(--font-d);
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1;
    color: var(--ink);
}

.afc-label {
    display: block;
    margin-top: 3px;
    color: var(--muted-soft);
    font-size: 0.74rem;
    font-weight: 700;
}

.about-content .section-title {
    margin-top: 14px;
}

.about-para {
    margin-bottom: 16px;
    color: var(--muted);
    line-height: 1.88;
}

.about-para strong,
.about-para em {
    color: var(--ink);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
}

.af-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(24, 38, 63, 0.12);
}

.af-item:first-child {
    padding-top: 0;
    border-top: none;
}

.af-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(23, 68, 215, 0.08);
    border: 1px solid rgba(23, 68, 215, 0.12);
    color: var(--blue);
    font-size: 0.86rem;
}

.af-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.95rem;
}

.af-item p {
    color: var(--muted-soft);
    font-size: 0.86rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.ai-focus {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.2) 0%, rgba(223, 232, 255, 0.38) 100%);
}

.ai-focus::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 30%, rgba(23, 68, 215, 0.06), transparent 20%),
        radial-gradient(circle at 90% 70%, rgba(15, 159, 143, 0.08), transparent 24%);
}

.ai-pillars {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pillar-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
    box-shadow: var(--shadow-md);
    transition: var(--trans);
}

.pillar-card::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: var(--grad);
    transform: scaleX(0.34);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 2;
}

.pillar-card:hover {
    transform: translateY(-10px) rotate(-0.6deg);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card.featured {
    background: linear-gradient(180deg, #18263f 0%, #243457 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 56px rgba(24, 38, 63, 0.22);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: var(--ink);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pillar-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pillar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-card:hover .pillar-bg {
    opacity: 0.08;
}

.pillar-card.featured .pillar-bg {
    opacity: 0.14;
    mix-blend-mode: screen;
}

.pillar-body {
    position: relative;
    z-index: 1;
    min-height: 520px;
    padding: 42px 32px;
    display: flex;
    flex-direction: column;
}

.pillar-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 22px;
    font-size: 1.58rem;
}

.pillar-icon.traditional {
    color: var(--blue);
    background: rgba(23, 68, 215, 0.08);
    border: 1px solid rgba(23, 68, 215, 0.12);
}

.pillar-icon.agentic {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pillar-icon.genai {
    color: var(--teal-deep);
    background: rgba(15, 159, 143, 0.08);
    border: 1px solid rgba(15, 159, 143, 0.12);
}

.pillar-body h3 {
    margin-bottom: 14px;
    font-family: var(--font-d);
    font-size: 1.46rem;
    line-height: 1.18;
    font-weight: 700;
}

.pillar-body p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.82;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.pillar-list li i {
    color: var(--emerald);
    font-size: 0.78rem;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pillar-tags span {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(24, 38, 63, 0.1);
    background: rgba(24, 38, 63, 0.04);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.pillar-card.featured .pillar-body h3,
.pillar-card.featured .pillar-body p,
.pillar-card.featured .pillar-list li,
.pillar-card.featured .pillar-tags span {
    color: rgba(255, 255, 255, 0.78);
}

.pillar-card.featured .pillar-body h3 {
    color: var(--white);
}

.pillar-card.featured .pillar-list li i {
    color: var(--gold);
}

.pillar-card.featured .pillar-tags span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.86);
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--coral), transparent);
    opacity: 0.56;
}

.svc-card:hover {
    transform: translateY(-8px);
    background: #fffdf8;
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.svc-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 20px;
    border: 1px solid rgba(23, 68, 215, 0.12);
    background: linear-gradient(135deg, rgba(15, 159, 143, 0.12), rgba(23, 68, 215, 0.12));
    color: var(--blue);
    font-size: 1.24rem;
    transition: var(--trans);
}

.svc-card:hover .svc-icon {
    color: var(--white);
    background: var(--ink);
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px) rotate(-6deg);
}

.svc-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-d);
    font-size: 1.18rem;
    font-weight: 700;
}

.svc-card p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.78;
    flex-grow: 1;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.svc-link:hover {
    gap: 12px;
    color: var(--blue);
}

.stats-section {
    position: relative;
    overflow: hidden;
    padding: 0 0 112px;
}

.stats-bg {
    position: absolute;
    inset: 0;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0) contrast(0.92) brightness(1.08);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 250, 245, 0.92), rgba(237, 246, 241, 0.9));
    backdrop-filter: blur(2px);
}

.stats-inner {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    position: relative;
    padding: 34px 28px;
    text-align: left;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.76);
    box-shadow: var(--shadow-md);
}

.stat-box + .stat-box::before {
    display: none;
}

.stat-box:nth-child(2),
.stat-box:nth-child(4) {
    transform: translateY(18px);
}

.stat-ico {
    margin-bottom: 16px;
    color: var(--teal);
    font-size: 1.5rem;
}

.stat-val {
    font-family: var(--font-d);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.96;
    color: var(--ink);
}

.stat-lbl {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process {
    background: linear-gradient(180deg, transparent 0%, rgba(223, 232, 255, 0.36) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.proc-step {
    position: relative;
}

.proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 68px;
    left: calc(100% - 14px);
    width: 28px;
    border-top: 1px dashed rgba(24, 38, 63, 0.24);
}

.proc-num {
    margin-bottom: -24px;
    font-family: var(--font-d);
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(23, 68, 215, 0.09);
}

.proc-body {
    position: relative;
    z-index: 1;
    padding: 34px 26px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.84);
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}

.proc-body:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.proc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 18px;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow-sm);
}

.proc-body h3 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 800;
}

.proc-body p {
    color: var(--muted);
    font-size: 0.84rem;
    text-align: center;
    line-height: 1.7;
}

.technologies {
    background: transparent;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tech-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    min-width: 112px;
    padding: 18px 22px 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.8);
    transition: var(--trans);
}

.tech-chip:nth-child(odd) {
    background: rgba(237, 246, 241, 0.82);
}

.tech-chip:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.tech-chip img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.82;
    transition: var(--trans);
}

.tech-chip:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.tech-chip span {
    color: var(--ink-soft);
    font-size: 0.73rem;
    font-weight: 800;
}

.team {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.18) 0%, rgba(246, 241, 232, 0.72) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.86);
    box-shadow: var(--shadow-md);
    transition: var(--trans);
}

.team-card::before {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(23, 68, 215, 0.34), transparent);
    opacity: 1;
    z-index: 2;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.tc-img {
    position: relative;
    overflow: hidden;
}

.tc-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s var(--ease);
}

.team-card:hover .tc-img img {
    transform: scale(1.06);
}

.tc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    background: linear-gradient(to top, rgba(24, 38, 63, 0.82) 0%, rgba(24, 38, 63, 0.08) 60%);
    transition: opacity 0.3s ease;
}

.team-card:hover .tc-overlay {
    opacity: 1;
}

.tc-social {
    display: flex;
    gap: 10px;
}

.tc-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    transform: translateY(14px);
    opacity: 0;
}

.team-card:hover .tc-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .tc-social a:nth-child(2) {
    transition-delay: 0.06s;
}

.team-card:hover .tc-social a:nth-child(3) {
    transition-delay: 0.12s;
}

.tc-social a:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tc-body {
    padding: 24px;
}

.tc-body h3 {
    margin-bottom: 4px;
    font-family: var(--font-d);
    font-size: 1.06rem;
    font-weight: 700;
}

.tc-role {
    display: block;
    margin-bottom: 10px;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tc-body p {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.68;
}

.testimonials {
    background: transparent;
}

.tslider {
    max-width: 980px;
    margin: 0 auto;
}

.ttrack {
    display: flex;
    overflow: hidden;
    border-radius: 32px;
}

.tcard {
    position: relative;
    flex: 0 0 100%;
    padding: 52px 56px;
    border-radius: 32px;
    background: linear-gradient(135deg, #18263f 0%, #243457 100%);
    box-shadow: var(--shadow-xl);
}

.tcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56, 96, 255, 0.24), transparent 38%);
    pointer-events: none;
}

.trating {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 0.94rem;
}

.tcard blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.86;
    font-style: italic;
}

.tcard blockquote::before {
    content: '\201C';
    position: absolute;
    top: -24px;
    left: -2px;
    font-size: 5.6rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.08);
}

.tcard blockquote strong {
    color: var(--white);
    font-style: normal;
}

.tauthor {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tauthor img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.18);
    object-fit: cover;
}

.tauthor strong {
    display: block;
    color: var(--white);
    font-size: 0.94rem;
}

.tauthor span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.8rem;
}

.tcontrols {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.tbtn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.84);
    color: var(--ink);
}

.tbtn:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: var(--white);
}

.tdots {
    display: flex;
    gap: 8px;
}

.tdot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(24, 38, 63, 0.16);
}

.tdot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--coral);
}

.cta-banner {
    padding: 108px 0;
    background: transparent;
    border: none;
}

.cta-banner::before,
.cta-bg,
.cta-overlay {
    display: none;
}

.cta-body {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, #18263f 0%, #243457 100%);
    box-shadow: var(--shadow-xl);
}

.cta-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(239, 125, 87, 0.24), transparent 24%),
        radial-gradient(circle at 92% 14%, rgba(56, 96, 255, 0.3), transparent 26%);
    pointer-events: none;
}

.cta-body::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-text,
.cta-actions {
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-family: var(--font-d);
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.cta-text p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cinfo-card,
.cinfo-social,
.contact-form-box {
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow-md);
}

.cinfo-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    transition: var(--trans);
}

.cinfo-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.cinfo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--ink);
    color: var(--white);
}

.cinfo-card h4,
.cinfo-social h4,
.ft-links h4,
.ft-contact h4,
.ft-newsletter h4,
.cform-group label {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cinfo-card h4 {
    margin-bottom: 5px;
}

.cinfo-card p,
.cinfo-card a {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.6;
}

.cinfo-card a:hover {
    color: var(--blue);
}

.cinfo-social {
    padding: 22px;
    border-radius: 22px;
}

.cinfo-social h4 {
    margin-bottom: 16px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.soc-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.soc-btn:hover {
    transform: translateY(-3px);
    background: var(--ink);
    color: var(--white);
}

.contact-form-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 4px;
    border-radius: 999px;
    background: var(--grad);
}

.cform {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cform-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.req {
    color: var(--coral);
}

.cform-group input,
.cform-group select,
.cform-group textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(24, 38, 63, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    font-size: 0.94rem;
    font-family: var(--font);
    outline: none;
    transition: var(--trans);
}

.cform-group input::placeholder,
.cform-group textarea::placeholder {
    color: var(--muted-soft);
}

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
    border-color: rgba(15, 159, 143, 0.28);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(15, 159, 143, 0.12);
}

.cform-group select option {
    background: var(--white);
    color: var(--ink);
}

.cform-group textarea {
    min-height: 140px;
    resize: vertical;
}

.cform-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.6;
    text-align: left;
}

.legal {
    position: relative;
}

.legal .container {
    position: relative;
    overflow: hidden;
    padding: 56px clamp(24px, 4vw, 52px);
    border-radius: 40px;
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-dark-soft) 54%, var(--blue) 100%);
    box-shadow: var(--shadow-xl);
}

.legal .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(241, 178, 76, 0.18), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(56, 96, 255, 0.26), transparent 28%),
        radial-gradient(circle at 78% 84%, rgba(15, 159, 143, 0.18), transparent 24%);
    pointer-events: none;
}

.legal .section-header,
.legal-grid {
    position: relative;
    z-index: 1;
}

.legal .section-header {
    margin-bottom: 48px;
}

.legal .section-label {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.82);
}

.legal .section-label::before {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(241, 178, 76, 0.16);
}

.legal .section-title {
    color: var(--white);
}

.legal .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.legal-card {
    position: relative;
    overflow: hidden;
    --legal-accent: var(--teal);
    --legal-accent-strong: var(--emerald);
    --legal-surface: rgba(15, 159, 143, 0.08);
    --legal-glow: rgba(15, 159, 143, 0.12);
    --legal-pill-bg: rgba(15, 159, 143, 0.16);
    --legal-pill-border: rgba(15, 159, 143, 0.26);
    scroll-margin-top: calc(var(--nav-h) + 28px);
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(24, 38, 63, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 232, 0.98)),
        radial-gradient(circle at 100% 0%, var(--legal-glow) 0%, transparent 40%),
        linear-gradient(135deg, var(--legal-surface) 0%, rgba(255, 253, 248, 0.96) 60%);
    box-shadow: 0 20px 44px rgba(8, 18, 40, 0.22);
}

.legal-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--legal-accent), var(--legal-accent-strong));
}

#privacy-policy {
    --legal-accent: var(--teal);
    --legal-accent-strong: var(--emerald);
    --legal-surface: rgba(15, 159, 143, 0.08);
    --legal-glow: rgba(15, 159, 143, 0.14);
    --legal-pill-bg: rgba(15, 159, 143, 0.16);
    --legal-pill-border: rgba(15, 159, 143, 0.26);
}

#terms-conditions {
    --legal-accent: var(--blue);
    --legal-accent-strong: var(--cobalt);
    --legal-surface: rgba(23, 68, 215, 0.08);
    --legal-glow: rgba(56, 96, 255, 0.14);
    --legal-pill-bg: rgba(23, 68, 215, 0.14);
    --legal-pill-border: rgba(23, 68, 215, 0.24);
}

.legal-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: var(--legal-pill-bg);
    border: 1px solid var(--legal-pill-border);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
    color: var(--bg-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--legal-accent);
}

.legal-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-d);
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #18263f; /* fixed dark for light background */
}

.legal-card p {
    color: #2d3a51; /* fixed dark for light background */
    font-size: 0.96rem;
}

.legal-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.legal-list li {
    position: relative;
    padding-left: 18px;
    color: #2d3a51; /* fixed dark for light background */
    font-size: 0.92rem;
    line-height: 1.75;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--legal-accent), var(--legal-accent-strong));
}

.legal-card a {
    color: var(--legal-accent-strong);
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 0.16em;
}

.legal-card a:hover {
    color: var(--ink);
    text-decoration-color: var(--legal-accent);
}

.footer {
    background: transparent;
}

.footer-top {
    padding: 0 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 42px;
    padding: 40px 42px;
    border-radius: 34px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow-lg);
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    padding: 10px 12px;
    margin-bottom: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
}

.ft-logo-img {
    height: 52px;
    width: auto;
}

.ft-name-img {
    height: 52px;
    width: auto;
}

.ft-desc {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.82;
}

.ft-social {
    display: flex;
    gap: 10px;
}

.ft-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.ft-social a:hover {
    transform: translateY(-3px);
    background: var(--ink);
    color: var(--white);
}

.ft-links h4,
.ft-contact h4 {
    margin-bottom: 18px;
}

.ft-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-links ul li a {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.ft-links ul li a:hover {
    color: var(--coral);
    padding-left: 10px;
}

.ft-ci {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.ft-ci i {
    margin-top: 4px;
    color: var(--teal);
    font-size: 0.82rem;
}

.ft-ci span,
.ft-ci a {
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.58;
}

.ft-ci a:hover {
    color: var(--blue);
}

.ft-newsletter {
    margin-top: 24px;
}

.ft-newsletter h4 {
    margin-bottom: 12px;
}

.nl-form {
    display: flex;
    gap: 10px;
}

.nl-form input {
    flex: 1;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-size: 0.86rem;
    outline: none;
}

.nl-form input::placeholder {
    color: var(--muted-soft);
}

.nl-form input:focus {
    border-color: rgba(15, 159, 143, 0.28);
}

.nl-form button {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    border-radius: 16px;
    color: var(--white);
    background: var(--ink);
}

.nl-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0 40px;
    text-align: center;
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    color: var(--muted-soft);
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: var(--ink-soft);
}

.footer-legal-links a:hover {
    color: var(--coral);
}

.footer-legal-links span {
    color: var(--muted-soft);
}

.footer-bottom p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-bottom .fa-heart {
    color: var(--coral);
}

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 990;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--trans);
}

.back-to-top.vis {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--blue);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 9999;
    transform: translateX(-50%) translateY(80px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-left: 4px solid var(--emerald);
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
    opacity: 0;
    transition: transform 0.42s var(--ease), opacity 0.42s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: all;
}

@media (max-width: 1280px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: 34px;
    }
}

@media (max-width: 1100px) {
    .nav-link {
        padding: 0 12px;
        font-size: 0.74rem;
    }

    .nav-cta {
        padding: 12px 18px;
    }

    .hero::after {
        display: none;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-left {
        flex: 0 0 56%;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .scroll-hint {
        align-items: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-visuals {
        max-width: 620px;
        margin: 0 auto;
        padding-right: 0;
    }

    .ai-pillars,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proc-step:not(:last-child)::after {
        display: none;
    }

    .cta-body {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .legal .container {
        padding: 34px 22px;
        border-radius: 28px;
    }

    .legal .section-header {
        margin-bottom: 36px;
    }

    .legal-card {
        padding: 24px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    :root {
        --nav-h: 74px;
    }

    .hero::after {
        display: none;
    }

    .section {
        padding: 88px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: calc(var(--nav-h) + 36px);
    }

    .hero-content {
        display: block;
    }

    .hero-right {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hstat:nth-child(3)::before {
        display: none;
    }

    .about-img-float,
    .about-floating-card {
        display: none;
    }

    .ai-pillars,
    .services-grid,
    .process-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box:nth-child(2),
    .stat-box:nth-child(4) {
        transform: none;
    }
}

@media (max-width: 680px) {
    .container,
    .hero-content {
        width: min(1320px, calc(100% - 32px));
    }

    .nav-container,
    .mobile-menu {
        width: min(1320px, calc(100% - 24px));
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-stats,
    .stats-grid,
    .cform-row {
        grid-template-columns: 1fr;
    }

    .hstat + .hstat::before {
        top: 0;
        left: 12%;
        right: 12%;
        bottom: auto;
        width: auto;
        height: 1px;
    }

    .hstat:nth-child(3)::before {
        display: block;
    }

    .tcard,
    .contact-form-box,
    .cta-body,
    .footer-grid {
        padding: 30px 24px;
    }

    .about-img-main img {
        height: 420px;
    }

    .tc-img img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 68px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-label,
    .hero-badge {
        letter-spacing: 0.12em;
        font-size: 0.68rem;
    }

    .nav-name-img {
        height: 42px;
    }

    .logo-img {
        height: 42px;
    }

    .loader-logo {
        height: 42px;
        width: auto;
    }

    .loader-logo-img {
        width: 62px;
        height: 42px;
        width: auto;
    }

    .loader-name-img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .btn,
    .btn-lg {
        min-height: 52px;
        padding: 14px 22px;
    }

    .tcard blockquote {
        font-size: 0.98rem;
    }
}

/* =====================================================
   Dark Brand Theme Overrides
   ===================================================== */

:root {
    --bg-0: #07101a;
    --bg-1: #0b1320;
    --bg-2: #101b2d;
    --bg-3: #15253d;
    --bg-card: rgba(11, 19, 32, 0.84);
    --bg-card-strong: #101a2b;
    --bg-dark: #050b14;
    --bg-dark-soft: #0d1726;
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(148, 163, 184, 0.3);
    --line-accent: rgba(96, 165, 250, 0.28);

    --ink: #edf4ff;
    --ink-soft: #d5e2f6;
    --muted: #a3b5cb;
    --muted-soft: #8194ad;
    --white: #ffffff;

    --teal: #34d3c2;
    --teal-deep: #79e7da;
    --blue: #6cb6ff;
    --blue-deep: #4f8ffc;
    --cobalt: #8a8dff;
    --coral: #f2a07d;
    --gold: #f6ca7a;
    --emerald: #44d89a;

    --grad: linear-gradient(135deg, #34d3c2 0%, #4f8ffc 55%, #8a8dff 100%);
    --grad-soft: linear-gradient(135deg, rgba(52, 211, 194, 0.18), rgba(79, 143, 252, 0.16));
    --grad-warm: linear-gradient(135deg, rgba(242, 160, 125, 0.22), rgba(246, 202, 122, 0.12));

    --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.42);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.34);
    --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.28);
    --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.2);
}

html {
    color-scheme: dark;
}

body {
    color: var(--ink);
    background: linear-gradient(180deg, #050c16 0%, #091221 42%, #0f1b2d 100%);
}

body::before {
    background:
        radial-gradient(circle at 14% 12%, rgba(52, 211, 194, 0.16), transparent 18%),
        radial-gradient(circle at 84% 10%, rgba(79, 143, 252, 0.14), transparent 22%),
        radial-gradient(circle at 80% 78%, rgba(138, 141, 255, 0.12), transparent 18%);
}

body::after {
    background-image:
        linear-gradient(rgba(108, 182, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 182, 255, 0.05) 1px, transparent 1px);
    opacity: 0.38;
}

::selection {
    background: rgba(108, 182, 255, 0.22);
    color: var(--white);
}

::-webkit-scrollbar-track {
    background: #091221;
}

.section-label,
.hero-badge {
    background: rgba(11, 19, 32, 0.74);
    border-color: rgba(96, 165, 250, 0.22);
    color: var(--ink-soft);
}

.btn-outline {
    color: var(--ink);
    background: rgba(11, 19, 32, 0.72);
    border-color: var(--line);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    background: rgba(17, 29, 47, 0.92);
    border-color: rgba(52, 211, 194, 0.3);
    color: var(--teal-deep);
}

.btn-white {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.btn-primary {
    background: var(--grad);
    box-shadow: 0 18px 38px rgba(26, 79, 127, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45cfd6 0%, #5d9aff 55%, #9993ff 100%);
}

.loader {
    background: linear-gradient(180deg, #06101a 0%, #0b1422 100%);
}

.loader-logo {
    background: rgba(11, 19, 32, 0.92);
    border-color: var(--line);
}

.loader-tagline {
    color: var(--muted-soft);
}

.nav-container {
    background: rgba(11, 19, 32, 0.78);
    border-color: var(--line);
}

.navbar.scrolled .nav-container {
    background: rgba(11, 19, 32, 0.92);
    border-color: var(--line-strong);
}

.nav-logo {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-link {
    color: var(--muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
}

.hamburger {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    background: var(--ink);
}

.mobile-menu {
    background: rgba(11, 19, 32, 0.94);
    border-color: var(--line);
}

.mob-link {
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.02);
}

.mob-link:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    background: linear-gradient(180deg, rgba(7, 14, 24, 0.96) 0%, rgba(10, 18, 32, 0.98) 48%, rgba(15, 27, 45, 1) 100%);
}

.hero::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(52, 211, 194, 0.18), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(79, 143, 252, 0.18), transparent 22%),
        radial-gradient(circle at 70% 80%, rgba(138, 141, 255, 0.12), transparent 18%);
}

.hero::after {
    background-color: #101a2b;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        url("../assets/Full.png");
    border-color: rgba(108, 182, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 40px 70px rgba(0, 0, 0, 0.38);
}

.hero-stats {
    background: rgba(11, 19, 32, 0.78);
    border-color: var(--line);
}

.hstat + .hstat::before {
    background: rgba(148, 163, 184, 0.14);
}

.hstat-label,
.scroll-hint,
.section-subtitle,
.hero-subtitle,
.about-para,
.svc-card p,
.proc-body p,
.tech-chip span,
.tc-body p,
.ft-desc,
.cta-text p,
.cinfo-card p,
.cinfo-card a,
.ft-ci span,
.ft-ci a,
.cform-note,
.footer-bottom p {
    color: var(--muted);
}

.scroll-arrow-anim span {
    border-right-color: var(--muted-soft);
    border-bottom-color: var(--muted-soft);
}

.marquee-bar {
    background: rgba(11, 19, 32, 0.72);
    border-top-color: var(--line);
    border-bottom-color: var(--line);
}

.marquee-items span {
    color: var(--ink-soft);
}

.marquee-items .sep {
    color: rgba(148, 163, 184, 0.26);
}

.about-floating-card,
.pillar-card,
.svc-card,
.stat-box,
.proc-body,
.tech-chip,
.team-card,
.tbtn,
.cinfo-card,
.cinfo-social,
.contact-form-box,
.footer-grid,
.ft-logo,
.toast {
    background: rgba(11, 19, 32, 0.82);
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}

.about-floating-card {
    background: rgba(11, 19, 32, 0.88);
}

.afc-icon,
.proc-icon,
.cinfo-icon,
.svc-card:hover .svc-icon {
    color: var(--white);
    background: linear-gradient(135deg, #14304d 0%, #21486e 55%, #1b3150 100%);
}

.about-img-main,
.about-img-float {
    border-color: var(--line);
}

.ai-focus {
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.38) 0%, rgba(18, 31, 53, 0.82) 100%);
}

.pillar-card {
    background: linear-gradient(180deg, rgba(11, 19, 32, 0.92) 0%, rgba(16, 27, 45, 0.82) 100%);
}

.pillar-card.featured,
.tcard,
.cta-body {
    background: linear-gradient(135deg, #0a1322 0%, #121f35 100%);
}

.pillar-tags span {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.svc-card:hover,
.proc-body:hover,
.team-card:hover,
.pillar-card:hover,
.tech-chip:hover,
.cinfo-card:hover,
.tbtn:hover {
    background: rgba(17, 29, 47, 0.94);
    border-color: var(--line-strong);
}

.stats-overlay {
    background: linear-gradient(135deg, rgba(6, 12, 22, 0.8), rgba(13, 23, 38, 0.9));
}

.stat-box {
    background: rgba(11, 19, 32, 0.72);
}

.stat-ico {
    color: var(--teal);
}

.process {
    background: linear-gradient(180deg, rgba(7, 14, 24, 0.18) 0%, rgba(15, 27, 45, 0.92) 100%);
}

.proc-step:not(:last-child)::after {
    border-top-color: rgba(108, 182, 255, 0.24);
}

.tech-chip:nth-child(odd) {
    background: rgba(16, 27, 45, 0.88);
}

.team {
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.24) 0%, rgba(12, 20, 33, 0.92) 100%);
}

.tc-social a,
.soc-btn,
.ft-social a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--ink-soft);
}

.tc-social a:hover,
.soc-btn:hover,
.ft-social a:hover {
    background: var(--grad);
    border-color: transparent;
    color: var(--white);
}

.tdot {
    background: rgba(148, 163, 184, 0.22);
}

.tdot.active {
    background: var(--blue);
}

.cform-group input,
.cform-group select,
.cform-group textarea,
.nl-form input {
    background: rgba(7, 14, 24, 0.86);
    border-color: var(--line);
    color: var(--ink);
}

.cform-group input::placeholder,
.cform-group textarea::placeholder,
.nl-form input::placeholder {
    color: var(--muted-soft);
}

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus,
.nl-form input:focus {
    background: #111d2f;
    border-color: rgba(108, 182, 255, 0.36);
    box-shadow: 0 0 0 4px rgba(79, 143, 252, 0.12);
}

.cform-group select option {
    background: #0c1626;
    color: var(--ink);
}

.nl-form button,
.back-to-top {
    background: var(--grad);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #4f8ffc 0%, #8a8dff 100%);
}

.footer-bottom .fa-heart {
    color: var(--coral);
}

.footer-bottom p:last-child {
    color: var(--muted-soft);
}