*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --ace-blue: #3B66C7;
    --ace-blue-dark: #1B365D;
    --ace-blue-deep: #0F2340;
    --ace-blue-light: #E8EFF8;
    --ace-blue-glow: rgba(59, 102, 199, 0.15);
    --ace-white: #FFFFFF;
    --ace-bg: #F4F7FB;
    --ace-gray: #F0F3F8;
    --text-dark: #1B2A4A;
    --text-body: #5A6B87;
    --text-muted: #94A3BB;
    --border: #DDE5F0;
    --green: #22C55E;
    --orange: #F59E0B;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--ace-bg);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7
}

/* === NAV === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .45s cubic-bezier(.4, 0, .2, 1)
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ace-blue), #60A5FA, var(--ace-blue), transparent);
    opacity: 0;
    transition: opacity .4s
}

nav.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(27, 54, 93, .08), 0 1px 3px rgba(27, 54, 93, .04)
}

nav.scrolled::after {
    opacity: 1
}

.nav-c {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative
}

.logo-img {
    width: auto;
    height: 70px;
    transition: transform .3s, filter .3s;
    object-fit: contain
}

.logo:hover .logo-img {
    transform: scale(1.05)
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative
}

.nav-links a:hover {
    color: var(--ace-blue);
    background: var(--ace-blue-glow)
}

.nav-links a.active {
    color: var(--ace-blue);
    background: var(--ace-blue-glow)
}

nav:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, .75)
}

nav:not(.scrolled) .nav-links a:hover,
nav:not(.scrolled) .nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, .1)
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ace-blue);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all .3s
}

.nav-phone i {
    font-size: 14px;
    animation: phoneRing 2s ease-in-out infinite
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0)
    }

    5% {
        transform: rotate(15deg)
    }

    10% {
        transform: rotate(-15deg)
    }

    15% {
        transform: rotate(10deg)
    }

    20% {
        transform: rotate(0)
    }
}

nav:not(.scrolled) .nav-phone {
    color: rgba(255, 255, 255, .8)
}

.nav-cta {
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all .35s;
    box-shadow: 0 4px 14px rgba(59, 102, 199, .35);
    position: relative;
    overflow: hidden
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .3s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 102, 199, .5)
}

.nav-cta:hover::before {
    opacity: 1
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

nav.scrolled .hamburger span {
    background: var(--text-dark)
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* === HERO === */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.50) contrast(1.05);
    transition: opacity 1s ease
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(15, 35, 64, .65) 0%, rgba(27, 54, 93, .45) 40%, rgba(59, 102, 199, .2) 100%)
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .2
}

.hero-mesh .mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: meshFloat 12s ease-in-out infinite alternate
}

.mesh-blob:nth-child(1) {
    width: 500px;
    height: 500px;
    background: rgba(59, 102, 199, .5);
    top: -10%;
    left: -5%;
    animation-delay: 0s
}

.mesh-blob:nth-child(2) {
    width: 400px;
    height: 400px;
    background: rgba(96, 165, 250, .4);
    bottom: -10%;
    right: -5%;
    animation-delay: -4s
}

.mesh-blob:nth-child(3) {
    width: 300px;
    height: 300px;
    background: rgba(36, 81, 176, .3);
    top: 40%;
    left: 50%;
    animation-delay: -8s
}

@keyframes meshFloat {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(40px, -30px) scale(1.15)
    }
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(59, 102, 199, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 102, 199, .06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%)
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--ace-blue);
    border-radius: 50%;
    opacity: 0;
    animation: particleRise linear infinite
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    20% {
        opacity: .6
    }

    80% {
        opacity: .3
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center
}

/* Hero slider */
.hero-slide {
    display: none;
    animation: heroFadeIn .8s ease both
}

.hero-slide.active {
    display: block
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 28px
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 2px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s
}

