:root {
    --black: #080808;
    --black-pure: #000000;
    --bg-rgb: 8, 8, 8;
    --card: rgba(17, 17, 17, 0.7);
    --card-solid: #111111;
    --card2: rgba(24, 24, 24, 0.6);
    --mid: #222222;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.12);
    --border-bright: rgba(255, 255, 255, 0.18);
    --white: #f4efe9;
    --white-pure: #ffffff;
    --text-rgb: 244, 239, 233;
    --muted: #888;
    --muted2: #555;
    --orange: #f4511e;
    --orange-rgb: 244, 81, 30;
    --orange-lt: rgba(244, 81, 30, 0.12);
    --orange-bd: rgba(244, 81, 30, 0.28);
    --orange-dim: #c23e16;
    --green: #22c55e;
    --glass: blur(16px) saturate(180%);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --stroke-color: rgba(244, 200, 180, 0.4);

    /* Z-Index Scale */
    --z-negative: -1;
    --z-base: 1;
    --z-sticky: 100;
    --z-fixed: 200;
    --z-drawer: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-max: 9999;

    /* Utility & Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-alt: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-alt: rgba(255, 255, 255, 0.05);
    --glass-border-bright: rgba(255, 255, 255, 0.2);
    --grid-line: rgba(255, 255, 255, 0.03);
    --btn-ghost-bg: rgba(255, 255, 255, 0.05);
    --btn-ghost-border: rgba(255, 255, 255, 0.12);
    --hero-gradient-1: rgba(244, 81, 30, 0.15);
    --hero-gradient-2: rgba(66, 133, 244, 0.05);
    --hamburger-color: var(--white);
}

[data-theme="light"] {
    --black: #fcfcfc;
    --black-pure: #ffffff;
    --bg-rgb: 252, 252, 252;
    --card: rgba(255, 255, 255, 0.95);
    --card-solid: #ffffff;
    --card2: #f4f4f5;
    --mid: #e2e8f0;
    --border: rgba(0, 0, 0, 0.15);
    --border2: rgba(0, 0, 0, 0.45);
    --border-bright: rgba(0, 0, 0, 0.6);
    --white: #0a0a0a;
    --white-pure: #000000;
    --text-rgb: 10, 10, 10;
    --muted: #334155;
    --muted2: #475569;
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --stroke-color: rgba(244, 81, 30, 0.4);

    /* Utility Overrides */
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-bg-alt: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.32);
    --glass-border-alt: rgba(0, 0, 0, 0.22);
    --glass-border-bright: rgba(0, 0, 0, 0.4);
    --grid-line: rgba(0, 0, 0, 0.08);
    --btn-ghost-bg: rgba(0, 0, 0, 0.03);
    --btn-ghost-border: rgba(0, 0, 0, 0.4);
    --orange-lt: rgba(244, 81, 30, 0.1);
    --orange-bd: rgba(244, 81, 30, 0.3);
    --hero-gradient-1: rgba(244, 81, 30, 0.08);
    --hero-gradient-2: rgba(66, 133, 244, 0.04);
    --hamburger-color: var(--white);
    --scroll-thumb: rgba(0, 0, 0, 0.25);
    --scroll-thumb-hover: rgba(0, 0, 0, 0.35);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--scroll-thumb, rgba(255, 255, 255, 0.15));
    border-radius: 10px;
    border: 3px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scroll-thumb-hover, rgba(255, 255, 255, 0.25));
}

[data-theme="light"] .hero h1 .stroke {
    -webkit-text-stroke: 1.5px var(--orange);
    color: rgba(var(--orange-rgb), 0.06);
    text-shadow: 0 0 15px rgba(var(--orange-rgb), 0.12);
}

[data-theme="light"] .logo-text .stroke {
    -webkit-text-stroke: 1.2px var(--orange);
    color: rgba(var(--orange-rgb), 0.05);
}

/* Hide broken images and show a placeholder color */
img:not([src]),
img[src=""],
img.img-error {
    visibility: hidden;
    position: relative;
}

img:not([src])::after,
img[src=""]::after,
img.img-error::after {
    visibility: visible;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mid, #222);
    border-radius: inherit;
    display: block;
}

/* Performance Optimization: Content Visibility */
section,
.contact-wrap {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
    /* Placeholder size to prevent layout shift */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: var(--z-max, 9999);
    mix-blend-mode: overlay;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black-pure, #000000);
}

