:root {
    --primary: #00AEEF;
    --secondary: #3DBE8A;
    --dark: #1A1A2E;
    --text: #2D2D2D;
    --light-bg: #F4F9FC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #00AEEF, #3DBE8A);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    font-family: var(--font-main);
    background: var(--white);
}

body:not(.header-light) {
    background: var(--dark);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: var(--transition);
}

.btn--outline-gradient {
    padding: 10px 22px;
    color: var(--dark);
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        var(--gradient) border-box;
    border: 2px solid transparent;
    border-radius: 6px;
}

.btn--outline-gradient:hover {
    color: var(--white);
    background: var(--gradient);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
}

.top-bar {
    color: var(--light-bg);
    font-size: 13px;
    background: var(--white);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    gap: 24px;
}

.top-bar__contact,
.top-bar__social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar__link,
.top-bar__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    transition: var(--transition);
}

.top-bar__link i,
.top-bar__social i {
    color: var(--primary);
}

.top-bar__link:hover,
.top-bar__social a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.main-nav {
    background: var(--white);
}

.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 32px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: 200px;
    height: auto;
    transition: var(--transition);
}

.site-header.scrolled .site-logo img {
    width: 200px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.nav-menu__item {
    position: relative;
}

.nav-menu__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 84px;
    padding: 0 13px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-menu__link::after {
    position: absolute;
    right: 13px;
    bottom: 22px;
    left: 13px;
    height: 3px;
    content: "";
    background: var(--primary);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.nav-menu__link:hover,
.nav-menu__link.active {
    color: var(--primary);
}

.nav-menu__link:hover::after,
.nav-menu__link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle i {
    font-size: 11px;
    transition: var(--transition);
}

.nav-menu__item--has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    width: 320px;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(26, 26, 46, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-menu__item--has-dropdown:hover .dropdown-menu,
.nav-menu__item--has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-menu a i {
    width: 20px;
    color: var(--primary);
    text-align: center;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(0, 174, 239, 0.08);
    transform: translateX(4px);
}

.nav-menu__item--cta {
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--white);
    border: 1px solid rgba(26, 26, 46, 0.12);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle i {
    font-size: 20px;
}

.nav-toggle:hover,
.nav-toggle.is-active {
    color: var(--white);
    background: var(--gradient);
    border-color: transparent;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--dark);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1.1fr 1.15fr;
    gap: 42px;
    padding: 76px 0 52px;
}

.footer__logo {
    display: inline-block;
    max-width: 200px;
    margin-bottom: 18px;
    padding: 8px 10px;
    border-radius: 8px;
}

.footer__tagline {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.footer__description {
    max-width: 330px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.75;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--gradient);
    transform: translateY(-2px);
}

.footer__heading {
    margin-bottom: 22px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.footer__links,
.footer__contact {
    display: grid;
    gap: 13px;
}

.footer__links a,
.footer__contact a {
    color: var(--light-bg);
    font-size: 14px;
    line-height: 1.5;
    transition: var(--transition);
}

.footer__links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__links:not(.footer__links--services) a::before {
    width: 0;
    overflow: hidden;
    color: var(--primary);
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
    transition: var(--transition);
}

.footer__links:not(.footer__links--services) a:hover::before {
    width: 13px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--primary);
}

.footer__links--services i,
.footer__contact i {
    width: 18px;
    color: var(--primary);
    text-align: center;
}

.footer__contact li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer__cta {
    margin-top: 24px;
    background:
        linear-gradient(var(--dark), var(--dark)) padding-box,
        var(--gradient) border-box;
    color: var(--white);
}

.footer__cta:hover {
    background: var(--gradient);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 62px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__legal a {
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--primary);
}

/* Hero Section */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #1A1A2E 0%, #0D2137 100%);
}

.hero-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px, 72px 72px, 24px 24px;
    opacity: 0.08;
    animation: techGridMove 20s linear infinite;
}

.hero-section__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(120px);
    animation: ambientPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-section__glow--left {
    top: 22%;
    left: -110px;
    background: rgba(0, 174, 239, 0.15);
}

.hero-section__glow--right {
    right: -100px;
    bottom: 15%;
    background: rgba(61, 190, 138, 0.12);
    animation-delay: 1.2s;
}

.hero-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr);
    align-items: center;
    gap: 56px;
    min-height: 100vh;
    padding: 136px 0 170px;
}