.hero-dot.active {
    background: var(--ace-blue);
    border-color: var(--ace-blue);
    box-shadow: 0 0 12px rgba(59, 102, 199, .5);
    width: 32px;
    border-radius: 6px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 8px;
    background: rgba(59, 102, 199, .12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(59, 102, 199, .2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 102, 199, .5), rgba(96, 165, 250, .3), rgba(59, 102, 199, .1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.hero-eyebrow .dot {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--ace-blue), #60A5FA);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    color: #fff;
    box-shadow: 0 0 12px rgba(59, 102, 199, .4)
}

.hero h1 {
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 16px
}

.hero h1 .blue {
    background: linear-gradient(135deg, #60A5FA, var(--ace-blue), #93C5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block
}

.hero h1 .blue::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(59, 102, 199, .3), rgba(96, 165, 250, .15));
    border-radius: 4px;
    z-index: -1
}

.hero h1 .line {
    display: block;
    overflow: hidden
}

.hero h1 .line-inner {
    display: block;
    animation: slideUp .8s cubic-bezier(.23, 1, .32, 1) both
}

.hero h1 .line:nth-child(2) .line-inner {
    animation-delay: .15s
}

.hero h1 .line:nth-child(3) .line-inner {
    animation-delay: .3s
}

@keyframes slideUp {
    0% {
        transform: translateY(110%)
    }

    100% {
        transform: translateY(0)
    }
}

.hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 24px
}

.btn-ace {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(59, 102, 199, .4);
    position: relative;
    overflow: hidden
}

.btn-ace::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 60%);
    opacity: 0;
    transition: opacity .3s
}

.btn-ace:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(59, 102, 199, .55)
}

.btn-ace:hover::before {
    opacity: 1
}

.btn-ace i {
    transition: transform .3s
}

.btn-ace:hover i {
    transform: translateX(4px)
}

.btn-glass {
    padding: 12px 28px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, .08)
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px
}

.trust-badges {
    display: flex;
    gap: 10px
}

.trust-badge {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: rgba(96, 165, 250, .8);
    transition: all .35s cubic-bezier(.4, 0, .2, 1)
}

.trust-badge:hover {
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    color: #fff;
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 0 24px rgba(59, 102, 199, .45);
    border-color: transparent
}

.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5
}

.trust-text strong {
    color: #fff;
    font-size: 18px;
    display: block;
    font-weight: 800
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .2), transparent)
}

/* Hero right - floating dashboard */
.hero-dashboard {
    position: relative;
    perspective: 1200px
}

.hero-dash-main {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    transform: rotateY(-2deg) rotateX(1deg);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2)
}

.hero-dash-main:hover {
    transform: rotateY(0) rotateX(0)
}

.hero-dash-main::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 102, 199, .35), rgba(96, 165, 250, .15), rgba(59, 102, 199, .05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.dash-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 800
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--green);
    font-weight: 700
}

.dash-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0)
    }
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px
}

.dash-stat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.dash-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 102, 199, .08), transparent);
    opacity: 0;
    transition: opacity .3s
}

.dash-stat:hover {
    border-color: rgba(59, 102, 199, .25);
    transform: scale(1.03)
}

.dash-stat:hover::before {
    opacity: 1
}

.dash-stat .ds-num {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    position: relative
}

.dash-stat .ds-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
    position: relative
}

.dash-progress {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 12px 14px
}

.dash-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 8px;
    font-weight: 600
}

.dash-progress-label span:last-child {
    color: #60A5FA
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ace-blue), #60A5FA, #93C5FD);
    border-radius: 4px;
    width: 0;
    animation: progressAnim 2s ease forwards 1s;
    position: relative
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(96, 165, 250, .6);
    opacity: 0;
    animation: progressDot 2s ease forwards 1s
}

@keyframes progressAnim {
    to {
        width: 92%
    }
}

@keyframes progressDot {
    to {
        opacity: 1
    }
}

.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 5s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, .2)
}

.hero-float-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s
}

.hero-float-2 {
    bottom: -16px;
    left: -16px;
    animation-delay: -2.5s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-12px) rotate(1deg)
    }
}

.hero-float .hf-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .3s
}

.hero-float:hover .hf-icon {
    transform: scale(1.1) rotate(-5deg)
}

.hero-float-1 .hf-icon {
    background: linear-gradient(135deg, var(--ace-blue-light), #D6E4F7);
    color: var(--ace-blue)
}

.hero-float-2 .hf-icon {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: var(--orange)
}

.hero-float .hf-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark)
}

.hero-float .hf-sub {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    cursor: pointer;
    transition: color .3s
}

.hero-scroll:hover {
    color: rgba(255, 255, 255, .7)
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    position: relative
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, .5);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px)
    }
}

/* === MARQUEE === */
.marquee-section {
    padding: 40px 0;
    background: var(--ace-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden
}

.marquee {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap
}

.marquee-item i {
    color: var(--ace-blue);
    font-size: 18px
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--ace-blue);
    border-radius: 50%;
    opacity: .3
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* === SERVICES === */
.services {
    padding: 120px 40px
}

.container {
    max-width: 1320px;
    margin: 0 auto
}

.sec-header {
    text-align: center;
    margin-bottom: 64px
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--ace-blue-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ace-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px
}

.sec-title {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 14px
}

.sec-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7
}

