/* ═══════════════════════════════════════════
   FOUNDATION
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Core palette */
    --ink: #080c14;
    --ink-80: #0d1421;
    --ink-60: #111c2e;
    --ink-40: #1a2a42;
    --slate: #2a3f5f;
    --mist: #8fa3be;
    --cloud: #c8d6e8;
    --white: #f4f8fc;
    --pure: #ffffff;
    --ice: #e8f2fb;

    /* Accent */
    --frost: #0ea5e9;
    /* bright sky blue */
    --frost-dim: #0369a1;
    --cryo: #06b6d4;
    /* cyan-teal */
    --signal: #22d3a0;
    /* green-teal for trust */


    --signal-dk: #059669;
    --deep: #0D2B3E;
    --arctic: #0097B2;
    --gold: #C8962A;
    --gold-light: #F0B840;


    /* Type */
    --f-display: 'Cabinet Grotesk', sans-serif;
    --f-body: 'Figtree', sans-serif;

    /* Radii */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;

    /* Shadows */
    --s-glow: 0 0 40px rgba(14, 165, 233, 0.12);
    --s-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(8, 12, 20, 0.08);
    --s-float: 0 24px 64px rgba(8, 12, 20, 0.18);
    --s-deep: 0 40px 100px rgba(8, 12, 20, 0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-body);
    background: var(--pure);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════
   NAV — ULTRA MINIMAL
═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 48px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 12, 20, 0.82);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    max-width: 240px;
}

.nav-wordmark {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
    color: var(--pure);
}

.nav-wordmark em {
    font-style: normal;
    color: var(--frost);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--pure);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-tel {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-tel:hover {
    color: var(--signal);
}

.nav-btn {
    background: var(--frost);
    color: var(--ink);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 25px;
    border-radius: var(--r-sm);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.35);
}

.nav-btn:hover {
    background: var(--cryo);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.5);
}

/* ═══════════════════════════════════════════
   HERO — ASYMMETRIC CINEMATIC
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding-top: 64px;
}

/* Abstract BG geometry */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
}

.hero-bg-glow1 {
    position: absolute;
    top: -20%;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 65%);
    border-radius: 50%;
}

.hero-bg-glow2 {
    position: absolute;
    bottom: -10%;
    left: 30%;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.05) 0%, transparent 65%);
}

.hero-bg-ring {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 640px;
    height: 640px;
    border: 1px solid rgba(14, 165, 233, 0.06);
    border-radius: 50%;
}

.hero-bg-ring::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(14, 165, 233, 0.04);
    border-radius: 50%;
}

/* diagonal slice */
.hero-slice {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-slice::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 12, 20, 0.7) 0%, rgba(8, 12, 20, 0.25) 60%, transparent 100%);
    z-index: 1;
}

.hero-slice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1) saturate(0.9) contrast(1.05);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 64px 80px;
    width: 100%;
    min-height: calc(100vh - 64px);
}

.hero-left {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--frost);
}

.hero-eyebrow-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--frost);
}

.hero-h1 {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(1rem, 5.5vw, 3rem);
    line-height: 0.96;
    letter-spacing: -2.5px;
    color: var(--pure);
    margin-bottom: 28px;
}

.hero-h1 .line-accent {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(14, 165, 233, 0.7);
}

.hero-h1 .line-frost {
    color: var(--frost);
}

.hero-sub {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 44px;
    letter-spacing: 0.01em;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 52px;
}


.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--frost);
    color: var(--ink);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--r-md);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.25s;
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cta-primary:hover {
    background: var(--cryo);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.55);
}

.cta-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 14px 24px;
    border-radius: var(--r-md);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s;
    white-space: nowrap;
}

.cta-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.04);
}

.cta-ghost svg {
    width: 16px;
    height: 16px;
}

/* Trust pills */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.01em;
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal);
    flex-shrink: 0;
}

.trust-pill:nth-child(2) .trust-dot {
    background: var(--frost);
}

.trust-pill:nth-child(3) .trust-dot {
    background: var(--cryo);
}

/* Floating stat cards */
.hero-floats {
    position: absolute;
    right: 3%;
    bottom: 12%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.float-card {
    background: rgba(13, 20, 33, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: var(--s-float);
    min-width: 200px;
}

.float-label {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}

.float-value {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--pure);
    letter-spacing: -0.5px;
    line-height: 1;
}

.float-value span {
    color: var(--signal);
}

.float-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.float-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 8px rgba(34, 211, 160, 0.6);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75)
    }
}

/* Scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 64px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--frost);
    animation: scanline 2s ease-in-out infinite;
}

@keyframes scanline {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

/* ═══════════════════════════════════════════
   BAND — MARQUEE STRIP
═══════════════════════════════════════════ */
.band {
    background: var(--frost);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.band-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.band-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0 40px;
}

.band-sep {
    width: 4px;
    height: 4px;
    background: var(--ink-60);
    border-radius: 50%;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   SHARED LAYOUT
═══════════════════════════════════════════ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
}

.section {
    padding: 50px 0;
}

.section-sm {
    padding: 50px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--frost);
}

.eyebrow-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--frost);
}

.display-heading {
    font-family: var(--f-display);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
}

/* ═══════════════════════════════════════════
   SERVICES — EDITORIAL MIXED LAYOUT
═══════════════════════════════════════════ */
.services-section {
    background: var(--white);
    overflow: hidden;
}

.services-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 80px;
}
.services-header-left{
    width: 35%;
}
.services-header-left .services-h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
}

.services-header-right{
    width: 65%;
}

.services-header-right .services-h2{
    font-size: clamp(2rem, 4vw, 2.2rem);

}
.services-h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 0;
}

.services-h2 span {
    color: var(--frost);
}

.services-header-left p {
    font-size: 1rem;
    color: #5a7080;
    line-height: 1.75;
    font-weight: 300;
    margin-top: 10px;
}

/* Featured row — big block */
.services-featured {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
    background: var(--ice);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    overflow: hidden;
}

/* Secondary row */
.services-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: var(--ice);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    overflow: hidden;
}

.svc-block {
    background: var(--pure);
    padding: 34px 40px 4px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.3s;
}