::-webkit-scrollbar-thumb {
    background: var(--mid, #222222);
    border-radius: 10px;
    border: 2px solid var(--black-pure, #000000);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange, #f4511e);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--mid, #222222) var(--black-pure, #000000);
}

body {
    background: var(--black, #080808);
    color: var(--white, #f4efe9);
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
    transition:
        background-color 0.3s var(--ease-premium),
        color 0.3s var(--ease-premium);
}

:focus-visible {
    outline: 2px solid var(--orange, #f4511e);
    outline-offset: 4px;
}

:focus:not(:focus-visible) {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    font-style: italic;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    display: block;
}

.icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--orange-lt, rgba(244, 81, 30, 0.12));
    border: 1px solid var(--orange-bd, rgba(244, 81, 30, 0.28));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.icon-box i,
.icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2;
    fill: none;
    display: block;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed, 1000);
    padding: 0.8rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(var(--bg-rgb), 0.95);
    /* Fallback */
    border-bottom: 1px solid var(--border);
    transition:
        padding 0.3s,
        background-color 0.3s,
        border-color 0.3s;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    nav {
        background: rgba(var(--bg-rgb), 0.88);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 1;
    min-width: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
    background: transparent;
    transition: transform 0.3s var(--ease-premium);
}

.logo:hover .logo-img {
    transform: rotate(-2deg);
}

.logo-text {
    display: inline-flex;
    align-items: center;
    color: var(--white, #f4efe9);
    font-size: 1.6rem;
    gap: 0.1rem;
}

.logo-text .accent {
    color: var(--orange, #f4511e);
}

.logo-text .stroke {
    -webkit-text-stroke: 1.2px var(--orange);
    color: rgba(var(--orange-rgb), 0.08);
    margin-left: 0.25rem;
    transition: all 0.3s var(--ease-premium);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--muted, #888);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white, #f4efe9);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    background: var(--orange, #f4511e);
    color: #fff;
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
    box-shadow: 0 4px 15px rgba(var(--orange-rgb, 244, 81, 30), 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    background: var(--orange-dim, #c23e16);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--orange-rgb, 244, 81, 30), 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--card2);
    border: 1px solid var(--border);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium), color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--orange-lt);
    border-color: var(--orange-bd);
    color: var(--orange);
    transform: translateY(-2px);
}

.theme-toggle i,
.theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: transform 0.5s var(--ease-premium), opacity 0.5s var(--ease-premium);
}

[data-theme="light"] .sun-icon {
    transform: translateY(40px) scale(0.5);
    opacity: 0;
}

[data-theme="light"] .moon-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.sun-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.moon-icon {
    transform: translateY(-40px) scale(0.5);
    opacity: 0;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 5% 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%,
            rgba(244, 81, 30, 0.1) 0%,
            transparent 60%),
        radial-gradient(circle at 20% 80%,
            rgba(66, 133, 244, 0.05) 0%,
            transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* grid bg lines */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--text-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--text-rgb), 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
            black 40%,
            transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
            black 40%,
            transparent 100%);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--orange-lt, rgba(244, 81, 30, 0.12));
    border: 1px solid var(--orange-bd, rgba(244, 81, 30, 0.28));
    padding: 0.38rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--orange, #f4511e);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange, #f4511e);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    animation: fadeUp 0.7s 0.08s ease both;
}

.hero h1 .accent {
    color: var(--orange, #f4511e);
}

.hero h1 .stroke {
    -webkit-text-stroke: 1.8px var(--orange);
    color: rgba(var(--orange-rgb), 0.04);
    text-shadow: 0 0 20px rgba(var(--orange-rgb), 0.25);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 12px rgba(244, 81, 30, 0.15), 0 0 4px rgba(244, 81, 30, 0.05);
    }
    to {
        text-shadow: 0 0 28px rgba(244, 81, 30, 0.45), 0 0 8px rgba(244, 81, 30, 0.15);
    }
}

.hero-desc {
    margin-top: 1.8rem;
    font-size: 1.15rem;
    color: var(--muted, #888);
    max-width: 720px;
    line-height: 1.8;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.7s 0.16s ease both;
}

.hero-actions {
    margin-top: 3.2rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.7s 0.24s ease both;
}

.btn-primary {
    background: var(--orange, #f4511e);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.4s var(--ease-premium), transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
    font-family: "Outfit", sans-serif;
    box-shadow: 0 6px 20px rgba(var(--orange-rgb, 244, 81, 30), 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s var(--ease-premium);
}

.btn-primary:hover {
    background: var(--orange-dim, #c23e16);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--orange-rgb, 244, 81, 30), 0.45);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    border: 1px solid var(--btn-ghost-border);
    color: var(--white, #f4efe9);
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.25s, background-color 0.25s;
    font-family: "Outfit", sans-serif;
}

.btn-ghost svg {
    width: 15px;
    height: 15px;
    stroke: var(--white, #f4efe9);
    stroke-width: 2;
    fill: none;
}

.btn-ghost:hover {
    border-color: var(--glass-border-bright);
    background: var(--btn-ghost-bg);
}

.hero-trust {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.32s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--muted, #888);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--glass-bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border-alt);
    backdrop-filter: blur(5px);
    transition: all 0.3s var(--ease-premium);
}

.trust-item:hover {
    background: var(--glass-bg);
    border-color: var(--orange-bd);
    transform: translateY(-2px);
    color: var(--white);
}

.trust-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--green, #22c55e);
    stroke-width: 3;
    fill: none;
}

.hero-right {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-card-stack {
    position: relative;
}

.hero-main-card {
    background: var(--card, rgba(17, 17, 17, 0.7));
    border: 1px solid var(--btn-ghost-border);
    border-radius: 28px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass, blur(16px) saturate(180%));
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s var(--ease-premium);
}

.hero-main-card:hover {
    border-color: var(--border-bright);
}

.hero-main-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(244, 81, 30, 0.12), transparent 70%);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-stat-box {
    background: var(--card2, rgba(24, 24, 24, 0.6));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white, #f4efe9);
    line-height: 1;
}

.hero-stat-num span {
    color: var(--orange, #f4511e);
}

.hero-stat-lbl {
    font-size: 0.72rem;
    color: var(--muted, #888);
    margin-top: 0.35rem;
    font-weight: 500;
}

.hero-rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card2, rgba(24, 24, 24, 0.6));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    stroke: #f59e0b;
    stroke-width: 1;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--muted, #888);
}

.rating-text strong {
    color: var(--white, #f4efe9);
}

.rating-sep {
    flex: 1;
}

.rating-badge {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 100px;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    color: var(--green, #22c55e);
    font-weight: 600;
}

.partner-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.partner-chip {
    background: var(--mid, #222222);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.28rem 0.65rem;
    font-size: 0.7rem;
    color: var(--muted, #888);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.partner-label {
    font-size: 0.7rem;
    color: var(--muted2, #555);
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    background: var(--card, rgba(17, 17, 17, 0.7));
    border: 1px solid var(--orange-bd, rgba(244, 81, 30, 0.28));
    border-radius: 14px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-premium);
}

.floating-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.fb-text {
    font-size: 0.75rem;
    line-height: 1.3;
}

.fb-text strong {
    display: block;
    color: var(--white, #f4efe9);
    font-size: 0.88rem;
    font-weight: 700;
}

.fb-text span {
    color: var(--muted, #888);
}

.fb-top-left {
    top: -1.5rem;
    left: -1.5rem;
    animation: floatY 4s ease-in-out infinite;
}

.fb-btm-right {
    bottom: -1.5rem;
    right: -1.5rem;
    animation: floatY 4s 2s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.seen-in-banner {
    width: 100%;
    max-width: 1200px;
    margin: 4.5rem auto 0 auto;
    padding: 0 5%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.seen-in-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted, #888);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
}

.seen-in-title::before,
.seen-in-title::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.seen-in-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.2rem, 3.5vw, 3rem);
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .seen-in-logos {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

.seen-in-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-premium);
}

.seen-in-logo-img {
    height: clamp(48px, 6vw, 68px);
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.45);
    transition: all 0.4s var(--ease-premium);
}

[data-theme="light"] .seen-in-logo-img {
    filter: grayscale(100%) brightness(0) opacity(0.4);
}

.seen-in-logo-wrapper:hover {
    transform: translateY(-4px);
}

.seen-in-logo-wrapper:hover .seen-in-logo-img {
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.9);
}

[data-theme="light"] .seen-in-logo-wrapper:hover .seen-in-logo-img {
    filter: grayscale(0%) brightness(1) opacity(0.95);
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 60px 0;
    margin: -60px 0;
    pointer-events: none;
}

.ticker {
    background: linear-gradient(90deg, #f4511e 0%, #ff7043 50%, #f4511e 100%);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    transform: rotate(-1.2deg) translateY(-20px);
    width: 110%;
    left: -5%;
    box-shadow: 0 10px 30px rgba(244, 81, 30, 0.2);
    pointer-events: auto;
}

.ticker::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shimmer 6s infinite linear;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0 3rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ticker-item::after {
    content: "✦";
    font-size: 1.2rem;
    color: #fff;
    margin-left: 1.5rem;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 7rem 5%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange, #f4511e);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--orange, #f4511e);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted, #888);
    margin-top: 1rem;
    max-width: 560px;
    line-height: 1.75;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* More space for the right card */
    gap: 6rem;
    align-items: center;
}

.about-left .section-title {
    max-width: 480px;
}

.about-left p {
    color: var(--muted, #888);
    margin-top: 1.4rem;
    line-height: 1.8;
    font-size: 0.97rem;
}

.about-features {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: var(--glass-bg-alt);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s var(--ease-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-wrap: anywhere;
}

.about-feature:hover {
    background: var(--glass-bg);
    border-color: var(--orange-bd);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.about-feature .icon-box {
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.about-feature-text p {
    font-size: 0.83rem;
    color: var(--muted, #888);
    line-height: 1.6;
}

.about-cta-row {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-big-card {
    background: linear-gradient(135deg,
            var(--glass-bg-alt) 0%,
            var(--glass-bg) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium);
}

.about-big-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 81, 30, 0.12), transparent 70%);
    pointer-events: none;
}

.about-big-card::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(66, 133, 244, 0.08),
            transparent 70%);
    pointer-events: none;
}

.about-exp {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.about-exp-num {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--orange, #f4511e);
    letter-spacing: -0.06em;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.9rem;
    color: var(--muted, #888);
    line-height: 1.5;
}

.about-exp-text strong {
    color: var(--white, #f4efe9);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.mini-stat {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 20px;
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all 0.4s var(--ease-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--orange, #f4511e);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.mini-stat:hover {
    background: var(--glass-bg-alt);
    border-color: var(--orange-bd, rgba(244, 81, 30, 0.28));
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mini-stat:hover .stat-icon {
    opacity: 1;
}

.mini-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white, #f4efe9);
    letter-spacing: -0.02em;
    line-height: 1;
}

.mini-stat-num span {
    color: #ff6d00;
    font-size: 1rem;
}

.mini-stat-lbl {
    font-size: 0.72rem;
    color: var(--muted, #888);
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-in {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 24px;
    padding: 1.6rem 2rem;
    backdrop-filter: blur(10px);
}

.fi-label {
    font-size: 0.7rem;
    color: var(--muted2, #555);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.fi-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.fi-logo {
    font-size: 0.85rem;
    color: var(--muted, #888);
    font-weight: 700;
    opacity: 0.4;
    transition: opacity 0.3s;
    cursor: default;
}

.fi-logo:hover {
    opacity: 0.8;
}

.certifications {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 24px;
    padding: 1.8rem 2rem;
    backdrop-filter: blur(10px);
}

.cert-label {
    font-size: 0.7rem;
    color: var(--muted2, #555);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateX(5px);
}

.cert-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2;
    fill: none;
    opacity: 0.7;
}

.cert-name {
    font-size: 0.8rem;
    color: var(--muted, #888);
    font-weight: 500;
}

.services-section {
    background: var(--glass-bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-header {
    margin-bottom: 3.5rem;
}

.services-header .section-title {
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.svc-card {
    background: var(--card, rgba(17, 17, 17, 0.7));
    padding: 2.2rem;
    transition: all 0.3s var(--ease-premium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange, #f4511e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.svc-card:hover {
    background: var(--card2, rgba(24, 24, 24, 0.6));
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card:hover .icon-box {
    background: rgba(244, 81, 30, 0.2);
}

.svc-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin: 1.2rem 0 0.7rem;
}

.svc-card p {
    font-size: 0.84rem;
    color: var(--muted, #888);
    line-height: 1.7;
}

.svc-features {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.svc-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.79rem;
    color: var(--muted, #888);
}

.svc-feat svg {
    width: 12px;
    height: 12px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}

.svc-link {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--orange, #f4511e);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-6px);
    transition:
        opacity 0.3s,
        transform 0.3s;
}

.svc-link svg {
    width: 13px;
    height: 13px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2.5;
    fill: none;
}

.svc-card:hover .svc-link {
    opacity: 1;
    transform: translateX(0);
}

.service-hero {
    padding: 10rem 5% 6rem;
    text-align: center;
    position: relative;
    background:
        radial-gradient(circle at 50% 0%, var(--hero-gradient-1), transparent 70%),
        radial-gradient(circle at 0% 100%, var(--hero-gradient-2), transparent 40%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%,
            black,
            transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.service-hero .section-title {
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.service-hero .section-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    max-width: 700px;
    position: relative;
    z-index: 1;
    color: var(--muted, #888);
    line-height: 1.6;
}

.service-content {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--muted, #888);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-detail-card {
    background: var(--glass-bg-alt);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass, blur(16px) saturate(180%));
}

.service-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange, #f4511e);
    transition: height 0.4s var(--ease-premium);
}

.service-detail-card:hover {
    background: var(--glass-bg-alt);
    border-color: var(--orange-bd);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.service-detail-card:hover::before {
    height: 100%;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white-pure, #ffffff);
}

.service-detail-card h3 svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: var(--muted, #888);
    line-height: 1.7;
    margin-bottom: 0;
}

.industries-header {
    margin-bottom: 4.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industries-header .section-title {
    margin-bottom: 1.2rem;
}

.industries-header .section-sub {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 24px;
    padding: 2.6rem 2rem;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow-wrap: anywhere;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.industry-card:hover {
    background: var(--glass-bg);
    border-color: var(--orange, #f4511e);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(244, 81, 30, 0.12), var(--shadow-premium);
}

.industry-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.5rem 0 0.6rem;
    color: var(--white-pure, #ffffff);
    letter-spacing: -0.02em;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--muted, #888);
    line-height: 1.75;
}

.industry-card .icon-box {
    background: rgba(244, 81, 30, 0.06);
    border: 1px solid rgba(244, 81, 30, 0.15);
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

.industry-card:hover .icon-box {
    background: rgba(244, 81, 30, 0.18);
    border-color: rgba(244, 81, 30, 0.4);
    transform: rotate(5deg);
}

.why-section {
    background: var(--glass-bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 81, 30, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    /* Balanced position */
}

.why-points {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-pt {
    display: flex;
    gap: 1.5rem;
    padding: 1.6rem;
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-pt:hover {
    background: var(--glass-bg);
    border-color: var(--orange-bd);
    transform: translateX(10px);
    box-shadow: var(--shadow-premium);
}

.why-pt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange, #f4511e);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.why-pt:hover::before {
    transform: scaleY(1);
}

.why-pt-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--grid-line);
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    font-family: "Outfit", sans-serif;
    transition: color 0.4s;
}

.why-pt:hover .why-pt-num {
    color: rgba(244, 81, 30, 0.2);
}

.why-pt-body h4 {
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.why-pt-body p {
    font-size: 0.83rem;
    color: var(--muted, #888);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.why-perf-card {
    background: var(--card);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.why-perf-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 81, 30, 0.12), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.why-perf-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
            rgba(66, 133, 244, 0.06),
            transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.perf-main-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.big-perf-num {
    font-size: 6.5rem;
    /* Even bolder */
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.06em;
    line-height: 0.9;
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, var(--white), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-perf-num::after {
    content: "340%";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(25px);
    opacity: 0.5;
    background: var(--orange, #f4511e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-perf-label {
    font-size: 1.05rem;
    color: var(--muted, #888);
    font-weight: 500;
    line-height: 1.5;
    max-width: 220px;
    border-left: 2px solid var(--orange, #f4511e);
    padding-left: 1.5rem;
}

.perf-divider {
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
    margin: 2.5rem 0;
}

.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.perf-box {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.perf-box:hover {
    background: var(--glass-bg);
    border-color: var(--glass-border-bright);
    transform: translateY(-5px);
}

.perf-box-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white, #f4efe9);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.perf-box-num span {
    color: #ff6d00;
    /* More vibrant orange */
    font-size: 1.4rem;
    margin-left: 2px;
}

.perf-box-lbl {
    font-size: 0.8rem;
    color: var(--muted, #888);
    line-height: 1.5;
    font-weight: 500;
}

.awards-row {
    margin-top: 2rem;
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.awards-row svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange, #f4511e);
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
}

.awards-row strong {
    color: var(--white, #f4efe9);
}

.awards-row span {
    color: var(--muted, #888);
}

.clients-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.clients-head p {
    color: var(--muted, #888);
    font-size: 0.95rem;
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.scroll-wrap {
    overflow: hidden;
    position: relative;
}

.scroll-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            black 15%,
            black 85%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 15%,
            black 85%,
            transparent);
    padding: 1rem 0;
}

.scroll-wrap::before,
.scroll-wrap::after {
    display: none;
    /* Replaced by mask-image */
}

.scroll-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: max-content;
}

.client-chip {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 100px;
    padding: 0.6rem 1.4rem;
    margin: 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--muted, #888);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.client-chip:hover {
    background: var(--glass-bg);
    border-color: rgba(244, 81, 30, 0.4);
    color: var(--white, #f4efe9);
    transform: translateY(-2px);
}

.client-chip svg {
    width: 14px;
    height: 14px;
    stroke: var(--orange, #f4511e);
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s;
}

.client-chip:hover svg {
    transform: rotate(10deg);
}

.client-chip img {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-chip:hover img {
    filter: brightness(1) contrast(1);
    transform: scale(1.05);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.clients-logos {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.client-logo-box {
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted, #888);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(1) opacity(0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.client-logo-box img {
    max-height: 44px;
    max-width: 90%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-logo-box:hover img {
    transform: scale(1.05);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .client-logo-box {
        background: var(--glass-bg-alt);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.client-logo-box:hover {
    background: var(--glass-bg);
    border-color: rgba(244, 81, 30, 0.3);
    color: var(--white, #f4efe9);
    transform: translateY(-5px);
    filter: grayscale(0) opacity(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.client-logo-box:hover {
    border-color: var(--orange-bd, rgba(244, 81, 30, 0.28));
    color: var(--muted, #888);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header .section-title,
.process-header .section-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 1.5rem;
    margin-top: 4rem;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            rgba(244, 81, 30, 0.3) 15%,
            rgba(244, 81, 30, 0.3) 85%,
            transparent);
    z-index: -1;
}

.proc-step {
    position: relative;
    text-align: left;
    padding: 2.5rem 1.5rem;
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .proc-step {
        background: var(--glass-bg-alt);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.proc-step:hover {
    background: var(--glass-bg);
    border-color: rgba(244, 81, 30, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proc-num-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s;
}

.proc-step:hover .proc-num-bg {
    color: rgba(244, 81, 30, 0.06);
}

.proc-num {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange, #f4511e), #ff7043);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white, #f4efe9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(244, 81, 30, 0.3);
    transition: transform 0.4s;
}

.proc-step:hover .proc-num {
    transform: rotate(5deg);
}

.proc-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white, #f4efe9);
    position: relative;
    z-index: 1;
}

.proc-step p {
    font-size: 0.85rem;
    color: var(--muted, #888);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.proc-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.proc-detail span {
    font-size: 0.72rem;
    color: var(--muted2, #555);
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border-alt);
    border-radius: 100px;
    padding: 0.3rem 0.8rem;
    transition: all 0.3s;
}

.proc-step:hover .proc-detail span {
    background: rgba(244, 81, 30, 0.1);
    border-color: rgba(244, 81, 30, 0.2);
    color: var(--white, #f4efe9);
}

.testi-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.testi-rating {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--card, rgba(17, 17, 17, 0.7));
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--muted, #888);
}

.testi-rating svg {
    width: 13px;
    height: 13px;
    fill: #f59e0b;
    stroke: #f59e0b;
    stroke-width: 1;
}

.testi-rating strong {
    color: var(--white, #f4efe9);
}

.testi-carousel-wrapper {
    position: relative;
    padding: 0 1rem;
    margin-top: 2rem;
}

.testi-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0 2rem;
}

.testi-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testi-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--card2);
    /* Fallback */
    border: 1px solid var(--glass-border-alt);
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 420px;
    position: relative;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .testi-card {
        background: var(--glass-bg-alt);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.testi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: radial-gradient(circle at top left,
            rgba(244, 81, 30, 0.1),
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.testi-card:hover {
    border-color: var(--orange-bd);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    background: var(--glass-bg);
}

.testi-card:hover::before {
    opacity: 1;
}

.testi-card.featured {
    background: var(--orange-lt);
    border-color: var(--orange-bd);
    box-shadow: var(--shadow-premium);
}

.quote-icon svg {
    width: 28px;
    height: 28px;
    fill: rgba(244, 81, 30, 0.45);
    stroke: none;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin: 1rem 0 1.2rem;
}

.testi-stars svg {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    stroke: #f59e0b;
    stroke-width: 1;
}

.testi-text {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
    margin-top: 0.5rem;
}

.testi-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.author-av {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange, #f4511e), #ff7043);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--white-pure, #ffffff);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(244, 81, 30, 0.4);
}

.author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white-pure, #ffffff);
    letter-spacing: -0.01em;
}

.author-role {
    font-size: 0.78rem;
    color: var(--muted, #888);
    margin-top: 0.15rem;
}

.platform-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--glass-bg-alt);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
    font-size: 0.72rem;
    color: var(--white, #f4efe9);
    font-weight: 600;
    transition: all 0.3s;
}

.platform-badge svg {
    width: 14px;
    height: 14px;
}

.testi-card:hover .platform-badge {
    background: var(--glass-bg);
    color: var(--white, #f4efe9);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card2, rgba(24, 24, 24, 0.6));
    border: 1px solid var(--btn-ghost-border);
    color: var(--white, #f4efe9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--orange, #f4511e);
    border-color: var(--orange, #f4511e);
    box-shadow: 0 6px 16px rgba(244, 81, 30, 0.4);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.carousel-btn.prev {
    left: -1.5rem;
}

.carousel-btn.next {
    right: -1.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--orange, #f4511e);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(244, 81, 30, 0.4);
}

.faq-section {
    background: var(--glass-bg-alt);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(244, 81, 30, 0.06) 0%,
            rgba(244, 81, 30, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-left {
    position: sticky;
    top: 8rem;
}

.faq-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    /* Fallback */
    border: 1px solid var(--glass-border-alt);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .faq-item {
        background: var(--glass-bg-alt);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

.faq-item:hover {
    background: var(--glass-bg-alt);
    border-color: var(--glass-border);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.faq-item.open {
    background: var(--glass-bg-alt);
    border-color: var(--orange-bd);
    box-shadow:
        var(--shadow-premium),
        0 0 20px rgba(var(--orange-rgb), 0.04);
    transform: translateY(0);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white, #f4efe9);
    font-family: "Outfit", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.faq-q:hover {
    color: var(--orange, #f4511e);
}

.faq-item.open .faq-q {
    color: var(--orange, #f4511e);
    padding-bottom: 0.8rem;
}

.faq-q svg {
    width: 36px;
    height: 36px;
    padding: 9px;
    border-radius: 12px;
    border: 1px solid var(--glass-border-alt);
    background: var(--glass-bg-alt);
    stroke: var(--orange, #f4511e);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-q:hover svg {
    background: rgba(244, 81, 30, 0.1);
    border-color: rgba(244, 81, 30, 0.4);
}

.faq-item.open .faq-q svg {
    transform: rotate(135deg);
    background: var(--orange, #f4511e);
    border-color: var(--orange, #f4511e);
    stroke: var(--white, #f4efe9);
    box-shadow: 0 4px 12px rgba(244, 81, 30, 0.3);
}

.faq-a {
    font-size: 0.9rem;
    color: var(--muted, #888);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        transform 0.35s ease,
        padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 1.7rem;
}

.contact-wrap {
    background: var(--card, rgba(17, 17, 17, 0.7));
    border: 1px solid var(--border);
    border-radius: 28px;
    margin: 0 5% 7rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.contact-left-panel {
    background: var(--orange, #f4511e);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.contact-left-panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--glass-bg-alt);
}

.contact-left-panel::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--glass-bg-alt);
}

.contact-left-panel .section-tag {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-left-panel .section-tag::before {
    background: #fff !important;
    opacity: 0.7 !important;
}

.contact-left-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.contact-left-panel p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.75;
}

.contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cd-icon {
    width: 38px;
    height: 38px;
    background: rgba(var(--bg-rgb), 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-icon svg {
    width: 17px;
    height: 17px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.cd-text {
    font-size: 0.85rem;
}

.cd-text strong {
    color: #ffffff !important;
    font-weight: 700;
    display: block;
    margin-bottom: 0.15rem;
}

.cd-text span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.map-embed {
    margin-top: 2rem;
    border-radius: 14px;
    overflow: hidden;
    height: 200px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--glass-border-bright);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0) brightness(0.8);
}

.contact-right-panel {
    padding: 3.5rem;
}

.contact-right-panel h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-right-panel>p {
    font-size: 0.85rem;
    color: var(--muted, #888);
    margin-bottom: 2rem;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--card2, rgba(24, 24, 24, 0.6));
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 0.82rem 1rem;
    color: var(--white, #f4efe9);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(244, 81, 30, 0.6);
    box-shadow: 0 0 0 3px rgba(244, 81, 30, 0.12);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
    outline: 2px solid var(--orange, #f4511e);
    outline-offset: 2px;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted2, #555);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select option {
    background: var(--card-solid);
    color: var(--white);
}

.submit-btn {
    background: var(--orange, #f4511e);
    color: #ffffff;
    border: none;
    padding: 0.95rem 2rem;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-btn svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.2s;
}

.submit-btn:hover {
    background: var(--orange-dim, #c23e16);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 81, 30, 0.35);
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted2, #555);
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-note svg {
    width: 12px;
    height: 12px;
    stroke: var(--green, #22c55e);
    stroke-width: 2.5;
    fill: none;
}

.service-hero {
    padding: 12rem 5% 8rem;
    text-align: center;
    background:
        radial-gradient(circle at 20% 30%,
            rgba(var(--orange-rgb, 244, 81, 30), 0.12) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%,
            rgba(66, 133, 244, 0.08) 0%,
            transparent 50%),
        var(--black, #080808);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 100%);
}

.service-hero .section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-top: 1.5rem;
    letter-spacing: -0.04em;
}

.service-hero .section-sub {
    color: var(--muted, #888);
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.25rem;
    line-height: 1.8;
}

.service-content {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--muted, #888);
    line-height: 1.8;
    max-width: 850px;
}

footer {
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    font-size: 1.35rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    height: 52px;
}

.footer-brand .logo-text {
    color: var(--white-pure, #ffffff) !important;
}

.footer-brand .logo-text span:not(.stroke) {
    color: var(--orange, #f4511e) !important;
}

.footer-brand .logo-text .stroke {
    -webkit-text-stroke: 1px var(--stroke-color) !important;
    color: transparent !important;
    margin-left: 0.35rem;
}

.footer-brand p {
    font-size: 0.83rem;
    color: var(--muted, #888);
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.7rem;
}

.social-link {
    width: 34px;
    height: 34px;
    background: var(--card, rgba(17, 17, 17, 0.7));
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.social-link:hover {
    border-color: var(--orange-bd, rgba(244, 81, 30, 0.28));
    background: var(--orange-lt, rgba(244, 81, 30, 0.12));
}

.social-link svg {
    width: 15px;
    height: 15px;
    stroke: var(--muted, #888);
    stroke-width: 2;
    fill: none;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted2, #555);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    font-size: 0.84rem;
    color: var(--muted, #888);
    margin-bottom: 0.65rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white, #f4efe9);
}

.footer-address {
    font-size: 0.84rem;
    color: var(--muted, #888);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.footer-address strong {
    color: var(--white, #f4efe9);
    display: inline-block;
    margin-bottom: 2px;
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--muted2, #555);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.78rem;
    color: var(--muted2, #555);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--muted, #888);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fixed-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-max, 9999);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    pointer-events: none;
    /* Prevent invisible areas blocking interactions */
}

.widget-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    outline: none;
    text-decoration: none;
    background: var(--card-solid);
    color: var(--white);
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.widget-btn:focus-visible {
    outline: 2px solid var(--orange, #f4511e);
    outline-offset: 2px;
}

.widget-btn i,
.widget-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
    transition: transform 0.3s ease;
}

.widget-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--orange);
}

.widget-btn:active {
    transform: translateY(-2px);
}

/* Specific Themes */
.widget-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.widget-btn.call {
    background: var(--orange, #f4511e);
    color: #ffffff;
}

.widget-btn.scroll-top {
    background: var(--card-solid, #1a1a1a);
    border: 1px solid var(--glass-border);
    color: var(--white, #ffffff);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    height: 0;
    margin-bottom: -12px;
    pointer-events: none;
    transition:
        opacity 0.3s,
        visibility 0.3s,
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        height 0.3s ease,
        margin 0.3s ease;
}

.widget-btn.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    height: 52px;
    margin-bottom: 0;
}

/* Mobile Float Positioning */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
    }

    .hero-right {
        display: none;
    }

    .about-section,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-left {
        position: static;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Testimonial Carousel (Moved from inline) */
    .testi-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .carousel-btn.prev {
        left: -0.5rem;
    }

    .carousel-btn.next {
        right: -0.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(var(--bg-rgb), 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 1rem;
        z-index: var(--z-drawer, 300);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(100%);
        opacity: 0;
        transition:
            all 0.4s var(--ease-premium),
            background-color 0.3s;
    }

    .theme-toggle {
        z-index: var(--z-max, 9999);
        position: relative;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 38px;
        height: 38px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        color: var(--white);
        cursor: pointer;
        padding: 11px 9px;
        border-radius: 12px;
        z-index: var(--z-max, 9999);
        transition: all 0.4s var(--ease-premium);
        position: relative;
    }

    .mobile-menu-btn:hover {
        background: var(--glass-bg-alt);
        border-color: var(--orange-bd);
        transform: translateY(-2px);
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: currentColor;
        border-radius: 2px;
        transition: all 0.4s var(--ease-premium);
        transform-origin: center;
    }

    .mobile-menu-btn.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        transform: translateY(0);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        margin: 0 5% 4rem;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .fixed-widgets {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }

    .widget-btn {
        width: 46px;
        height: 46px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    }

    .widget-btn i,
    .widget-btn svg {
        width: 19px;
        height: 19px;
        stroke-width: 2.2px;
    }

    .widget-btn.scroll-top.show {
        height: 46px;
    }

    .widget-btn.scroll-top {
        margin-bottom: -8px;
    }

    nav {
        padding: 0.45rem 4%;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.15rem;
        gap: 0.4rem;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text .stroke {
        -webkit-text-stroke: 1px var(--orange);
    }

    .nav-right {
        gap: 0.6rem;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 7.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .hero::before {
        background:
            radial-gradient(circle at 50% 30%, rgba(var(--orange-rgb, 244, 81, 30), 0.08) 0%, transparent 60%),
            radial-gradient(circle at 50% 80%, rgba(66, 133, 244, 0.04) 0%, transparent 55%);
    }

    .service-hero {
        padding: 9rem 5% 5rem !important;
        background:
            radial-gradient(circle at 50% 25%, rgba(var(--orange-rgb, 244, 81, 30), 0.08) 0%, transparent 55%),
            radial-gradient(circle at 50% 75%, rgba(66, 133, 244, 0.04) 0%, transparent 55%),
            var(--black, #080808) !important;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 8vw, 3.5rem) !important;
        line-height: 1.15;
    }

    .hero h1 .stroke {
        -webkit-text-stroke: 1px var(--stroke-color);
    }

    [data-theme="light"] .hero h1 .stroke {
        -webkit-text-stroke: 1px rgba(var(--text-rgb), 0.7);
        color: rgba(var(--text-rgb), 0.08);
    }

    .section-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem) !important;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    section {
        padding: 3.5rem 5% !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem !important;
        margin-top: 2.2rem !important;
    }

    .btn-primary,
    .btn-ghost,
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.5rem !important;
    }

    .hero-trust {
        margin-top: 2.5rem !important;
        gap: 0.75rem !important;
    }

    .trust-item {
        padding: 0.4rem 0.8rem !important;
    }

    /* Ticker fix - Prevent horizontal scroll */
    .ticker-wrap {
        padding: 30px 0;
        margin: 0;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .ticker {
        transform: rotate(-1.5deg) translateY(-5px);
        width: 110%;
        left: -5%;
        padding: 0.8rem 0;
        margin: 2rem 0;
        overflow: hidden;
    }

    .ticker-track {
        display: flex;
        width: max-content;
        animation: ticker 30s linear infinite;
    }

    .ticker-item {
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    .hero-stats-grid,
    .about-section,
    .service-grid,
    .contact-wrap,
    .footer-top,
    .industries-grid,
    .perf-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Testimonial Carousel Mobile Refinement */
    .testi-card {
        padding: 2rem 1.5rem !important;
        min-height: 380px;
    }

    /* Why Us Section - Fix Grid Overflow & Text Clipping */
    .why-grid>* {
        min-width: 0;
    }

    .why-perf-card {
        padding: 2rem 1.25rem;
        border-radius: 24px;
    }

    .perf-main-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .big-perf-num {
        font-size: 4.5rem;
        line-height: 1;
    }

    .big-perf-label {
        max-width: 100%;
        padding-left: 1.25rem;
    }

    .perf-divider {
        margin: 1.5rem 0;
    }

    .perf-box {
        padding: 1.25rem;
    }

    .perf-box-num {
        font-size: 1.8rem;
    }

    .awards-row {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1rem;
        gap: 0.8rem;
    }

    .why-pt {
        padding: 1.25rem;
        gap: 1rem;
    }

    .why-pt-num {
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .about-mini-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .clients-logos,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-left-panel,
    .contact-right-panel {
        padding: 2.5rem 1.5rem !important;
    }

    .contact-wrap {
        margin: 0 0 4rem;
        border-radius: 0;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        gap: 0.35rem;
    }

    .logo-img {
        height: 32px;
    }

    .hero {
        padding-top: 6rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero h1 .stroke {
        -webkit-text-stroke: 1px var(--orange);
    }

    [data-theme="light"] .hero h1 .stroke {
        -webkit-text-stroke: 1px var(--orange);
        color: rgba(var(--orange-rgb), 0.06);
    }

    .about-mini-stats {
        grid-template-columns: 1fr;
    }

    .mini-stat {
        padding: 1.5rem 1rem;
    }

    .mini-stat-num {
        font-size: 1.6rem;
    }

    .trust-item {
        font-size: 0.68rem !important;
        width: auto !important;
        justify-content: center;
        padding: 0.35rem 0.75rem !important;
    }

    .svc-card,
    .service-detail-card,
    .hero-main-card {
        padding: 1.5rem;
    }

    .proc-step {
        padding: 2rem 1.25rem;
    }

    .proc-num-bg {
        font-size: 6rem;
        top: -10px;
        right: -5px;
    }

    .about-cta-row {
        flex-direction: column;
        gap: 1rem;
    }

    .about-cta-row a {
        width: 100%;
        text-align: center;
    }

    .stat-num,
    .mini-stat-num,
    .hero-stat-num {
        word-break: break-all;
    }

    .testi-card {
        padding: 1.75rem 1.25rem !important;
        min-height: 360px;
    }

    .hero-actions {
        margin-top: 1.75rem !important;
        gap: 0.6rem !important;
    }

    .hero-trust {
        margin-top: 1.5rem !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .btn-primary,
    .btn-ghost,
    .submit-btn {
        padding: 0.55rem 1.25rem !important;
    }

    /* As Seen In mobile adjustments */
    .seen-in-banner {
        margin-top: 2.5rem !important;
        padding: 0 4% !important;
    }

    .seen-in-title {
        font-size: 0.7rem !important;
        margin-bottom: 1.25rem !important;
        gap: 0.8rem !important;
    }

    .seen-in-title::before,
    .seen-in-title::after {
        width: 20px !important;
    }

    .seen-in-logos {
        gap: 0.75rem 0.75rem !important;
        justify-content: center !important;
    }

    .seen-in-logo-img {
        height: 32px !important;
        max-width: 130px !important;
    }
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#formResponse {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    transition: all 0.3s var(--ease-premium);
    animation: fadeIn 0.4s var(--ease-premium) forwards;
}

#formResponse.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green, #22c55e);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

#formResponse.error {
    display: block;
    background: rgba(244, 81, 30, 0.1);
    color: var(--orange, #f4511e);
    border: 1px solid rgba(244, 81, 30, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.typing-cursor {
    display: inline-block;
    color: var(--orange, #f4511e);
    margin-left: 4px;
    font-weight: 300;
    animation: blinkCursor 0.8s infinite;
    vertical-align: middle;
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    line-height: 1;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}