/* RGB Business Way — Premium Corporate Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    --ink: #07142b;
    --ink-soft: #10254a;
    --paper: #f5f7fb;
    --white: #fff;
    --blue: #0b55d7;
    --cyan: #1bc6ec;
    --blue-wash: #e9f2ff;
    --muted: #64718a;
    --line: rgba(7, 20, 43, .14);
    --lime: #3ae887;
    --font-heading: 'Inter Tight', Arial, sans-serif;
    --font-body: 'Inter Tight', Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --max-width: 1440px;
    --container-pad: 52px;
    --section-pad: 132px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --duration: .7s;
    --ease-out: cubic-bezier(.25, .46, .45, .94);
    --navy: #07142b;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font: 400 16px/1.55 var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
    background: transparent;
}

.container {
    width: min(100%, var(--max-width));
    margin: auto;
    padding: 0 var(--container-pad);
}

.section {
    position: relative;
    padding: var(--section-pad) 0;
}

.section--dark {
    color: var(--white);
    background: var(--ink);
}

.gradient-text {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    color: var(--cyan);
}

/* ─── Section Headers ────────────────────────────────────────────────────── */
.section__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section__label::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: '';
}

.section__label--light {
    color: var(--cyan);
}

.section__title {
    max-width: 800px;
    margin-bottom: 18px;
    color: inherit;
    font-size: clamp(38px, 4.5vw, 70px);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: .98;
    text-transform: uppercase;
}

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

.section__subtitle {
    max-width: 510px;
    color: var(--muted);
    font-size: 18px;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, .65);
}

.section__header--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 68px;
    text-align: center;
}

.section__header--center .section__label::before {
    display: none;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: transform .35s var(--ease), background .35s var(--ease),
        color .35s var(--ease), box-shadow .35s var(--ease);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn--primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 10px 24px rgba(11, 85, 215, .2);
}

.btn--primary:hover {
    box-shadow: 0 16px 34px rgba(11, 85, 215, .32);
}

.btn--outline {
    border: 1px solid rgba(255, 255, 255, .32);
    color: white;
}

.btn--outline:hover {
    border-color: var(--cyan);
    background: var(--cyan);
    color: var(--ink);
}

.btn--lg {
    padding: 16px 24px;
    font-size: 15px;
}

.btn--sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn--block {
    width: 100%;
}

.btn__arrow {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    transition: transform .35s var(--ease);
}

.btn:hover .btn__arrow {
    transform: rotate(45deg);
}

/* ─── Animated Marquee Button ─── */
.btn-marquee {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #101010;
    color: white;
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .35s var(--ease), transform .35s var(--ease);
}

.btn-marquee:hover {
    background: #000;
}

.btn-marquee__text-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    overflow: hidden;
    height: 1.2em;
    /* match line height exactly */
}

.btn-marquee__text {
    display: inline-block;
    line-height: 1.2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-marquee__text--clone {
    position: absolute;
    top: 100%;
    left: 0;
}

.btn-marquee:hover .btn-marquee__text {
    transform: translateY(-100%);
}

.btn-marquee__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--ink);
    border-radius: 50%;
    transition: transform .35s var(--ease);
}

.btn-marquee:hover .btn-marquee__icon {
    transform: rotate(45deg);
}

.btn-marquee--block {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 40;
    color: white;
    transition: all .35s var(--ease);
}

.navbar--scrolled {
    position: fixed;
    top: 15px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.navbar__inner {
    position: relative;
    z-index: 101;
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 34px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all .35s var(--ease);
}

.navbar--scrolled .navbar__inner {
    background: rgba(7, 20, 43, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar__logo,
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.05em;
}

.navbar__logo img,
.footer__logo img {
    width: auto;
    height: 65px;
    object-fit: contain;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.navbar__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
}

.navbar__link::after {
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--lime);
    content: '';
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.navbar__link:hover,
.navbar__link.active {
    color: white;
}

.navbar__link:hover::after,
.navbar__link.active::after {
    transform: scaleX(1);
}

.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -15px;
    min-width: 215px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: #10254a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .25s var(--ease);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.navbar__dropdown-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

.navbar__dropdown-menu a:hover {
    background: rgba(255, 255, 255, .1);
    color: white;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 13px;
}

.navbar__phone {
    font-size: 13px;
    font-weight: 600;
}

.navbar__cta {
    padding: 11px 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: white;
    background: var(--ink);
}

.hero__bg,
.hero__bg-img,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__bg {
    z-index: -1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    background: linear-gradient(90deg, rgba(2, 9, 23, .93) 0%, rgba(2, 12, 32, .79) 42%, rgba(5, 22, 51, .27) 100%),
        linear-gradient(0deg, rgba(2, 9, 23, .75), transparent 42%);
}

.hero__glow {
    position: absolute;
    right: 18%;
    bottom: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(27, 198, 236, .12);
    filter: blur(80px);
}

.hero__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 88px;
}

.hero__content {
    max-width: 780px;
    padding: 82px 0 118px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero__eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--cyan);
}