.svc-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0) 0%, rgba(14, 165, 233, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.svc-block:hover {
    background: #f6fbff;
}

.svc-block:hover::before {
    opacity: 1;
}

.svc-block.large {
    padding: 46px 52px 16px;
}

/* animated border-bottom on hover */
.svc-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--frost), var(--cryo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-block:hover::after {
    transform: scaleX(1);
}

.svc-number {
    font-family: var(--f-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--mist);
    margin-bottom: 28px;
    display: block;
}

.svc-icon {
    width: 44px;
    height: 44px;
    background: var(--ice);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.svc-block:hover .svc-icon {
    background: rgba(14, 165, 233, 0.1);
}

.svc-icon svg {
    width: 22px;
    height: 22px;
    color: var(--frost-dim);
    transition: color 0.3s;
}

.svc-block:hover .svc-icon svg {
    color: var(--frost);
}

.svc-h3 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.4px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.svc-block.large .svc-h3 {
    font-size: 1.45rem;
}

.svc-p {
    font-size: 0.875rem;
    color: #6a7e90;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
}

.svc-checks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-check {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #7a8ea0;
    font-weight: 500;
}

.svc-check-icon {
    color: var(--frost);
    flex-shrink: 0;
}

.svc-check-icon svg {
    width: 23px;
    height: 21px;
    margin-top: 5px;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US — GLASSMORPHISM CARDS
═══════════════════════════════════════════ */
.why-section {
    background: linear-gradient(170deg, var(--ink) 0%, var(--ink-60) 40%, #102040 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 100%, rgba(14, 165, 233, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.why-h2 {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--pure);
}

.why-h2 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(14, 165, 233, 0.6);
}

.why-header-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 280px;
    line-height: 1.7;
    text-align: right;
    font-weight: 300;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-list {
    list-style: none;
    color: white;
}

.why-list li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px
}

/* ═══════════════════════════════════════════
   INDUSTRIES — ASYMMETRIC BENTO
═══════════════════════════════════════════ */
.ind-section {
    background: var(--white);
    overflow: hidden;
}

.ind-header {
    margin-bottom: 64px;
}

.ind-h2 {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
    max-width: 500px;
}

.ind-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.ind-cell {
    background: var(--ice);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    cursor: default;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.ind-cell::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    border-radius: 50%;
    transition: all 0.3s;
}

.ind-cell:hover {
    background: #e8f4fd;
    transform: translateY(-2px);
    box-shadow: var(--s-card);
}

.ind-cell:hover::after {
    transform: scale(2);
    opacity: 0;
}

.ind-cell.wide {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 340px;
}

.ind-cell.dark {
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ind-cell.dark:hover {
    background: var(--ink-60);
}

.ind-cell.dark .ind-name {
    color: var(--pure);
}

.ind-cell.dark .ind-desc {
    color: rgba(255, 255, 255, 0.35);
}

.ind-icon {
    width: 44px;
    height: 44px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ind-cell.dark .ind-icon {
    background: rgba(14, 165, 233, 0.12);
}

.ind-icon svg {
    width: 20px;
    height: 20px;
    color: var(--frost);
}

.ind-name {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.ind-cell.wide .ind-name {
    font-size: 1.3rem;
}

.ind-desc {
    font-size: 0.82rem;
    color: #7a8ea0;
    margin-top: 8px;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   PROCESS — CONNECTED NODES
═══════════════════════════════════════════ */
.process-section {
    background: var(--white);
    position: relative;
}

.process-header {
    margin-bottom: 40px;
    text-align: center;
}

.process-h2 {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 16px;
}

.process-sub {
    font-size: 1rem;
    color: #7a8ea0;
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 0;
}

.process-connector {
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: var(--ice);
    z-index: 0;
}

.process-connector-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--frost), var(--cryo), var(--signal));
    transform-origin: left;
    animation: fillLine 2.5s ease 0.5s both;
}

@keyframes fillLine {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.step-node {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: var(--pure);
    border: 2px solid var(--ice);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--s-card);
}

.step-node::before {
    content: attr(data-n);
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--frost);
    border-radius: 50%;
    border: 2px solid var(--pure);
    font-family: var(--f-display);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.process-step:hover .step-node {
    border-color: var(--frost);
    background: rgba(14, 165, 233, 0.04);
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.06);
}

.step-node svg {
    width: 26px;
    height: 26px;
    color: var(--ink-40);
    transition: color 0.3s;
}

.process-step:hover .step-node svg {
    color: var(--frost);
}

.step-h3 {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.step-p {
    font-size: 0.845rem;
    color: #7a8ea0;
    line-height: 1.65;
    font-weight: 300;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.7rem;
    color: var(--frost);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step-tag svg {
    width: 12px;
    height: 12px;
}

/* ═══════════════════════════════════════════
   STATS INTERLUDE
═══════════════════════════════════════════ */
.stats-section {
    background: var(--ink);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
    border-right: none;
}

.stat-n {
    font-family: var(--f-display);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--pure);
}

.stat-n sup {
    font-size: 1.5rem;
    color: var(--frost);
    vertical-align: super;
    letter-spacing: 0;
}

.stat-n sub {
    font-size: 1rem;
    color: var(--signal);
    vertical-align: baseline;
    letter-spacing: 0;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA — POWER SECTION
═══════════════════════════════════════════ */
.cta-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cta-inner-wrap {
    margin: 0 0 80px;
    background: linear-gradient(170deg, var(--ink) 0%, var(--ink-60) 40%, #102040 100%);
    border-radius: 32px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.cta-inner-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 160, 0.08);
    border: 1px solid rgba(34, 211, 160, 0.2);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 32px;
}

.cta-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--signal);
}

.cta-h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    color: var(--pure);
    margin-bottom: 20px;
}

.cta-h2 em {
    font-style: normal;
    color: var(--frost);
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--frost);
    color: var(--ink);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 32px;
    border-radius: var(--r-md);
    text-decoration: none;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 28px rgba(14, 165, 233, 0.45);
    transition: all 0.25s;
    white-space: nowrap;
}

.cta-btn-main:hover {
    background: var(--cryo);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(14, 165, 233, 0.6);
}

.cta-btn-main svg {
    width: 17px;
    height: 17px;
}

.cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1fbd57;
    color: white;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 32px;
    border-radius: var(--r-md);
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(31, 189, 87, 0.3);
    transition: all 0.25s;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.cta-btn-wa:hover {
    background: #18a04b;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31, 189, 87, 0.5);
}

.cta-btn-wa svg {
    width: 18px;
    height: 18px;
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 16px 28px;
    border-radius: var(--r-md);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.25s;
    white-space: nowrap;
}

.cta-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.cta-btn-outline svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: #04080f;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.footer-brand {}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--frost), var(--cryo));
    border-radius: 7px;
    display: grid;
    place-items: center;
}