.hero-section__content {
    width: min(100%, 900px);
    text-align: left;
}

/* Hero Tech Dashboard Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    height: 480px;
    margin: 0 0 0 auto;
    animation: visualFadeIn 0.8s ease 0.25s both;
}

.hero-visual__grid {
    position: absolute;
    inset: 8%;
    background-image:
        linear-gradient(rgba(0,174,239,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,190,138,0.10) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    mask-image: radial-gradient(circle, #000 0%, transparent 68%);
}

.hero-orbit-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.hero-orbit-lines line {
    stroke: url(#orbitLineGradient);
    stroke-width: 1.5;
    stroke-dasharray: 10 12;
    animation: lineFlow 2s linear infinite;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-style: dashed;
    border-radius: 50%;
    opacity: 0;
    will-change: transform;
    animation-fill-mode: both;
}

.orbit-ring--one {
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(0,174,239,0.3);
    animation: ringFade 0.7s ease 0.5s both, orbitRotate 20s linear 0.5s infinite;
}

.orbit-ring--two {
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(61,190,138,0.2);
    animation: ringFade 0.7s ease 0.6s both, orbitRotateReverse 30s linear 0.6s infinite;
}

.hub-circle {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    color: var(--white);
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0,174,239,0.4);
    will-change: transform;
    animation: hubIntro 0.7s ease 0.3s both, hubPulse 3s ease-in-out 1s infinite;
}

.hub-circle i {
    font-size: 48px;
}

.hub-circle img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

.service-node {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    will-change: transform;
    transition: transform 0.3s ease, border-color 0.3s ease;
    animation: nodeIntro 0.55s ease both, nodeFloat 4s ease-in-out infinite;
}

.service-node:hover {
    border-color: rgba(0,174,239,0.45);
    transform: scale(1.06);
}

.service-node i {
    font-size: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-node span {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.service-node--system {
    top: 40px;
    left: 50%;
    translate: -50% 0;
    animation-delay: 0.7s, 1.2s;
}

.service-node--telecom {
    top: 122px;
    right: 6px;
    animation-delay: 0.8s, 1.5s;
}

.service-node--digital {
    right: 18px;
    bottom: 92px;
    animation-delay: 0.9s, 1.8s;
}

.service-node--mepf {
    bottom: 92px;
    left: 28px;
    animation-delay: 1s, 2.1s;
}

.service-node--hvac {
    top: 122px;
    left: 4px;
    animation-delay: 1.1s, 2.4s;
}

.hero-particle {
    position: absolute;
    z-index: 1;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    will-change: transform, opacity;
    animation: particleFloat 5s ease-in-out infinite;
}

.hero-particle--1 { top: 12%; left: 18%; animation-delay: 0.2s; }
.hero-particle--2 { top: 18%; right: 20%; width: 3px; height: 3px; background: var(--secondary); animation-delay: 0.8s; }
.hero-particle--3 { top: 38%; left: 7%; width: 2px; height: 2px; animation-delay: 1.2s; }
.hero-particle--4 { top: 48%; right: 8%; background: var(--secondary); animation-delay: 1.6s; }
.hero-particle--5 { bottom: 18%; left: 18%; width: 3px; height: 3px; animation-delay: 2s; }
.hero-particle--6 { right: 25%; bottom: 12%; animation-delay: 2.4s; }
.hero-particle--7 { top: 64%; left: 44%; width: 2px; height: 2px; background: var(--secondary); animation-delay: 2.8s; }
.hero-particle--8 { top: 28%; right: 42%; width: 3px; height: 3px; animation-delay: 3.2s; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 24px;
    padding: 8px 16px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 999px;
    animation: fadeUp 0.75s ease both;
}

.hero-badge::before {
    margin-right: 9px;
    content: "*";
    color: var(--secondary);
}

.hero-title {
    display: grid;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
}

.hero-title span {
    display: block;
    animation: fadeUp 0.75s ease both;
}

.hero-title span:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    max-width: 580px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    animation: fadeUp 0.75s ease 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
    animation: fadeUp 0.75s ease 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-btn--primary {
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.35);
}

.hero-btn--primary:hover {
    box-shadow: 0 14px 42px rgba(0, 174, 239, 0.48);
    transform: scale(1.04);
}

.hero-btn--secondary {
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn--secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.hero-btn--secondary i {
    transition: var(--transition);
}

.hero-btn--secondary:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: inline-flex;
    align-items: stretch;
    overflow: hidden;
    animation: fadeUp 0.75s ease 1s both;
}

.hero-stat {
    display: grid;
    min-width: 156px;
    padding: 0 24px;
    text-align: center;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat i {
    margin-bottom: 10px;
    font-size: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat strong {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 86px;
    left: 50%;
    z-index: 3;
    display: inline-grid;
    gap: 8px;
    justify-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 600;
    transform: translateX(-50%);
    animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 18px;
}

.scroll-indicator:hover {
    color: var(--primary);
}

/* Services Quick Strip */
.services-quick-strip {
    position: relative;
    z-index: 10;
    padding: 40px 0;
    margin-top: -40px;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.service-quick-card {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 148px;
    padding: 24px 18px 22px;
    color: var(--text);
    text-align: center;
    border-right: 1px solid rgba(26, 26, 46, 0.08);
    transition: var(--transition);
}

.service-quick-card:last-child {
    border-right: 0;
}

.service-quick-card::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 3px;
    content: "";
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.service-quick-card i {
    font-size: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-quick-card h3 {
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.service-quick-card p {
    color: rgba(45, 45, 45, 0.68);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-quick-card:hover {
    transform: translateY(-4px);
}

.service-quick-card:hover::after {
    transform: scaleX(1);
}

/* Homepage Services Section */
.services-section {
    background: var(--light-bg);
}

.section-header__text {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(45, 45, 45, 0.7);
    font-size: 16px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card:nth-child(5) {
    grid-column: 2 / 3;
    transition-delay: 0.5s;
}

.service-card:hover {
    border-color: rgba(0,174,239,0.4);
    box-shadow: 0 20px 50px rgba(0,174,239,0.15);
    transform: translateY(-8px);
}

.service-card__number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(0,174,239,0.08);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0,174,239,0.1), rgba(61,190,138,0.1));
    border: 1px solid rgba(0,174,239,0.2);
    border-radius: 18px;
}

.service-card__icon i,
.service-detail-hero__icon i,
.feature-card i,
.service-nav-card i {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card__icon i {
    font-size: 32px;
}

.service-card h3 {
    margin: 24px 0 14px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.service-card p {
    margin-bottom: 22px;
    color: rgba(45, 45, 45, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(45, 45, 45, 0.8);
    font-size: 14px;
    line-height: 1.45;
}

.service-card li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--gradient);
    border-radius: 50%;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.service-card__link i {
    transition: var(--transition);
}

.service-card__link:hover {
    text-decoration: underline;
}

.service-card__link:hover i {
    transform: translateX(5px);
}

/* Service Detail Pages */
.service-detail-hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #1A1A2E, #0D2137);
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-hero__inner {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 420px;
    padding: 92px 0 70px;
    text-align: center;
}

.breadcrumb {
    position: absolute;
    top: 34px;
    left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span:last-child {
    color: var(--white);
    font-weight: 700;
}

.service-detail-hero__icon {
    margin-bottom: 20px;
}

.service-detail-hero__icon i {
    font-size: 64px;
}

.service-detail-hero h1 {
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
}

.service-detail-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.7;
}

.service-page-body {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 65%) minmax(280px, 1fr);
    gap: 42px;
    align-items: start;
}

.service-content-panel {
    display: grid;
    gap: 44px;
}

.service-content-block {
    padding: 36px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-content-block h2 {
    margin-bottom: 18px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
}

.service-content-block p {
    color: rgba(45,45,45,0.78);
    font-size: 16px;
    line-height: 1.85;
}

.service-content-block p + p {
    margin-top: 16px;
}

.process-timeline {
    position: relative;
    display: grid;
    gap: 28px;
    margin-top: 10px;
}

.process-timeline::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 19px;
    width: 2px;
    content: "";
    background: var(--gradient);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
}

.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step:nth-child(4) {
    transition-delay: 0.4s;
}

.process-step__number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    font-weight: 800;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0,174,239,0.24);
}

.process-step h3 {
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 17px;
    font-weight: 800;
}

.process-step p {
    color: rgba(45,45,45,0.66);
    font-size: 14px;
    line-height: 1.65;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(0,174,239,0.35);
    box-shadow: 0 16px 32px rgba(0,174,239,0.12);
    transform: translateY(-4px);
}

.feature-card i {
    margin-bottom: 12px;
    font-size: 22px;
}

.feature-card h3 {
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 800;
}

.feature-card p {
    color: rgba(45,45,45,0.64);
    font-size: 13px;
    line-height: 1.55;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 24px;
}

.service-sidebar-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-sidebar-card h2 {
    margin-bottom: 18px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
}

.service-nav-list {
    display: grid;
    gap: 10px;
}

.service-nav-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    background: var(--light-bg);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: var(--transition);
}