.services-creative {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.svc {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s;
    position: relative
}

.svc:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(59, 102, 199, .1);
    border-color: var(--ace-blue)
}

.svc-img {
    height: 200px;
    overflow: hidden;
    position: relative
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.svc:hover .svc-img img {
    transform: scale(1.08)
}

.svc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(27, 54, 93, .6));
    opacity: 0;
    transition: opacity .4s
}

.svc:hover .svc-img::after {
    opacity: 1
}

.svc-num {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    background: var(--ace-blue);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    z-index: 1
}

.svc-body {
    padding: 28px 24px
}

.svc-body h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px
}

.svc-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ace-blue);
    text-decoration: none;
    transition: gap .3s
}

.svc-link:hover {
    gap: 14px
}

/* === ABOUT === */
.about {
    padding: 120px 40px;
    background: var(--ace-blue-deep);
    color: #fff;
    position: relative;
    overflow: hidden
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 102, 199, .2), transparent 70%);
    border-radius: 50%
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    height: 220px
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.about-img:hover img {
    transform: scale(1.06)
}

.about-img:nth-child(2) {
    margin-top: 32px
}

.about-img:nth-child(3) {
    margin-top: -32px
}

.about-right h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 20px
}

.about-right>p {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 36px
}

.mvv {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.mvv-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    transition: all .3s
}

.mvv-item:hover {
    background: rgba(59, 102, 199, .1);
    border-color: rgba(59, 102, 199, .3)
}

.mvv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(59, 102, 199, .15);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--ace-blue);
    flex-shrink: 0
}

.mvv-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.mvv-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

/* === SECURITY FEATURES === */
.features {
    padding: 120px 40px;
    background: var(--ace-white)
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.feat {
    background: var(--ace-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s
}

.feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59, 102, 199, .08);
    border-color: var(--ace-blue)
}

.feat-img {
    height: 180px;
    overflow: hidden
}

.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.feat:hover .feat-img img {
    transform: scale(1.06)
}

.feat-body {
    padding: 28px 24px
}

.feat-body .feat-pill {
    display: inline-flex;
    padding: 4px 14px;
    background: var(--ace-blue-light);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ace-blue);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px
}

.feat-body h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px
}

.feat-body p {
    font-size: 14px;
    line-height: 1.7
}

/* === CTA === */
.cta {
    padding: 40px 40px 120px
}

.cta-card {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px
}

.cta-left {
    position: relative;
    overflow: hidden
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cta-right {
    background: var(--ace-blue);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.cta-right::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%
}

.cta-right::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%
}

.cta-right h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    position: relative
}

.cta-right p {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative
}

.cta-btns {
    display: flex;
    gap: 12px;
    position: relative
}

.btn-white {
    padding: 16px 36px;
    background: #fff;
    color: var(--ace-blue);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.btn-outline-w {
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s
}

.btn-outline-w:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    transform: translateY(-3px)
}

.cta-contact {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    position: relative
}

.cta-ci {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6)
}

.cta-ci i {
    color: #fff;
    font-size: 15px
}

.cta-ci a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .3s
}

.cta-ci a:hover {
    color: #fff
}

/* === FOOTER === */
footer {
    padding: 72px 40px 36px;
    background: var(--ace-blue-deep);
    color: #fff
}

.f-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px
}

.f-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 300px
}

.f-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.f-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: all .3s;
    font-size: 14px
}

.f-socials a:hover {
    border-color: var(--ace-blue);
    color: var(--ace-blue);
    background: rgba(59, 102, 199, .1)
}

.f-col h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.f-col ul {
    list-style: none
}

.f-col ul li {
    margin-bottom: 12px
}

.f-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .3s
}

.f-col ul a:hover {
    color: var(--ace-blue)
}

.f-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between
}

.f-bottom p,
.f-bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    text-decoration: none
}

/* === PAGE HERO BANNER === */
.page-hero {
    position: relative;
    padding: 180px 40px 80px;
    background: var(--ace-blue-deep);
    overflow: hidden;
    text-align: center
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 102, 199, .15) 0%, transparent 50%, rgba(96, 165, 250, .1) 100%);
    z-index: 0
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 102, 199, .2), transparent 70%);
    border-radius: 50%;
    z-index: 0
}