.footer-logo-mark svg {
    width: 13px;
    height: 13px;
    color: white;
}

.footer-wordmark {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--pure);
}

.footer-wordmark em {
    font-style: normal;
    color: var(--frost);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.75;
    max-width: 260px;
    font-weight: 300;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.soc-btn:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--frost);
}

.soc-btn svg {
    width: 14px;
    height: 14px;
}

.footer-col h5 {
    font-family: var(--f-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pure);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--frost);
}

.footer-contact-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-row svg {
    width: 14px;
    height: 14px;
    color: var(--frost);
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
}

.footer-contact-row span {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.55;
    font-weight: 300;
}

.footer-contact-row a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-row a:hover {
    color: var(--frost);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover {
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-floats {
        display: none;
    }

    .services-featured,
    .services-secondary {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ind-bento {
        grid-template-columns: 1fr 1fr;
    }

    .ind-cell.wide {
        grid-column: 1;
        grid-row: 1;
        min-height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav {
        padding: 0 24px;
    }

    .nav .nav-links {
        display: none;
    }

    .hero-content {
        padding: 48px 15px;
        min-height: calc(100vh - 64px);
    }
    .hero-left{
        padding: 0 5px;
    }

    .hero-slice {
        display: none;
    }

    .hero-h1 {
        font-size: 1.8rem;
        letter-spacing: -1.5px;
        line-height: 115%;
    }
    .hero-br{
        display: none;
    }
    .services-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-featured,
    .services-secondary {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .ind-bento {
        grid-template-columns: 1fr 1fr;
    }

    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .process-connector {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-inner-wrap {
        margin: 0 0 60px;
        padding: 60px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/*  */
.text-center {
    text-align: center;
}

.service-section-head {
    margin-bottom: 30px;
}



/* ── Card ── */
.cta-card {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(0, 151, 178, 0.25);
    animation: riseUp 0.7s cubic-bezier(.22, .68, 0, 1.2) both;
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mesh gradient background */
.card-bg-cta {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, var(--ink) 0%, var(--ink-60) 40%, #102040 100%);
    z-index: 0;
}

/* Decorative ring top-right */
.ring {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(0, 151, 178, 0.18);
    z-index: 1;
    pointer-events: none;
}

.ring::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 151, 178, 0.1);
}

/* Decorative ring bottom-left */
.ring2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(200, 150, 42, 0.12);
    z-index: 1;
    pointer-events: none;
}

/* Content */
.card-inner {
    position: relative;
    z-index: 2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* Gift badge */
.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 150, 42, 0.12);
    border: 1px solid rgba(200, 150, 42, 0.35);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
    animation: riseUp 0.6s 0.1s both;
}

.gift-icon {
    font-size: 18px;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    30% {
        transform: translateY(-5px) rotate(-8deg);
    }

    60% {
        transform: translateY(-2px) rotate(4deg);
    }
}

.gift-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* Headline */
.headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    max-width: 640px;
    margin-bottom: 22px;
    animation: riseUp 0.6s 0.15s both;
}

.headline em {
    font-style: normal;
    color: var(--arctic);
}

/* Divider dot row */
.dot-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    animation: riseUp 0.6s 0.2s both;
}

.dot-row::before,
.dot-row::after {
    content: '';
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, rgba(0, 151, 178, 0.4));
}

.dot-row::after {
    background: linear-gradient(90deg, rgba(0, 151, 178, 0.4), transparent);
}

.dot-row span {
    width: 5px;
    height: 5px;
    background: var(--arctic);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--arctic);
}

/* Body copy */
.body-copy {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(194, 223, 232, 0.75);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 44px;
    animation: riseUp 0.6s 0.25s both;
}

.body-copy strong {
    color: rgba(194, 223, 232, 0.95);
    font-weight: 500;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #1a1000;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 18px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(200, 150, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: riseUp 0.6s 0.3s both;
    text-decoration: none;
}

/* Shimmer sweep */
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s 1s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 160%;
    }
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(200, 150, 42, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cta-btn:active {
    transform: translateY(0) scale(0.99);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Below button — trust micro-copy */
.micro-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
    justify-content: center;
    animation: riseUp 0.6s 0.38s both;
}

.micro-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: rgba(194, 223, 232, 0.5);
    font-weight: 400;
}

.micro-icon {
    font-size: 13px;
    opacity: 0.7;
}