.service-nav-card:hover,
.service-nav-card.active {
    color: var(--primary);
    border-color: rgba(0,174,239,0.25);
    background: rgba(0,174,239,0.07);
}

.service-quote-card {
    color: var(--white);
    background: var(--gradient);
}

.service-quote-card h2,
.service-quote-card p {
    color: var(--white);
}

.service-quote-card p {
    margin-bottom: 22px;
    opacity: 0.9;
    line-height: 1.7;
}

.service-quote-card .why-cta__button {
    width: 100%;
}

.quote-form-card {
    padding: 32px;
    color: var(--white);
    background: var(--dark);
    border-color: rgba(255,255,255,0.08);
}

.quote-form-card h2 {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 22px;
}

.quote-form-card p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.quote-form {
    display: grid;
    gap: 12px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    color: var(--white);
    font: inherit;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    outline: 0;
    transition: var(--transition);
}

.quote-form textarea {
    min-height: 112px;
    resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255,255,255,0.46);
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--primary);
}

.quote-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    color: var(--white);
    font-weight: 800;
    background: var(--gradient);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.quote-form button:hover {
    box-shadow: 0 12px 28px rgba(0,174,239,0.25);
    transform: translateY(-2px);
}

.other-services-card h2,
.contact-info-card h2 {
    font-size: 20px;
}