.hero__title {
    font-size: clamp(52px, 7vw, 102px);
    font-weight: 600;
    letter-spacing: -.075em;
    line-height: .98;
    margin-bottom: 20px;
}

.hero__title-line1,
.hero__title-line2 {
    display: block;
}

.hero__title-line2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    color: var(--cyan);
    text-transform: none;
}

.hero__subtitle {
    max-width: 620px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .76);
    font-size: 19px;
    line-height: 1.55;
}

.hero__cta {
    display: flex;
    gap: 12px;
}

.hero__visual {
    position: absolute;
    right: 4.2%;
    bottom: 105px;
    /* Sit on top of the stats bar */
    width: min(49vw, 690px);
    z-index: 2;
    /* Ensure it overlaps above the overlay */
}

.hero__device {
    position: relative;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .32));
}

.hero__device-img {
    width: 100%;
    max-height: 515px;
    object-fit: contain;
    object-position: bottom right;
}

.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: rgba(7, 20, 43, .74);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 600;
    animation: heroFloat 5s ease-in-out infinite;
}

.hero__float-icon {
    color: var(--lime);
}

.hero__float--1 {
    top: 24%;
    left: 4%;
}

.hero__float--2 {
    top: 48%;
    right: 1%;
}

.hero__float--3 {
    bottom: 23%;
    left: 14%;
}

.hero__float--4 {
    display: none;
}

.hero__stats {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 15, 35, .45);
    backdrop-filter: blur(10px);
}

.hero__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero__stat {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 30px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.hero__stat:first-child {
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.hero__stat-number {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -.06em;
}

.hero__stat-label {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BRAND MARQUEE
   ═══════════════════════════════════════════════════════════════════════════ */
.brand-marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    white-space: nowrap;
}

.brand-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 27px;
    padding: 18px 0;
    animation: brandMarquee 28s linear infinite;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.brand-marquee__track i {
    color: var(--cyan);
    font-size: 16px;
    font-style: normal;
}

.brand-marquee:hover .brand-marquee__track {
    animation-play-state: paused;
}

@keyframes brandMarquee {
    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION (with image)
   ═══════════════════════════════════════════════════════════════════════════ */
.about {
    background: var(--paper);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    max-width: 610px;
    margin: 27px 0 34px;
    color: var(--muted);
    font-size: 18px;
}

/* About Image */
.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(7, 20, 43, .15);
}

.about__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.about__image-wrapper:hover .about__image {
    transform: scale(1.04);
}

.about__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(11, 85, 215, .25));
    pointer-events: none;
}

.about__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(7, 20, 43, .85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(58, 232, 135, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(58, 232, 135, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(58, 232, 135, 0);
    }
}

.about__image-badge-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.06em;
    color: var(--lime);
}

.about__image-badge-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .8);
}

.about__cards-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.about__card-mini {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: white;
    border: 1px solid var(--line);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.about__card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 20, 43, .1);
}

.about__card-mini-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-wash);
    color: var(--blue);
}

.about__card-mini-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 3px;
}

.about__card-mini-desc {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

/* About Features Row */
.about__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.about__feature {
    padding: 32px 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .35s var(--ease), transform .35s var(--ease);
}

.about__feature:hover {
    background: white;
    transform: translateY(-5px);
}

.about__feature-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--blue-wash);
    color: var(--blue);
}

.about__feature-title {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.03em;
}

.about__feature-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE (with background image)
   ═══════════════════════════════════════════════════════════════════════════ */