.micro-sep {
    width: 3px;
    height: 3px;
    background: rgba(194, 223, 232, 0.2);
    border-radius: 50%;
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.p {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1);
    }
}

.p:nth-child(1) {
    width: 4px;
    height: 4px;
    background: var(--arctic);
    left: 12%;
    top: 80%;
    animation-duration: 4.2s;
    animation-delay: 0s;
}

.p:nth-child(2) {
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    left: 25%;
    top: 75%;
    animation-duration: 5.1s;
    animation-delay: 0.8s;
}

.p:nth-child(3) {
    width: 5px;
    height: 5px;
    background: var(--arctic);
    left: 40%;
    top: 85%;
    animation-duration: 3.8s;
    animation-delay: 1.5s;
}

.p:nth-child(4) {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    left: 60%;
    top: 78%;
    animation-duration: 4.6s;
    animation-delay: 0.3s;
}

.p:nth-child(5) {
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    left: 75%;
    top: 82%;
    animation-duration: 5.5s;
    animation-delay: 1.1s;
}

.p:nth-child(6) {
    width: 3px;
    height: 3px;
    background: var(--arctic);
    left: 88%;
    top: 70%;
    animation-duration: 4.0s;
    animation-delay: 2.0s;
}

.p:nth-child(7) {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    left: 50%;
    top: 90%;
    animation-duration: 3.5s;
    animation-delay: 0.6s;
}

.p:nth-child(8) {
    width: 4px;
    height: 4px;
    background: var(--arctic);
    left: 5%;
    top: 60%;
    animation-duration: 6.0s;
    animation-delay: 1.8s;
}

.p:nth-child(9) {
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    left: 95%;
    top: 55%;
    animation-duration: 4.8s;
    animation-delay: 0.4s;
}

.p:nth-child(10) {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    left: 33%;
    top: 65%;
    animation-duration: 5.3s;
    animation-delay: 2.5s;
}

@media (max-width: 640px) {
    .card-inner {
        padding: 48px 28px;
    }

    .headline {
        font-size: 1.65rem;
    }

    .body-copy {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 16px 30px;
        font-size: 0.92rem;
    }

    .micro-trust {
        gap: 14px;
    }
}

.cta-section-two {
    background: var(--white);
    padding: 40px 0;
}

/* lead form */

.lead-form-section {
    width: 100%;
    position: relative;
    background: linear-gradient(170deg, var(--ink) 0%, var(--ink-60) 40%, #102040 100%);
    padding: 80px 0;
}


.form-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    animation: riseUp 0.7s cubic-bezier(.22, .68, 0, 1.2) both;
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── LEFT info panel ── */
.info-panel {
    position: relative;
    padding: 56px 44px;
    background: radial-gradient(ellipse 90% 80% at 10% 110%, rgb(16 26 42) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 90% 0%, rgba(200, 150, 42, 0.12) 0%, transparent 55%), linear-gradient(160deg, #121a27 0%, #0c3045 60%, #071a28 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* decorative ring */
.info-panel::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(0, 151, 178, 0.15);
    pointer-events: none;
}

.info-top {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--arctic);
    border: 1px solid rgba(0, 151, 178, 0.35);
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0, 151, 178, 0.08);
    margin-bottom: 28px;
}

.eyebrow span {
    font-size: 14px;
}

.info-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.info-headline em {
    font-style: normal;
    color: var(--arctic);
}

.info-sub {
    font-size: 0.88rem;
    color: rgba(194, 223, 232, 0.62);
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
    margin-bottom: 40px;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(194, 223, 232, 0.8);
    font-weight: 400;
    animation: slideIn 0.5s both;
}

.check-item:nth-child(1) {
    animation-delay: 0.1s;
}

.check-item:nth-child(2) {
    animation-delay: 0.17s;
}

.check-item:nth-child(3) {
    animation-delay: 0.24s;
}

.check-item:nth-child(4) {
    animation-delay: 0.31s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.check-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--arctic), #005F73);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 151, 178, 0.4);
}

.check-dot svg {
    width: 10px;
    height: 10px;
}

/* Bottom contact strip */
.info-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 151, 178, 0.15);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.82rem;
    color: rgba(194, 223, 232, 0.6);
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(0, 151, 178, 0.1);
    border: 1px solid rgba(0, 151, 178, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-val {
    color: rgba(194, 223, 232, 0.88);
    font-weight: 500;
}

/* ── RIGHT form panel ── */
.form-panel {
    background: rgba(10, 26, 38, 0.95);
    padding: 56px 48px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: riseUp 0.7s 0.12s both;
}

.form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 0.8rem;
    color: rgba(194, 223, 232, 0.5);
    margin-bottom: 36px;
    font-weight: 300;
}