.other-services-list {
    display: grid;
    gap: 10px;
}

.other-service-link {
    display: grid;
    grid-template-columns: 22px 1fr 14px;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,174,239,0.1);
    transition: var(--transition);
}

.other-service-link:last-child {
    border-bottom: 0;
}

.other-service-link i:first-child {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.other-service-link i:last-child {
    color: rgba(26,26,46,0.35);
    font-size: 12px;
    transition: var(--transition);
}

.other-service-link:hover {
    color: var(--primary);
}

.other-service-link:hover i:last-child {
    color: var(--primary);
    transform: translateX(4px);
}

.contact-info-card {
    color: var(--white);
    background: var(--gradient);
    border: 0;
}

.contact-info-card h2 {
    color: var(--white);
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-list li,
.contact-info-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
}

.contact-info-list i {
    width: 18px;
    margin-top: 3px;
    color: var(--white);
    text-align: center;
}

/* Inner Pages: Contact, About, Why Us */
.page-hero--compact,
.page-hero--compact .service-detail-hero__inner {
    min-height: 380px;
}

.contact-section,
.faq-section,
.vmv-section,
.trust-section,
.edge-section,
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(320px, 40%);
    gap: 36px;
    align-items: start;
}

.contact-form-card {
    padding: 48px 40px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-heading h2,
.office-card h2,
.quick-connect h2,
.response-card h2 {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
}

.form-heading h2::after,
.office-card h2::after {
    display: block;
    width: 60px;
    height: 3px;
    margin: 12px 0 14px;
    content: "";
    background: var(--gradient);
    border-radius: 999px;
}

.form-heading p {
    margin-bottom: 28px;
    color: rgba(0,0,0,0.6);
    font-size: 15px;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-wrap {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.field-wrap i {
    position: absolute;
    top: 16px;
    left: 14px;
    color: var(--primary);
    font-size: 16px;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    color: var(--text);
    font: 15px var(--font-main);
    background: #F8FAFE;
    border: 1px solid rgba(0,174,239,0.15);
    border-radius: 10px;
    outline: 0;
    transition: var(--transition);
}

.field-wrap--phone span {
    position: absolute;
    top: 15px;
    left: 42px;
    color: rgba(45,45,45,0.6);
    font-size: 14px;
}

.field-wrap--phone input {
    padding-left: 76px;
}

.field-wrap--select::after {
    position: absolute;
    top: 18px;
    right: 16px;
    color: var(--primary);
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    pointer-events: none;
}

.field-wrap select {
    appearance: none;
    padding-left: 16px;
}

.field-wrap--textarea textarea {
    padding-left: 16px;
    resize: vertical;
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.field-wrap.error input,
.field-wrap.error select,
.field-wrap.error textarea {
    border-color: #FF6B6B;
}

.field-wrap.success input,
.field-wrap.success select,
.field-wrap.success textarea {
    border-color: var(--secondary);
}

.field-wrap small,
.consent-error {
    display: block;
    min-height: 16px;
    margin-top: 5px;
    color: #FF6B6B;
    font-size: 12px;
}

.consent-check {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(45,45,45,0.72);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.consent-check input {
    position: absolute;
    opacity: 0;
}

.consent-check span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #F8FAFE;
    border: 1px solid rgba(0,174,239,0.3);
    border-radius: 5px;
}

.consent-check input:checked + span {
    background: var(--gradient);
    border-color: transparent;
}

.consent-check input:checked + span::before {
    color: var(--white);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    color: var(--white);
    font: 700 20px var(--font-heading);
    background: var(--gradient);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit:hover {
    box-shadow: 0 12px 32px rgba(0,174,239,0.32);
    transform: scale(1.02);
}

.form-success {
    padding: 54px 34px;
    color: var(--white);
    text-align: center;
    background: var(--gradient);
    border-radius: 18px;
}

.form-success i {
    margin-bottom: 18px;
    font-size: 52px;
}

.office-card,
.quick-connect,
.response-card {
    padding: 36px;
    border-radius: 20px;
}

.office-card {
    color: var(--white);
    background: var(--dark);
}

.office-card h2,
.response-card h2 {
    color: var(--white);
}

.office-list {
    display: grid;
    gap: 20px;
}

.office-list > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
}

.office-list i,
.office-social a:hover i {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.office-list p,
.office-list a {
    color: var(--white);
    font-size: 15px;
    line-height: 1.65;
}

.office-list a:hover {
    color: var(--primary);
}

.office-social {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.office-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transition: var(--transition);
}

.office-social a:hover {
    background: var(--gradient);
}

.quick-connect {
    margin-top: 24px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.quick-connect h2 {
    margin-bottom: 18px;
    font-size: 22px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    color: var(--white);
    font-weight: 800;
    background: var(--gradient);
    border-radius: 10px;
}

.quick-btn--whatsapp {
    margin-top: 12px;
    background: #25D366;
}

.response-card {
    margin-top: 24px;
    color: var(--white);
    background: var(--gradient);
}

.response-card > i {
    margin-bottom: 14px;
    font-size: 32px;
}

.response-card h2 {
    font-size: 22px;
}

.response-card p,
.response-card li {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.7;
}

.response-card ul {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.map-section {
    background: var(--white);
}

.map-info-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 20px;
    color: var(--white);
    font-size: 14px;
    background: var(--dark);
}

.map-info-bar div {
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.18);
}

.map-info-bar div:last-child {
    border-right: 0;
}

.map-info-bar i {
    color: var(--primary);
    margin-right: 8px;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.faq-container {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 12px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    color: var(--dark);
    font: 600 18px var(--font-heading);
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0,174,239,0.04);
}

.faq-item.active .faq-question {
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(0,0,0,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.story-section,
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 70px;
    align-items: center;
}

.story-content p:not(.section-label) {
    color: rgba(0,0,0,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-dark-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(360px, 80%);
    padding: 54px 34px;
    background: var(--dark);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(26,26,46,0.22);
}

.brand-dark-card img {
    padding: 10px;
    border-radius: 8px;
}

.brand-dark-card p {
    font: 700 20px var(--font-heading);
    text-align: center;
}

.vmv-grid,
.trust-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.vmv-card,
.trust-badge,
.testimonial-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.1);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.vmv-card {
    border-top: 3px solid var(--primary);
}

.vmv-card--green {
    border-top-color: var(--secondary);
}

.vmv-card--values {
    border-top-color: var(--primary);
}

.vmv-card i,
.trust-badge i,
.testimonial-card > i {
    margin-bottom: 22px;
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vmv-card h3,
.trust-badge h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
}

.vmv-card p,
.vmv-card li,
.trust-badge p {
    color: rgba(45,45,45,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.vmv-card li {
    position: relative;
    padding-left: 18px;
}

.vmv-card li::before {
    position: absolute;
    left: 0;
    content: "";
    width: 7px;
    height: 7px;
    top: 10px;
    background: var(--gradient);
    border-radius: 50%;
}

.team-card {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: 0 auto; */
    padding: 48px 40px;
    text-align: center;
    background: var(--light-bg);
    border: 1px solid rgba(0,174,239,0.15);
    border-radius: 24px;
    height: auto;
}

.team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-bottom: 22px;
    color: var(--white);
    font: 700 48px var(--font-heading);
    background: var(--gradient);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,174,239,0.3);
}

.team-card h3 {
    color: var(--dark);
    font: 700 28px var(--font-heading);
}

.team-role {
    color: var(--primary);
    font-weight: 500;
}

.team-divider {
    display: block;
    width: 40px;
    height: 3px;
    margin: 18px auto;
    background: var(--gradient);
    border-radius: 999px;
}

.team-card p:last-of-type {
    color: rgba(0,0,0,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.team-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--gradient);
    border-radius: 50%;
    transition: var(--transition);
}

.team-links a:hover {
    transform: scale(1.1);
}

.team-note {
    margin-top: 18px;
    color: rgba(0,0,0,0.4);
    font-size: 13px;
    font-style: italic;
    text-align: center;
}

.journey-section,
.comparison-section {
    padding: 100px 0;
    color: var(--white);
    background: var(--dark);
}

.journey-container {
    max-width: 1000px;
}

.milestone-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding-top: 48px;
}

.milestone-line::before {
    position: absolute;
    top: 76px;
    right: 8%;
    left: 8%;
    height: 2px;
    content: "";
    background: var(--gradient);
}

.milestone {
    position: relative;
    text-align: center;
}

.milestone span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 800;
    background: var(--gradient);
    border-radius: 50%;
    animation: ambientPulse 2.4s ease-in-out infinite;
}

.milestone h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 17px;
}

.milestone p {
    color: rgba(255,255,255,0.64);
    font-size: 13px;
    line-height: 1.6;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-badge {
    padding: 36px 24px;
    text-align: center;
}

.trust-badge:hover,
.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.edge-list {
    display: grid;
    gap: 64px;
}

.edge-item {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 44px;
    align-items: center;
}

.edge-item--reverse {
    grid-template-columns: 0.8fr 1fr;
}

.edge-item--reverse > div:first-child {
    order: 2;
}

.edge-number {
    display: block;
    margin-bottom: -18px;
    font: 700 80px var(--font-heading);
    opacity: 0.15;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edge-item h3 {
    margin-bottom: 16px;
    color: var(--dark);
    font: 700 36px var(--font-heading);
}

.edge-item p,
.edge-item li {
    color: rgba(45,45,45,0.72);
    font-size: 16px;
    line-height: 1.8;
}

.edge-item ul {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.edge-item li::before {
    margin-right: 8px;
    color: var(--secondary);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.edge-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    background: var(--dark);
    border-radius: 20px;
}

.edge-visual i {
    font-size: 80px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-container {
    max-width: 900px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table th {
    color: var(--white);
    text-align: left;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    text-align: center;
}

.comparison-table th:nth-child(2) {
    color: rgba(255,255,255,0.5);
}

.comparison-table th:nth-child(3) {
    color: var(--primary);
}

.comparison-table tr {
    background: rgba(255,255,255,0.03);
}

.comparison-table tr:nth-child(even) {
    background: rgba(255,255,255,0.01);
}

.comparison-table td:nth-child(3) {
    background: rgba(0,174,239,0.06);
}

.good {
    color: var(--secondary);
}

.bad {
    color: #FF6B6B;
}

.testimonial-card > i {
    font-size: 32px;
    opacity: 0.3;
}

.testimonial-card p {
    color: rgba(45,45,45,0.72);
    font-size: 15px;
    line-height: 1.75;
}

.stars {
    margin: 18px 0;
    color: var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--white);
    font-weight: 800;
    background: var(--gradient);
    border-radius: 50%;
}

.testimonial-author h3 {
    color: var(--dark);
    font-size: 16px;
}

.testimonial-author p {
    font-size: 13px;
}

.final-cta {
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    background: var(--gradient);
}

.final-cta i {
    font-size: 64px;
    margin-bottom: 24px;
}

.final-cta h2 {
    margin-bottom: 16px;
    font: 700 48px var(--font-heading);
}

.final-cta p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.7;
}

.final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font: 700 18px var(--font-heading);
    border-radius: 10px;
    transition: var(--transition);
}

.final-cta__actions a:first-child {
    color: var(--primary);
    background: var(--white);
}

.final-cta__actions a:first-child:hover {
    color: var(--white);
    background: var(--dark);
}

.final-cta__actions a:last-child {
    color: var(--white);
    border: 2px solid var(--white);
}

.final-cta__actions a:last-child:hover {
    color: var(--primary);
    background: var(--white);
}

/* Final Global Header Polish */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: transparent;
    box-shadow: none;
    transition: all 0.4s ease;
}

#main-header .main-nav {
    padding: 18px 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.4s ease;
}

#main-header .top-bar {
    max-height: 44px;
    overflow: hidden;
    transition: all 0.4s ease;
}

#main-header.scrolled .main-nav,
body.header-light #main-header .main-nav {
    padding: 10px 0;
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0,0,0,0.10);
}