.why-choose {
    overflow: hidden;
    background: var(--ink);
}

.why-choose__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-choose__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .12;
}

.why-choose__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 20, 43, .95) 30%, rgba(7, 20, 43, .7) 100%);
}

.why-choose__grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, black, transparent);
}

.why-choose__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.why-choose__text {
    max-width: 480px;
    margin: 25px 0 32px;
    color: rgba(255, 255, 255, .65);
    font-size: 18px;
}

.why-choose__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.why-choose__stat {
    display: flex;
    flex-direction: column;
    min-height: 165px;
    justify-content: end;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.why-choose__stat-number {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -.07em;
    color: var(--cyan);
}

.why-choose__stat-label {
    max-width: 130px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES (with background image)
   ═══════════════════════════════════════════════════════════════════════════ */
.services {
    background: #0b1a36;
    position: relative;
}

.services__bg-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .06;
}

.services::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(27, 198, 236, .08));
    content: '';
}

.services .container {
    position: relative;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.service-card {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    overflow: hidden;
    transition: background .35s var(--ease), transform .35s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-5px);
}

.service-card__image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__content {
    padding: 31px;
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card__number {
    display: block;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
}

.service-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin: 15px 0 18px;
    border-radius: 50%;
    background: rgba(27, 198, 236, .13);
    color: var(--cyan);
}

.service-card__title {
    font-size: 23px;
    letter-spacing: -.06em;
}