/* Fields */
.fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    animation: fadeUp 0.5s both;
}

.field:nth-child(1) {
    animation-delay: 0.15s;
}

.field:nth-child(2) {
    animation-delay: 0.2s;
}

.field:nth-child(3) {
    animation-delay: 0.25s;
}

.field:nth-child(4) {
    animation-delay: 0.3s;
}

.field:nth-child(5) {
    animation-delay: 0.35s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.field label {
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(194, 223, 232, 0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field label span {
    font-size: 13px;
}

.field input,
.field select,
.field textarea {
    background: rgba(0, 151, 178, 0.05);
    border: 1px solid rgba(0, 151, 178, 0.18);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: #fff;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    width: 100%;
    -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(194, 223, 232, 0.28);
}

.field select {
    color: rgba(194, 223, 232, 0.55);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230097B2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.field select option {
    background: #0a2030;
    color: #fff;
}

.field textarea {
    resize: none;
    min-height: 88px;
    line-height: 1.55;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--arctic);
    background: rgba(0, 151, 178, 0.09);
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.12);
    color: #fff;
}

.field select:focus {
    color: #fff;
}

/* Submit button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #1a1000;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 17px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(200, 150, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 6px;
    letter-spacing: 0.01em;
    animation: fadeUp 0.5s 0.42s both;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3.5s 1.2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 160%;
    }
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 36px rgba(200, 150, 42, 0.45), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.submit-btn:active {
    transform: scale(0.99);
}

.btn-arrow {
    transition: transform 0.2s;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Privacy note */
.privacy {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(194, 223, 232, 0.32);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: fadeUp 0.5s 0.48s both;
}

.privacy svg {
    width: 11px;
    height: 11px;
    opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .form-card {
        grid-template-columns: 1fr;
    }

    .form-panel {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 44px 32px;
    }

    .info-panel {
        padding: 44px 32px;
    }

    .info-sub {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .field-row {
        grid-template-columns: 1fr;
    }

    .info-panel {
        padding: 36px 24px;
    }

    .form-panel {
        padding: 36px 24px;
    }

    .info-headline {
        font-size: 1.55rem;
    }
}

/* clients section */
.client-slider-section {
    padding: 40px 0 30px;
}

.roohin-clients__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roohin-clients__slide img {
    max-width: 160px;
    transition: 0.3s ease;
}

.roohin-clients__slide img:hover {
    transform: scale(1.05);
}

.footer-logo-wrap img {
    width: 200px;
}

.cta-section {
    padding: 60px 0 0;
}

/* trust bar */
/* ── Trust Bar ── */
.trust-bar {
    width: 100%;
    background: var(--deep);
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

/* top & bottom accent lines */
.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
}

.trust-bar::before {
    top: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 151, 178, 0.5) 30%, rgba(240, 184, 64, 0.4) 70%, transparent 100%);
}

.trust-bar::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 151, 178, 0.3) 50%, transparent 100%);
}

/* subtle grid */
.trust-bar .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 151, 178, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 151, 178, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* center glow */
.trust-bar .bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 151, 178, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Inner grid ── */
.trust-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ── Each item ── */
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(0, 151, 178, 0.12);
    position: relative;
    transition: background 0.3s;
    animation: fadeIn 0.5s both;
    cursor: default;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:nth-child(1) {
    animation-delay: 0.05s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.12s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.19s;
}

.trust-item:nth-child(4) {
    animation-delay: 0.26s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* top highlight on hover */
.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--arctic), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.trust-item:hover {
    background: rgba(0, 151, 178, 0.05);
}

.trust-item:hover::before {
    opacity: 1;
}

/* ── Check icon ── */
.check-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--arctic), #005F73);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 151, 178, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-item:hover .check-wrap {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.45);
}

.check-wrap svg {
    width: 18px;
    height: 18px;
}

/* ── Text ── */
.trust-text {
    flex: 1;
}

.trust-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.trust-label em {
    font-style: normal;
    color: var(--arctic);
}

/* ── Vertical divider dot between items ── */
.trust-sep {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arctic);
    opacity: 0.4;
    box-shadow: 0 0 6px var(--arctic);
}