.page-hero-mesh {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(59, 102, 199, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 102, 199, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    z-index: 0
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px
}

.page-hero h1 .blue {
    background: linear-gradient(135deg, #60A5FA, var(--ace-blue), #93C5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    margin-bottom: 28px
}

.breadcrumb a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .3s
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb span {
    font-size: 13px;
    font-weight: 600;
    color: #60A5FA
}

.breadcrumb i.fa-chevron-right {
    font-size: 10px;
    color: rgba(255, 255, 255, .3)
}

/* === ABOUT PAGE === */
.about-detail {
    padding: 120px 40px;
    background: var(--ace-white)
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-detail-text h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 24px
}

.about-detail-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px
}

.about-detail-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px
}

.about-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.about-detail-image:hover img {
    transform: scale(1.04)
}

.about-detail-image .exp-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(59, 102, 199, .4)
}

.exp-badge .exp-num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1
}

.exp-badge .exp-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .8
}

.about-stats {
    padding: 80px 40px;
    background: var(--ace-blue-deep)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    transition: all .4s
}

.stat-card:hover {
    background: rgba(59, 102, 199, .12);
    border-color: rgba(59, 102, 199, .3);
    transform: translateY(-6px)
}

.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 102, 199, .15);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #60A5FA;
    margin: 0 auto 16px
}

.stat-card .stat-num {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px
}

.stat-card .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.about-mvv-section {
    padding: 120px 40px;
    background: var(--ace-bg)
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

.mvv-card {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ace-blue), #60A5FA);
    transform: scaleX(0);
    transition: transform .4s
}

.mvv-card:hover::before {
    transform: scaleX(1)
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 102, 199, .1);
    border-color: var(--ace-blue)
}

.mvv-card .mvv-card-icon {
    width: 64px;
    height: 64px;
    background: var(--ace-blue-light);
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: var(--ace-blue);
    margin: 0 auto 20px;
    transition: all .3s
}

.mvv-card:hover .mvv-card-icon {
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    color: #fff;
    transform: scale(1.1) rotate(-5deg)
}

.mvv-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px
}

.mvv-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body)
}

/* === SERVICES PAGE === */
.services-page {
    padding: 120px 40px;
    background: var(--ace-bg)
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px
}

.svc-page-card {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all .5s;
    position: relative
}

.svc-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(59, 102, 199, .12);
    border-color: var(--ace-blue)
}

.svc-page-card .svc-page-img {
    height: 240px;
    overflow: hidden;
    position: relative
}

.svc-page-card .svc-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.svc-page-card:hover .svc-page-img img {
    transform: scale(1.08)
}

.svc-page-card .svc-page-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 35, 64, .7));
    opacity: 0;
    transition: opacity .4s
}

.svc-page-card:hover .svc-page-img::after {
    opacity: 1
}

.svc-page-card .svc-page-num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(59, 102, 199, .4)
}

.svc-page-card .svc-page-body {
    padding: 32px 28px
}

.svc-page-card .svc-page-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px
}

.svc-page-card .svc-page-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px
}

.svc-page-card .svc-page-body .btn-ace {
    font-size: 13px;
    padding: 10px 24px
}

/* === CAREERS PAGE === */
.careers-section {
    padding: 120px 40px;
    background: var(--ace-bg)
}

.careers-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center
}

.careers-intro p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7
}

.careers-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto
}

.career-card {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.career-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ace-blue), #60A5FA);
    transform: scaleY(0);
    transition: transform .4s;
    border-radius: 0 4px 4px 0
}

.career-card:hover::before {
    transform: scaleY(1)
}

.career-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 36px rgba(59, 102, 199, .08);
    border-color: var(--ace-blue)
}

.career-card-info {
    display: flex;
    align-items: center;
    gap: 20px
}

.career-card-icon {
    width: 52px;
    height: 52px;
    background: var(--ace-blue-light);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--ace-blue);
    flex-shrink: 0;
    transition: all .3s
}

.career-card:hover .career-card-icon {
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    color: #fff
}

.career-card-info h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px
}

.career-card-info .career-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600
}

.career-meta span {
    display: flex;
    align-items: center;
    gap: 5px
}

.career-card .btn-ace {
    font-size: 13px;
    padding: 10px 22px;
    white-space: nowrap
}