#main-header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

#main-header .nav-link {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s ease;
}

#main-header.scrolled .nav-link,
body.header-light #main-header .nav-link {
    color: var(--text);
}

#main-header.scrolled .nav-link:hover,
body.header-light #main-header .nav-link:hover {
    color: var(--primary);
}

#main-header .site-logo img {
    width: 200px;
    height: auto;
    transition: opacity 0.3s ease, width 0.4s ease;
}

#main-header .site-logo,
#main-header.scrolled .site-logo {
    transform: none;
}

#main-header.scrolled .site-logo img,
body.header-light #main-header .site-logo img {
    width: 200px;
}

#main-header .site-logo__image--dark {
    display: none;
}

#main-header .site-logo__image--white {
    display: block;
}

#main-header.scrolled .site-logo__image--white,
body.header-light #main-header .site-logo__image--white {
    display: none;
}

#main-header.scrolled .site-logo__image--dark,
body.header-light #main-header .site-logo__image--dark {
    display: block;
}

#main-header .btn-consultation {
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    background: transparent;
}

#main-header.scrolled .btn-consultation,
body.header-light #main-header .btn-consultation {
    color: var(--dark);
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        var(--gradient) border-box;
    border-color: transparent;
}

#main-header.scrolled .btn-consultation:hover,
body.header-light #main-header .btn-consultation:hover {
    color: var(--white);
    background: var(--gradient);
}