.trust-item:last-child .trust-sep {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3) {
        border-top: 1px solid rgba(0, 151, 178, 0.1);
    }

    .trust-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(0, 151, 178, 0.1);
    }

    .trust-sep {
        display: none;
    }
}

@media (max-width: 500px) {
    .trust-inner {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-top: 1px solid rgba(0, 151, 178, 0.1);
    }

    .trust-item:first-child {
        border-top: none;
    }

    .trust-bar {
        padding: 0 20px;
    }
}


/* why */
/* SECTION */
.why-roohin-section {
    width: 100%;
    background: linear-gradient(170deg, var(--ink) 0%, var(--ink-60) 40%, #102040 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

/* grid texture */
.why-roohin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 151, 178, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 151, 178, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* glow orb */
.why-roohin-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 151, 178, 0.09) 0%, transparent 65%);
    pointer-events: none;
}

/* HEADER */
.why-roohin-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 56px;
    animation: why-roohin-up 0.6s both;
}

@keyframes why-roohin-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-roohin-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--arctic);
    border: 1px solid rgba(0, 151, 178, 0.32);
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(0, 151, 178, 0.07);
    margin-bottom: 20px;
}

.why-roohin-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    max-width: 680px;
    margin: 0 auto;
}

.why-roohin-header h2 em {
    font-style: normal;
    color: var(--arctic);
}

.why-roohin-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.why-roohin-divider::before,
.why-roohin-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(0, 151, 178, 0.4));
}

.why-roohin-divider::after {
    background: linear-gradient(90deg, rgba(0, 151, 178, 0.4), transparent);
}

.why-roohin-divider span {
    width: 5px;
    height: 5px;
    background: var(--arctic);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--arctic);
}

/* GRID */
.why-roohin-grid {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0, 151, 178, 0.1);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

/* CARD */
.why-roohin-card {
    background: rgba(10, 26, 38, 0.92);
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    transition: background 0.3s;
    cursor: default;
    animation: why-roohin-up 0.5s both;
}

.why-roohin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--arctic), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-roohin-card:hover {
    background: rgba(0, 80, 100, 0.22);
}

.why-roohin-card:hover::before {
    opacity: 1;
}

.why-roohin-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.why-roohin-card:hover .why-roohin-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.why-roohin-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    flex: 1;
}

.why-roohin-check-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--arctic);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
}

.why-roohin-check-dot {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--arctic), #005F73);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 7px rgba(0, 151, 178, 0.4);
    flex-shrink: 0;
}

.why-roohin-check-dot svg {
    width: 9px;
    height: 9px;
}

/* WIDE CARD */
.why-roohin-card-wide {
    grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-roohin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-roohin-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 500px) {
    .why-roohin-grid {
        grid-template-columns: 1fr;
    }

    .why-roohin-section {
        padding: 60px 20px;
    }
}

/* industries */

/* ── INDUSTRIES ── */
.industries {
    padding: 60px 0 20px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.industry-card {
    background: #fff;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid #e9eef5;
    box-shadow: 0 2px 12px rgba(13, 45, 84, 0.07);
    ;
    transition: all 0.25s;
    border-radius: 15px;
}

.industry-card:hover {
    border-color: var(--arctic);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(13, 45, 84, 0.12);
}

.industry-card:hover .ind-icon-wrap {
    background: linear-gradient(135deg, var(--cryo), var(--frost));
}

.industry-card:hover .ind-icon-wrap svg {
    color: var(--white);
}

.ind-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.25s;
}

.ind-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--blue-primary);
    transition: color 0.25s;
}

.industry-card span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey-800);
    line-height: 1.4;
}

.industries-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* mb */
.mb-1 {
    margin-bottom: 4px;
}

.section-sub {
    font-size: 1rem;
    color: #7a8ea0;
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-logo img {
        max-width: 180px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .process-track {
        grid-template-columns: 1fr;
    }

    .cta-ghost {
        padding: 12px 15px;
    }

    .cta-primary {
        padding: 12px 15px;

    }
}




/* ══ STICKY FLOAT BUTTONS ══ */
.sticky-float {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px
}

.sf-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 18px 0 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .82rem;
    white-space: nowrap;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    max-width: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    transition: max-width .32s cubic-bezier(.4, 0, .2, 1), box-shadow .25s, background .25s, border-color .25s
}