.service-card__desc {
    min-height: 50px;
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.45;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.service-card__link svg {
    width: 17px;
    color: var(--lime);
    transition: transform .3s var(--ease);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════════════════════ */
.process {
    background: white;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    counter-reset: step;
}

.process__step {
    position: relative;
    padding: 31px 25px 22px;
    border-top: 1px solid var(--line);
}

.process__step-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
}

.process__step-icon {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    margin: 43px 0 20px;
    border-radius: 50%;
    background: var(--blue-wash);
    color: var(--blue);
}

.process__step-title {
    font-size: 21px;
    letter-spacing: -.055em;
}

.process__step-desc {
    max-width: 200px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.process__connector {
    position: absolute;
    top: 55px;
    right: -8px;
    width: 16px;
    height: 1px;
    background: var(--blue);
}

/* ─── Industries Grid & Card ───────────────────────────────────────────────── */
.industries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #07142b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.industry-card__image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.industry-card__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s var(--ease);
}

.industry-card:hover .industry-card__img {
    transform: scale(1.05);
}

.industry-card__content {
    padding: 31px;
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.industry-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(27, 198, 236, .13);
    color: var(--cyan);
}

.industry-card__title {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.industry-card__desc {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 42px;
}

.industry-card__link {
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════════════════════ */
.portfolio {
    background: var(--paper);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio__card {
    overflow: hidden;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(7, 20, 43, .07);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.portfolio__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(7, 20, 43, .12);
}

.portfolio__card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.portfolio__card-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 28px;
    background: linear-gradient(135deg, #0d2653, #1579d5);
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.portfolio__card:nth-child(2n) .portfolio__card-placeholder {
    background: linear-gradient(135deg, #0b447e, #00a9d4);
}

.portfolio__card:nth-child(3n) .portfolio__card-placeholder {
    background: linear-gradient(135deg, #152244, #6157c5);
}

.portfolio__card-placeholder-icon {
    opacity: .6;
}

.portfolio__card-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(4, 18, 43, .45);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.portfolio__card:hover .portfolio__card-overlay {
    opacity: 1;
}

.portfolio__card-btn {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    transform: translateY(12px);
    transition: transform .35s var(--ease);
}

.portfolio__card:hover .portfolio__card-btn {
    transform: none;
}

.portfolio__card-body {
    padding: 27px;
}

.portfolio__card-category {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.portfolio__card-title {
    margin: 9px 0;
    font-size: 24px;
    letter-spacing: -.06em;
}

.portfolio__card-desc {
    color: var(--muted);
    font-size: 14px;
}

.portfolio__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.portfolio__cta {
    margin-top: 38px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials {
    background: var(--ink);
}

.testimonials__carousel {
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: 16px;
    transition: transform .65s var(--ease);
}

.testimonial-card {
    display: flex;
    flex: 0 0 calc((100% - 32px)/3);
    min-height: 320px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 15px;
    background: rgba(255, 255, 255, .03);
    transition: transform .35s var(--ease), background .35s var(--ease);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-4px);
}

.testimonial-card__quote {
    color: var(--cyan);
}

.testimonial-card__text {
    flex: 1;
    margin: 23px 0;
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.testimonial-card__avatar {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
}

.testimonial-card__role {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-top: 19px;
    color: var(--lime);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-top: 33px;
}

.testimonials__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: white;
    transition: .3s var(--ease);
}

.testimonials__arrow:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
}

.testimonials__dots {
    display: flex;
    gap: 7px;
}

.testimonials__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transition: .3s var(--ease);
}

.testimonials__dot.active {
    width: 22px;
    border-radius: 6px;
    background: var(--lime);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.final-cta {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: white;
}

.final-cta__bg,
.final-cta__bg-img,
.final-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.final-cta__bg-img {
    object-fit: cover;
    opacity: .45;
}

.final-cta__overlay {
    background: linear-gradient(90deg, rgba(3, 13, 31, .93), rgba(3, 13, 31, .63));
}

.final-cta .container {
    position: relative;
}

.final-cta__inner {
    display: grid;
    grid-template-columns: 1.15fr .75fr auto;
    gap: 45px;
    align-items: center;
    min-height: 340px;
}

.final-cta__title {
    font-size: clamp(38px, 4.3vw, 64px);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: .95;
    text-transform: uppercase;
}

.final-cta__text {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
}

.btn--cta-primary {
    background: var(--lime);
    color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */
.contact {
    background: white;
}

.contact__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.contact__title {
    font-size: clamp(43px, 5vw, 71px);
    font-weight: 600;
    letter-spacing: -.07em;
    line-height: .91;
}

.contact__text {
    margin: 24px 0 38px;
    color: var(--muted);
    font-size: 17px;
}

.contact__details {
    display: grid;
    gap: 20px;
}

.contact__detail {
    display: flex;
    gap: 13px;
}

.contact__detail-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--blue-wash);
    color: var(--blue);
}

.contact__detail>div:last-child {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.contact__detail-label {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact__detail a:hover {
    color: var(--blue);
}

.contact__form-card {
    padding: 41px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
}

.contact__form-title {
    margin-bottom: 29px;
    font-size: 29px;
    letter-spacing: -.06em;
}

.form-group {
    position: relative;
    margin-bottom: 19px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(7, 20, 43, .25);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 2px 0 var(--blue);
}

.form-textarea {
    resize: vertical;
}

.form-error {
    display: block;
    min-height: 15px;
    color: #db394d;
    font-size: 11px;
}

.form-message {
    display: none;
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
}

.form-message--success {
    background: #dff9eb;
    color: #075e32;
}

.form-message--error {
    background: #ffe6e9;
    color: #992030;
}

.form-message.show {
    display: flex;
    gap: 7px;
    align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — Professional Design
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 0;
    background: #07142b;
    color: white;
}

.footer__accent {
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lime), var(--cyan), var(--blue));
    background-size: 200% 100%;
    animation: footerAccent 4s ease infinite;
}

@keyframes footerAccent {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer__watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}

.footer__watermark-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: marqueeScroll 40s linear infinite;
}

.footer__watermark-track span {
    font-size: clamp(80px, 12vw, 150px);
    font-weight: 800;
    letter-spacing: -.03em;
    text-transform: uppercase;
    /* Metallic effect */
    background: linear-gradient(180deg, #cde3f3 0%, #308dc9 45%, #64b5f6 55%, #cde3f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer CTA Strip */
.footer__cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__cta-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -.05em;
}

.footer__cta-text {
    margin-top: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
}

/* Footer Grid */
.footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__logo {
    margin-bottom: 19px;
}

.footer__desc {
    max-width: 290px;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.6;
}

/* Social icons with brand colors */
.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 23px;
}

.footer__social-link {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: rgba(255, 255, 255, .75);
    transition: all .3s var(--ease);
}

.footer__social-link:hover {
    transform: translateY(-3px);
}

.footer__social-link--fb:hover {
    border-color: #1877f2;
    background: #1877f2;
    color: white;
}

.footer__social-link--ig:hover {
    border-color: #e4405f;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.footer__social-link--li:hover {
    border-color: #0a66c2;
    background: #0a66c2;
    color: white;
}

.footer__social-link--yt:hover {
    border-color: #ff0000;
    background: #ff0000;
    color: white;
}

.footer__heading {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    transition: color .3s var(--ease), padding-left .3s var(--ease);
}

.footer__links a:hover {
    color: white;
    padding-left: 6px;
}

/* Address Card */
.footer__address-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer__address-pin {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 50%;
    background: rgba(27, 198, 236, .12);
    color: var(--cyan);
}

.footer__address-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__address-line {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    line-height: 1.4;
}

.footer__address-city {
    margin-top: 4px;
    color: white;
    font-weight: 600;
}

.footer__contact li {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer__contact svg {
    width: 15px;
    color: var(--cyan);
    flex: 0 0 auto;
    margin-top: 3px;
}

.footer__contact a:hover {
    color: var(--cyan);
}

/* Bottom Bar */
.footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.footer__bottom p,
.footer__bottom-links a {
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a:hover {
    color: rgba(255, 255, 255, .7);
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUICK ACTIONS & BACK TO TOP
   ═══════════════════════════════════════════════════════════════════════════ */
.quick-actions {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 32;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.quick-actions__item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.quick-actions__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.quick-actions__item svg {
    width: 18px;
    height: 18px;
}

/* Vibrant, distinct colors for each action so they pop on any background */
.quick-actions__item--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.quick-actions__item--call {
    background: linear-gradient(135deg, var(--blue), #0b40a1);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 85, 215, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.quick-actions__item--email {
    background: linear-gradient(135deg, var(--cyan), #0096ab);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 33;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(15px) scale(.85);
    visibility: hidden;
    transition: .3s var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    transform: scale(.85);
    visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION NUMBERS
   ═══════════════════════════════════════════════════════════════════════════ */
.section::before {
    position: absolute;
    top: 31px;
    left: max(18px, calc((100vw - var(--max-width))/2 + var(--container-pad)));
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.about::before {
    content: '{01}';
}

.why-choose::before {
    content: '{02}';
    color: var(--cyan);
}

.services::before {
    content: '{03}';
    z-index: 1;
    width: auto;
    height: auto;
    background: none;
}

.process::before {
    content: '{04}';
}

.portfolio::before {
    content: '{05}';
}

.testimonials::before {
    content: '{06}';
    color: var(--cyan);
}

.contact::before {
    content: '{07}';
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.hero__title-line1,
.hero__title-line2 {
    overflow: hidden;
    animation: headlineIn 1s both var(--ease);
}

.hero__title-line2 {
    animation-delay: .1s;
}

@keyframes headlineIn {
    from {
        opacity: 0;
        transform: translateY(110%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero__eyebrow,
.hero__subtitle,
.hero__cta {
    animation: softIn .8s both var(--ease);
}

.hero__eyebrow {
    animation-delay: .25s;
}

.hero__subtitle {
    animation-delay: .35s;
}

.hero__cta {
    animation-delay: .48s;
}

@keyframes softIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero__device {
    animation: deviceFloat 6s ease-in-out infinite;
}

@keyframes deviceFloat {
    50% {
        transform: translateY(-12px);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE (standalone)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero--sm {
    min-height: 470px;
}

.services-page {
    background: white;
}

.services-page__list {
    display: grid;
    gap: 108px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even)>* {
    direction: ltr;
}

.service-block__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.service-block__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    transition: transform .7s var(--ease);
}

.service-block:hover .service-block__image {
    transform: scale(1.05);
}

.service-block__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(27, 198, 236, .3));
}

.service-block__content {
    position: relative;
}

.service-block__number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}

.service-block__icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    margin: 30px 0 18px;
    border-radius: 50%;
    background: var(--blue-wash);
    color: var(--blue);
}

.service-block__title {
    font-size: 40px;
    letter-spacing: -.07em;
    line-height: 1;
}

.service-block__desc {
    margin: 18px 0;
    color: var(--muted);
    font-size: 17px;
}

.service-block__features {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.service-block__features li {
    display: flex;
    gap: 8px;
    color: #3f4a60;
    font-size: 14px;
}

.service-block__features svg {
    color: var(--blue);
}