#main-header .hamburger {
    color: var(--white);
}

#main-header.scrolled .hamburger,
body.header-light #main-header .hamburger {
    color: var(--dark);
}

body.header-light #main-header .top-bar {
    max-height: 44px;
    opacity: 1;
}

body.header-light #main-header.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
}

/* Homepage Completion Sections */
.home-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.home-testimonials .testimonial-card {
    background: var(--light-bg);
}

.home-testimonials__cta {
    display: grid;
    justify-items: center;
    gap: 16px;
    margin-top: 42px;
    text-align: center;
}

.home-testimonials__cta p {
    color: rgba(0,0,0,0.5);
    font-size: 15px;
}

.home-testimonials__cta a,
.home-final-cta__actions a:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    color: var(--white);
    font-weight: 800;
    background: var(--gradient);
    border-radius: 10px;
    transition: var(--transition);
}

.home-testimonials__cta a:hover,
.home-final-cta__actions a:first-child:hover {
    box-shadow: 0 14px 34px rgba(0,174,239,0.32);
    transform: scale(1.04);
}

.home-highlights {
    padding: 100px 0;
    background: var(--light-bg);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.highlight-card {
    padding: 36px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(0,174,239,0.08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.highlight-card i {
    margin-bottom: 18px;
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.highlight-card h3 {
    margin: 4px 0 8px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.highlight-card p {
    color: rgba(45,45,45,0.66);
    font-size: 14px;
    line-height: 1.6;
}

.home-final-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--white);
    background: var(--dark);
}

.home-final-cta__circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-final-cta__circle--large {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(0,174,239,0.05);
}

.home-final-cta__circle--small {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(61,190,138,0.05);
}

.home-final-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-final-cta__icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.home-final-cta__icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

.home-final-cta__icons i {
    font-size: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-final-cta h2 {
    display: grid;
    margin-bottom: 22px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
}

.home-final-cta p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.8;
}

.home-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.home-final-cta__actions a {
    min-height: 58px;
    padding: 18px 40px;
    font: 700 18px var(--font-heading);
}

.home-final-cta__actions a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    transition: var(--transition);
}

.home-final-cta__actions a:last-child i {
    transition: var(--transition);
}

.home-final-cta__actions a:last-child:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.home-final-cta__actions a:last-child:hover i {
    transform: translateX(5px);
}

.home-final-cta__contact {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.home-final-cta__contact a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.home-final-cta__contact a:hover {
    color: var(--primary);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes techGridMove {
    from {
        background-position: 0 0, 0 0, 0 0;
    }

    to {
        background-position: 72px 72px, 72px 72px, 24px 24px;
    }
}

@keyframes ambientPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 9px);
    }
}

@keyframes visualFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hubIntro {
    from {
        opacity: 0;
        transform: scale(0.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hubPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ringFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes nodeIntro {
    from {
        opacity: 0;
        transform: scale(0.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

    50% {
        transform: translateY(8px);
    }
}

@keyframes particleFloat {
    0%,
    100% {
        opacity: 0.18;
        transform: translate3d(0, 0, 0);
    }

    50% {
        opacity: 0.45;
        transform: translate3d(10px, -14px, 0);
    }
}

@keyframes lineFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -44;
    }
}

/* Homepage About Preview */
.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section-label::before {
    display: inline-block;
    width: 38px;
    height: 2px;
    content: "";
    background: var(--gradient);
    border-radius: 999px;
}

.section-label--center {
    justify-content: center;
}

.section-title {
    display: grid;
    margin-bottom: 24px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-title--light {
    color: var(--white);
}

.about-preview {
    background: var(--light-bg);
}

.about-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.about-preview__visual {
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-preview__circle {
    position: absolute;
    z-index: 0;
    width: 390px;
    height: 390px;
    background: linear-gradient(135deg, #00AEEF20, #3DBE8A20);
    border-radius: 50%;
}

.about-visual-card {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    width: min(360px, 76%);
    min-height: 270px;
    padding: 50px 34px;
    text-align: center;
    /* background: var(--dark); */
    border-radius: 18px;
    /* box-shadow: 0 24px 60px rgba(26, 26, 46, 0.22); */
}

.about-visual-card i {
    margin-bottom: 26px;
    font-size: 80px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-visual-card h2 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.about-visual-card p {
    font-size: 14px;
}

.about-stat-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    min-width: 168px;
    padding: 22px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite alternate;
}

.about-stat-card strong {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.about-stat-card span {
    color: rgba(45, 45, 45, 0.68);
    font-size: 13px;
    font-weight: 700;
}

.about-stat-card--top {
    top: 58px;
    right: 8px;
}

.about-stat-card--left {
    bottom: 56px;
    left: 0;
    animation-delay: 0.45s;
}

.about-stat-card--right {
    right: 16px;
    bottom: 24px;
    animation-delay: 0.9s;
}

.about-preview__description {
    margin-bottom: 30px;
    color: rgba(45, 45, 45, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 34px;
}

.about-highlight {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
}

.about-highlight i {
    margin-top: 2px;
    font-size: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-highlight h3 {
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.about-highlight p {
    color: rgba(45, 45, 45, 0.62);
    font-size: 13px;
    line-height: 1.45;
}

.about-preview__cta {
    gap: 10px;
}

.about-preview__cta i {
    transition: var(--transition);
}

.about-preview__cta:hover i {
    transform: translateX(5px);
}

/* Homepage Why Choose Us Preview */
.why-preview {
    color: var(--white);
    background: var(--dark);
}

.section-header {
    max-width: 680px;
    margin-bottom: 54px;
}

.section-header--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.why-preview .section-header p:last-child {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-feature-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition);
}

.why-feature-card:hover {
    background: rgba(0, 174, 239, 0.06);
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(-6px);
}

.why-feature-card i {
    margin-bottom: 24px;
    font-size: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-feature-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.why-feature-card p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.7;
}

.why-features-grid .why-feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.why-features-grid .why-feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.why-features-grid .why-feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.why-features-grid .why-feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.why-features-grid .why-feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.why-features-grid .why-feature-card:nth-child(6) {
    transition-delay: 0.6s;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
    padding-top: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-stat {
    display: grid;
    gap: 8px;
    text-align: center;
}

.why-stat strong {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.why-stat span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

.why-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 60px;
    padding: 50px 60px;
    background: var(--gradient);
    border-radius: 20px;
}

.why-cta h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
}

.why-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.why-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 16px 36px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.why-cta__button:hover {
    color: var(--white);
    background: var(--dark);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}


.team-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 50px;
    height: 100%;
}

.final-cta .final-cta__actions   i{
    font-size: 20px;
    margin-bottom: 0;
}
.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.contact-form-status {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-status.error {
    color: #dc3545;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.7;
}