.sf-btn:hover {
    max-width: 220px
}

.sf-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sf-icon svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.sf-label {
    opacity: 0;
    white-space: nowrap;
    transition: opacity .12s .12s;
    pointer-events: none
}

.sf-btn:hover .sf-label {
    opacity: 1
}

.sf-wa {
    background: rgba(14, 24, 42, .92);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(37, 211, 102, .2)
}

.sf-wa .sf-icon {
    background: #25d366
}

.sf-wa:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45)
}

.sf-call {
    background: rgba(14, 24, 42, .92);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(212, 168, 67, .2)
}

.sf-call .sf-icon {
    background: var(--arctic)
}

.sf-call:hover {
    background: var(--arctic);
    border-color: var(--arctic);
    box-shadow: 0 6px 28px rgba(212, 168, 67, .45);
    color: #fff;
}

.sf-email {
    background: rgba(14, 24, 42, .92);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(27, 120, 220, .2)
}

.sf-email .sf-icon {
    background: var(--gold)
}

.sf-email:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 6px 28px rgba(27, 120, 220, .45)
}


/* mobile bar */

.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(8, 13, 24, .97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 14px;
    gap: 8px
}

.mb {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border-radius: 8px;
    font-family: var(--fh);
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s
}

.mb svg {
    width: 15px;
    height: 15px
}

.mb-call {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .12) !important
}

.mb-wa {
    background: #25d366;
    color: #fff
}

.mb-quote {
    background: var(--gold);
    color: var(--dk)
}

@media(max-width:768px) {
    .mob-bar {
        display: flex
    }

    .sticky-float {
        display: none
    }
}

.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #fff;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(37, 211, 102, .35);
    transition: all .2s;
    white-space: nowrap
}

.nav-wa:hover {
    background: #1fbd57;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, .5)
}

.svc-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.hero-mobile-img {
    display: none;
}

@media(max-width:768px) {
    .nav-wa {
        display: none;
    }

    .nav-btn {
        padding: 10px 20px;
    }

    .svc-block {
        padding: 34px 20px 4px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-mobile-img {
        display: block;
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin-top: 20px;
        border-radius: 20px;
    }
}

.why-roohin-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.why-roohin-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: #fff
}

/* ══ PROJECTS ══ */

.project-swiper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.project-slide {
  position: relative;
  overflow: hidden;
}

/* Curtain */
.project-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10;
}

.project-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}

.swiper-slide-active.project-slide img {
  transform: scale(1);
}

.swiper-slide-active.project-slide::after {
  animation: curtainReveal 1s cubic-bezier(0.77,0,0.18,1) forwards;
}

/* Pagination */
.project-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.project-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #93c6df4d;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
}

.project-pagination .swiper-pagination-bullet-active {
  background: var(--arctic);
  width: 28px;
  border-radius: 3px;
}

/* mb-2 */
.mb-2{
    margin-bottom: 10px;
}

@media(max-width:768px) {
    .project-swiper {
        display: flex;
        justify-content: center;
    }
    .services-header{
        margin-bottom: 50px;
        flex-direction: column;
    }
    .services-header-left{
        width: 100%;
        order: 2;
    }

    .services-header-right{
        width: 100%;
        order: 1;
    }
    .services-header-right .services-h2{
        text-align: center;
    }
    .project-slide img {
        height: 360px;
    }
}

@media(max-width: 575px) {
    .project-swiper {
        display: flex;
        justify-content: center;
    }

}

@media(max-width: 480px) {
    .project-swiper {
        display: flex;
        justify-content: center;
    }
    .project-slide img {
        height: 240px;
    }
}
@media(max-width: 375px) {
    .project-swiper {
        display: flex;
        justify-content: center;
    }
    .project-slide img {
        height: 220px;
    }
}

.mb-3{
    margin-bottom: 14px;
}
.mb-4{
    margin-bottom: 18px;
}
.mb-5{
    margin-bottom: 28px;
}
@media(max-width:768px) {
    .mb-5{
        margin-bottom: 20px;
    }
    .services-header-left p {
        font-size: 1rem;
        color: #5a7080;
        line-height: 1.3;
        font-weight: 300;
        margin-top: 10px;
    }
    .mobile-d-none{
        display: none;
    }

}

.category-whatsapp-link{
    position: relative;
    z-index: 2;
    text-decoration: none;
}