/* === PROJECTS PAGE === */
.projects-section {
    padding: 120px 40px;
    background: var(--ace-bg)
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

.project-card {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s;
    position: relative
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(59, 102, 199, .1);
    border-color: var(--ace-blue)
}

.project-card .project-img {
    height: 220px;
    overflow: hidden;
    position: relative
}

.project-card .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.project-card:hover .project-img img {
    transform: scale(1.08)
}

.project-card .project-img .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 35, 64, .85));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .4s
}

.project-card:hover .project-img .project-overlay {
    opacity: 1
}

.project-overlay .project-cat {
    display: inline-flex;
    padding: 4px 14px;
    background: rgba(59, 102, 199, .8);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em
}

.project-card .project-body {
    padding: 24px
}

.project-card .project-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px
}

.project-card .project-body p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 16px
}

/* === BLOG PAGE === */
.blog-section {
    padding: 120px 40px;
    background: var(--ace-bg)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px
}

.blog-card {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(59, 102, 199, .1);
    border-color: var(--ace-blue)
}

.blog-card .blog-img {
    height: 240px;
    overflow: hidden;
    position: relative
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.blog-card:hover .blog-img img {
    transform: scale(1.06)
}

.blog-card .blog-img .blog-cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 16px;
    background: linear-gradient(135deg, var(--ace-blue), #2451B0);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
    box-shadow: 0 4px 12px rgba(59, 102, 199, .35)
}

.blog-card .blog-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.blog-card .blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px
}

.blog-meta span i {
    color: var(--ace-blue);
    font-size: 12px
}

.blog-card .blog-body h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 12px
}

.blog-card .blog-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .3s
}

.blog-card .blog-body h3 a:hover {
    color: var(--ace-blue)
}

.blog-card .blog-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
    flex: 1
}

.blog-card .blog-body .svc-link {
    margin-top: auto
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 120px 40px;
    background: var(--ace-bg)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact-info-card {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all .4s
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(59, 102, 199, .08);
    border-color: var(--ace-blue)
}

.contact-info-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.contact-info-card h3 i {
    color: var(--ace-blue)
}

.contact-info-card .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6
}

.contact-detail i {
    color: var(--ace-blue);
    margin-top: 4px;
    flex-shrink: 0
}

.contact-detail a {
    color: var(--text-body);
    text-decoration: none;
    transition: color .3s
}

.contact-detail a:hover {
    color: var(--ace-blue)
}

.contact-form-wrap {
    background: var(--ace-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ace-blue), #60A5FA, var(--ace-blue))
}

.contact-form-wrap h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px
}

.contact-form-wrap > p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark)
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--ace-bg);
    transition: all .3s;
    outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ace-blue);
    box-shadow: 0 0 0 3px rgba(59, 102, 199, .1);
    background: #fff
}

.form-group textarea {
    resize: vertical;
    min-height: 140px
}

.contact-form .btn-ace {
    align-self: flex-start;
    padding: 14px 36px;
    font-size: 15px
}

.contact-map {
    padding: 0 40px 120px;
    background: var(--ace-bg)
}

.contact-map .map-wrap {
    max-width: 1320px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block
}

/* === ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.rd1 {
    transition-delay: .1s
}

.rd2 {
    transition-delay: .2s
}

.rd3 {
    transition-delay: .3s
}

.rd4 {
    transition-delay: .4s
}

.rd5 {
    transition-delay: .5s
}

/* === RESPONSIVE === */
@media(max-width:1024px) {

    .hero-content,
    .about-grid,
    .cta-card {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .services-creative,
    .feat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .f-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-dashboard {
        display: none
    }

    .about-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-page-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mvv-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        overflow-y: visible
    }

    .hero-content {
        padding: 100px 20px 40px;
        gap: 20px
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 20px
    }

    .hamburger {
        display: flex
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(15, 35, 64, .98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right .4s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .3)
    }

    .nav-links.open {
        right: 0
    }

    .nav-links a {
        color: rgba(255, 255, 255, .7) !important;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        border-radius: 0
    }

    .nav-links a:hover {
        color: #fff !important;
        background: transparent
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        justify-content: center
    }

    .services-creative,
    .feat-grid,
    .services-page-grid,
    .projects-grid,
    .mvv-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .about-images {
        grid-template-columns: 1fr 1fr
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start
    }

    .trust-divider {
        display: none
    }

    .cta-contact {
        flex-direction: column;
        gap: 12px
    }

    .f-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .f-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .hero-scroll {
        display: none
    }

    .page-hero {
        padding: 140px 20px 60px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .career-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .about-detail-image {
        height: 320px
    }
}