/* ============================================================
   MAKCLAN DIGITAL — Premium Design System
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    /* Dark backgrounds */
    --bg-dark: #030712;
    --bg-dark-2: #080f1f;
    --bg-card-dark: #0d1526;

    /* Brand colors */
    --indigo: #6366f1;
    --indigo-dark: #4f46e5;
    --violet: #8b5cf6;
    --violet-light: #a78bfa;
    --pink: #ec4899;

    /* Gradients */
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 55%, #ec4899 100%);
    --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, .15) 0%, rgba(139, 92, 246, .15) 100%);

    /* Light surface */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-2: #f1f5f9;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .10), 0 8px 20px rgba(0, 0, 0, .06);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, .25);

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* Timing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --t: all 0.3s var(--ease);

    /* Layout */
    --max-w: 1220px;
    --section-py: 60px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography helpers ───────────────────────────────────── */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 55%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--r-full);
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    border: none;
    line-height: 1;
}

.btn svg {
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .35);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, .5);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    background: #f8fafc;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: .85rem;
}

.btn-md {
    padding: 12px 26px;
    font-size: .9rem;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1rem;
}

/* ── Section Tags ─────────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gradient-soft);
    color: var(--indigo-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: var(--r-full);
    border: 1px solid rgba(99, 102, 241, .2);
    margin-bottom: 20px;
}

.section-tag-light {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.section-title-light {
    color: #fff;
}

.section-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
}

.section-body-light {
    color: rgba(255, 255, 255, .7);
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 100%;
    margin: 0 auto 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-header .section-title {
    text-align: center;
}

.section-header .section-tag {
    /* center it */
}

/* ── Feature List ─────────────────────────────────────────── */
.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: .97rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    flex-shrink: 0;
}

.feature-list-dark .feature-item {
    color: rgba(255, 255, 255, .7);
}

.feature-icon-violet {
    background: rgba(139, 92, 246, .12);
    border-color: rgba(139, 92, 246, .2);
    color: var(--violet-light);
}

/* ── Reveal animations (initial state, GSAP drives them) ──── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

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


/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: background 0.4s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.nav-logo:hover img {
    opacity: .8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-links a {
    padding: 8px 14px;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    border-radius: var(--r-sm);
    transition: var(--t);
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

/* Dropdown */
.nav-has-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 15, 31, .95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    padding: 10px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: .86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    border-radius: var(--r-sm);
    transition: var(--t);
}

.nav-dropdown a:hover {
    color: #fff;
    background: rgba(99, 102, 241, .15);
}

.nav-actions {
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, .8);
    border-radius: 2px;
    transition: var(--t);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, .97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.mobile-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    padding: 10px 20px;
    transition: var(--t);
}

.mobile-link:hover {
    color: #fff;
}

.mobile-cta {
    margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--bg-dark);
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Subtle grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
}

/* Gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, .35) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-duration: 12s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, .25) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, .15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-duration: 18s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    33% {
        transform: translateY(-30px) scale(1.04);
    }

    66% {
        transform: translateY(20px) scale(0.98);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 600;
    color: #a5b4fc;
    letter-spacing: .04em;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--indigo);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, .6);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, .6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 3.6rem);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(248, 250, 252, .6);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num,
.stat-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus {
    font-size: 1rem;
    font-weight: 700;
    color: var(--indigo);
}

.stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    letter-spacing: .03em;
}

.hero-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .4;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, .6);
    border-radius: 2px;
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(12px);
        opacity: 0;
    }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
    padding: var(--section-py) 0;
    background: var(--surface);
}

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

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.about-img-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(3, 7, 18, .85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.img-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.img-card-title {
    font-size: .88rem;
    font-weight: 600;
}

.img-card-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════
   CLIENTS
   ═══════════════════════════════════════════════════════════ */
.clients {
    padding: 80px 0;
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-header {
    text-align: center;
    margin-bottom: 52px;
}

.clients-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 10px;
}

.clients-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.clients-sub {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* Marquee */
.clients-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

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

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

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: var(--t);
    flex-shrink: 0;
    min-width: 160px;
}

.client-logo span {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .04em;
    white-space: nowrap;
    transition: var(--t);
}

.client-logo:hover {
    border-color: var(--indigo);
    box-shadow: 0 4px 20px rgba(99, 102, 241, .12);
}

.client-logo:hover span {
    color: var(--indigo);
}


/* ═══════════════════════════════════════════════════════════
   AI ERA
   ═══════════════════════════════════════════════════════════ */
.ai-era {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.ai-era::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(99, 102, 241, .15) 0%, transparent 70%);
    pointer-events: none;
}

.ai-era-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-era-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.ai-era-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--r-xl);
    display: block;
    opacity: .85;
    filter: brightness(.9);
}

/* Floating badges on image */
.ai-float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(3, 7, 18, .85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    animation: badge-float 4s ease-in-out infinite;
}

.ai-badge-1 {
    top: 32px;
    left: 24px;
    animation-delay: 0s;
}

.ai-badge-2 {
    bottom: 32px;
    right: 24px;
    animation-delay: 2s;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.ai-tagline {
    margin-top: 28px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    font-style: normal;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.ai-tagline em {
    color: rgba(255, 255, 255, .8);
    font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   THE MAKCLAN EDGE
   ═══════════════════════════════════════════════════════════ */
.edge {
    /* padding: var(--section-py) 0; */
    background: var(--surface-alt);
    padding-top: 190px;
    padding-bottom: 0;
}

.edge-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.edge-card {
    flex: 0 0 calc(25% - 12px);
    /* 4 equal columns */
    max-width: calc(25% - 12px);

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 20px;
    transition: var(--t);
    position: relative;
    overflow: hidden;

    --lift: 0px;
    text-align: left;
    animation: floatCard 4s ease-in-out infinite;
}

.edge-card.upward {
    --lift: -120px;
}

.section-header.upward {
    transform: translateY(-120px);
}

.edge-card:nth-child(1) {
    animation-delay: 0s;
}

.edge-card:nth-child(2) {
    animation-delay: 0.4s;
}

.edge-card:nth-child(3) {
    animation-delay: 0.8s;
}

.edge-card:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes floatCard {
    0% {
        transform: translateY(var(--lift));
    }

    50% {
        transform: translateY(calc(var(--lift) - 8px));
    }

    100% {
        transform: translateY(var(--lift));
    }
}

.section-header.upward {
    padding-top: 20px;
}

.edge .section-intro,
.edge .section-header {
    margin-bottom: 0;
}

.edge-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.edge-logo img {
    max-width: 200px;
    /* adjust as needed */
    height: auto;
}

.edge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.edge-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}

.edge-card:hover::before {
    opacity: 1;
}

.edge-card-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    margin-bottom: 20px;
}

.edge-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.edge-row {
    display: grid;
    gap: 32px;
}

ul.edge-list li {
    color: var(--text-secondary);
}

.edge-col-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 10px;
}

.edge-col p {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

ul.small-txt li {
    color: var(--text-secondary);
}

.market-list {
    margin-bottom: 25px;
    text-align: center;
}

h4.short-heading {
    font-size: 20px !important;
}

.client-logos img {
    width: 100%;
    height: 50px;
}

.txt-white {
    color: #ffffff;
}

.center-btn {}

.what-matter-content .outcomes-grid {
    display: flex;
}

.what-matter-content .outcomes-grid .outcome-card {
    width: 50%;
}

#black-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r-sm);
}

#black-card:hover {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .2);
    color: rgba(255, 255, 255, .85);
}

#black-card h4.white-txt {
    color: #ffffffa6;
}

#black-card .outcome-list li::before {
    background: #6366f1;
}

#black-card h4 .tag-pos {
    background: #6366f1;
}

#black-card h4 {
    color: #ffffffa6;
}

#black-card .outcome-list li {
    color: #ffffffa6;
}

#black-card .outcome-list li::before {
    opacity: 1;
}

#white-card li {
    border-color: rgba(99, 102, 241, .2);
}

#white-card li.feature-item {
    border: 1px solid #6366f133;
    padding: 8px;
    border-radius: 10px;
}

#margin-top-content {
    margin-top: 20px;
}

#margin-btm-content {
    margin-bottom: 20px;
}

#white-card li:hover {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .2);
    color: #000000;
}

#white-outcome-card {
    background: #f8fafc;
}

#white-outcome-card:hover {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .2);
    color: #000000;

}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: var(--section-py) 0;
    background: var(--surface);
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
    cursor: default;
}

.service-card:hover {
    box-shadow: var(--shadow-lg), 0 0 60px rgba(99, 102, 241, .08);
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, .2);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, .12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-num {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--indigo);
    margin-bottom: 16px;
    opacity: .6;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    margin-bottom: 22px;
    transition: var(--t);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(99, 102, 241, .3);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.service-card>p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-bullets li {
    position: relative;
    padding-left: 16px;
    font-size: .84rem;
    color: #475569;
    line-height: 1.55;
}

.service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--indigo);
    border-radius: 50%;
    opacity: .5;
}


/* ═══════════════════════════════════════════════════════════
   CTA STRIP (mid-page)
   ═══════════════════════════════════════════════════════════ */
.cta-strip {
    padding: 60px 0;
    background: var(--bg-dark-2);
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-strip-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    max-width: 600px;
    line-height: 1.6;
}

.cta-strip-inner strong {
    color: rgba(255, 255, 255, .9);
}


/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
}

.process-card:hover {
    border-color: rgba(99, 102, 241, .25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-step-num {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    opacity: .8;
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    color: var(--border-strong);
    opacity: .5;
    transition: var(--t);
}

.process-card:hover .process-icon {
    color: var(--indigo);
    opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.cta-final {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, .2);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, .15);
    bottom: -100px;
    right: 10%;
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}

.cta-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-actions {
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
}

.cta-trust-item svg {
    color: var(--indigo);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand .footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 18px;
    opacity: .85;
}

.footer-brand p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    transition: var(--t);
}

.footer-socials a:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    color: #fff;
}

.footer-links-group h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 18px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a,
.footer-links-group span {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    transition: var(--t);
}

.footer-links-group a:hover {
    color: rgba(255, 255, 255, .85);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .25);
}

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

.footer-bottom-links a {
    font-size: .83rem;
    color: rgba(255, 255, 255, .25);
    transition: var(--t);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .55);
}

/* Salauni css start */
.main-text-section {
    margin-top: 70px;
}

.main-text-section .section-intro {
    margin: 0 auto 0px;
}

.main-text-section .page-hero-subtitle {
    color: #475569;
}

.main-text-section .approach-connects li {
    color: #475569;
    background: #f8fafc;
    border: 1px solid var(--border);
    width: max-content;
    margin: 0 auto;
}

#main-page-section .page-hero-inner {
    margin: unset;
    width: 49%;
}

#main-page-section {
    text-align: left;
}

#main-page-section .page-hero-ctas {
    justify-content: start;
}

#bottom-text .section-body {
    max-width: 100%;
    font-weight: 600;
}

#bottom-text .what-matter-content .outcomes-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.highlighted-text {
    color: #ff00ae;
    font-weight: 600;
    font-style: italic;
}

.margin-top-btn {
    margin-top: 40px;
}

.margin-heading-txt {
    margin-bottom: 15px;
}

.home-grid-section .edge-grid {
    margin-top: 165px;
}

#main-page-section .container {
    display: flex;
    gap: 30px;
}

.banner-img {
    width: 50%;
}

.main-video-sec video {
    width: 100%;
    height: auto;
}

.banner-img img {
    border-radius: 10px;
}

.case-study-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}


.case-study-img {
    overflow: hidden;
    border-radius: 10px;
}

.case-study-box img {
    border-radius: 10px;
    width: 100%;
    transition: transform 0.8s ease;
    height: 250px;
    object-fit: cover;
}

.case-study-box:hover img {
    transform: scale(1.1);
}

.case-study-box {
    text-align: left;
}

.case-study-box h3 {
    font-size: 18px;
    margin-top: 30px;
    text-align: left;
}

.case-study-box p {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 30px;
    text-align: left;
}

.case-study-box a {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .35);
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 10px;
}

.case-study-section .page-hero-inner {
    margin: unset;
    width: 100%;
}

#main-page-section #case-study-sec {
    margin: unset;
    width: 100%;
}

#new-bottom-txt .section-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    color: #ffffffb3;
    line-height: 1.75;
    max-width: 100%;
}

img.da4s-logo {
    width: 100%;
    height: auto;
    padding-top: 10px;
}

.blogs-main-section h1.reveal-up {
    color: #ffffff;
}

.blogs-main-section p.reveal-up {
    color: #ffffff;
    margin-bottom: 22px !important;
}

.blog-section .blog-featured-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--r-full);
    transition: all 0.2s;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.article-header {
    max-width: 800px;
    text-align: center;
    text-align: left !important;
    color: #ffffff;
    margin-bottom: 0px !important;
}

.article-meta {
    justify-content: left !important;
}

#blogs-details-section .container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 2%;
    align-items: center;
    padding: 100px 20px;
}

#blogs-details-section .article-header {
    width: 49%;
}

#blogs-details-section .article-hero-image {
    width: 49%;
}

#blogs-details-section .article-meta .article-date,
#blogs-details-section .article-meta .article-author,
#blogs-details-section .article-meta .article-read-time {
    color: #ffffff;
}

#blogs-details-section .article-hero-image img {
    border-radius: 10px;
}

.article-content .page-hero-ctas {
    justify-content: unset;
}

.article-content .article-body a {
    color: #ffffff;
}

.article-content .article-body a:hover {
    color: #ffffff;
}

.article-content a.link-txt {
    color: #7b60f4;
    font-weight: 700;
    text-decoration: underline;
}

.article-content a.link-txt:hover {
    color: #7b60f4;
}

.article-content table {
    margin-bottom: 25px;
    width: 100%;
    border-left: 1px #e4e4e4 solid;
    border-top: 1px #e4e4e4 solid;
}

.article-content thead {
    white-space: nowrap;
}

.article-content table td,
.article-content table th {
    border-right: 1px #e4e4e4 solid;
    border-bottom: 1px #e4e4e4 solid;
    padding: 20px 10px;
}

p.mini-margin {
    margin-bottom: 5px !important;
    margin-top: 10px;
}

.video-text-box h4 {
    color: #000000 !important;
    margin-bottom: 10px;
}

.video-text-box p {
    color: #475569 !important;
}

#start-conversion-blogs .container {
    margin: 0 auto;
    text-align: center;
}

#start-conversion-blogs h2 {
    color: #ffffff;
}

#start-conversion-blogs p {
    color: #ffffff;
}

#start-conversion-blogs a.btn.btn-primary.btn-lg {
    margin-top: 20px;
}

.video-btm-txt p {
    margin-top: 20px;
    font-weight: 600;
}

.blog-pagination {
    display: none !important;
}

#blogs-details-section h1.page-hero-title.reveal-up {
    font-size: 42px;
    line-height: 3.5rem;
}

.socail-media-box {
    padding: 60px 0px;
}

.footer-bottom p {
    color: #ffffff73;
}

.footer-bottom .footer-bottom-links a {
    color: #ffffff73;
}

#privacy-content {
    max-width: 100%;
}



/* Salauni css end */


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 960px) {
    :root {
        --section-py: 90px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        order: -1;
    }

    .about-img-wrap img {
        height: 380px;
    }

    .ai-era-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .ai-era-visual {
        order: -1;
    }

    .ai-era-visual img {
        height: 380px;
    }

    .edge-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .edge {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .edge-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .edge-card.upward {
        --lift: -0;
    }

    .section-header.upward {
        transform: translateY(0px);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 40px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 18px 22px;
    }

    .hero-stat-div {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .main-text-section .approach-connects li {
        width: 100%;
    }

    #main-page-section .container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    #main-page-section .page-hero-inner {
        margin: unset;
        width: 100%;
    }

    .banner-img {
        width: 100%;
    }

    .case-study-box img {
        width: 100%;
        height: auto;
    }

    .case-study-section {
        flex-wrap: wrap;
        gap: 60px;
    }

    #blogs-details-section .article-header {
        width: 100%;
    }

    #blogs-details-section .article-hero-image {
        width: 100%;
    }

    #blogs-details-section .article-meta {
        flex-direction: row;
        gap: 8px;
    }

    .article-content {
        padding: 40px 0 40px;
    }
}

@media (max-width: 576px) {
    .edge-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .margin-top-btn {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .clients-track {
        gap: 16px;
    }

    .client-logo {
        padding: 14px 24px;
        min-width: 130px;
    }
}


/* ═══════════════════════════════════════════════════════════
   UTILITY & ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--indigo);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

::selection {
    background: rgba(99, 102, 241, .25);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, .4);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--indigo);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — SHARED STYLES
   ═══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .5);
    transition: var(--t);
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, .85);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, .2);
}

/* Page Hero (compact) */
.page-hero {
    position: relative;
    background: var(--bg-dark);
    padding: 150px 0 90px;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
}

.page-hero-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, .3) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    filter: blur(70px);
    animation: float 12s ease-in-out infinite;
}

.page-hero-orb-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, .2) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    filter: blur(70px);
    animation: float 15s ease-in-out infinite reverse;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 22px;
}

.page-hero-subtitle {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: rgba(248, 250, 252, .6);
    line-height: 1.75;
    max-width: 100%;
    margin: 0 auto 36px;
}

.page-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* 3-Pillar intro strip */
.pillars-strip {
    padding: 70px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

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

.pillar-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    text-align: center;
    transition: var(--t);
}

.pillar-card:hover {
    border-color: rgba(99, 102, 241, .25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pillar-card-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    margin: 0 auto 16px;
}

.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.pillar-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Why section */
.why-section {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.why-visual:hover img {
    transform: scale(1.03);
}

/* Creates / Without two-col */
.outcomes-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.outcome-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 26px;
}

.outcome-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.outcome-card h4 .tag-pos {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.outcome-card h4 .tag-neg {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.outcome-list li {
    position: relative;
    padding-left: 16px;
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.outcome-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--indigo);
    opacity: .5;
}

/* Services Include section */
.includes-section {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.include-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 24px;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.include-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, .2);
    transform: translateY(-3px);
}

.include-card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    margin-bottom: 16px;
}

.include-card h4 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.include-card p {
    font-size: .87rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Approach connects section */
.approach-section {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(99, 102, 241, .12) 0%, transparent 70%);
    pointer-events: none;
}

.approach-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-content .section-title-light {
    margin-bottom: 20px;
}

.approach-connects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
}

.approach-connects li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: rgba(255, 255, 255, .65);
    padding: 5px 5px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r-sm);
    transition: var(--t);
    padding-left: 10px;
}

.approach-connects li:hover {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .2);
}

.approach-connects li svg {
    color: var(--indigo);
    flex-shrink: 0;
}

.approach-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, .15);
}

.approach-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--r-xl);
    opacity: .85;
    display: block;
}

/* Inner Process section */
.inner-process {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
}

.inner-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.inner-process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
}

.inner-process-card:hover {
    border-color: rgba(99, 102, 241, .25);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.inner-process-card .step-num {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .7;
    margin-bottom: 12px;
}

.inner-process-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.inner-process-card p {
    font-size: .87rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 12px;
}

.inner-process-card .you-get {
    font-size: .8rem;
    color: var(--indigo);
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.inner-process-card .you-get strong {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: .8rem;
    white-space: nowrap;
}

/* From-To section */
.from-to-section {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.from-to-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.from-to-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 22px;
    transition: var(--t);
}

.from-to-card:hover {
    border-color: rgba(99, 102, 241, .2);
    box-shadow: var(--shadow-sm);
}

.from-col {
    font-size: .88rem;
    color: var(--text-muted);
}

.from-col span {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 4px;
    opacity: .7;
}

.to-col {
    font-size: .88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.to-col span {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 4px;
    opacity: .7;
}

.arrow-divider {
    width: 32px;
    height: 32px;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    flex-shrink: 0;
}

/* Edge section (inner pages) */
.edge-inner-section {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
}

.edge-inner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.edge-inner-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px 26px;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.edge-inner-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.edge-inner-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.edge-inner-card:hover::after {
    transform: scaleX(1);
}

.edge-inner-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    margin-bottom: 18px;
}

.edge-inner-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.edge-inner-card p {
    font-size: .87rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* FAQ accordion */
.faq-section {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t);
}

.faq-item.open {
    border-color: rgba(99, 102, 241, .25);
    box-shadow: var(--shadow-sm);
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: .97rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    transition: var(--t);
}

.faq-q:hover {
    color: var(--indigo);
}

.faq-q .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-soft);
    border: 1px solid rgba(99, 102, 241, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease);
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-a p {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.72;
}

/* Legal pages */
.legal-hero {
    background: var(--bg-dark);
    padding: 150px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 20%, rgba(99, 102, 241, .15) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 14px;
}

.legal-hero p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .45);
}

.legal-body {
    padding: 80px 0 100px;
    background: var(--surface);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 44px 0 14px;
    letter-spacing: -.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: none;
    margin: 12px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: .93rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--indigo);
    border-radius: 50%;
    opacity: .6;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--indigo);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-toc {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    margin-bottom: 48px;
}

.legal-toc h3 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 14px;
}

.legal-toc ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 0;
}

.legal-toc ul li {
    padding-left: 0;
    font-size: .86rem;
}

.legal-toc ul li::before {
    display: none;
}

.legal-toc ul li a {
    color: var(--indigo);
    text-decoration: none;
    font-weight: 500;
}

.legal-toc ul li a:hover {
    text-decoration: underline;
}

/* Services nav in footer area of service pages */
.more-services {
    padding: 70px 0;
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.more-service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--t);
}

.more-service-link:hover {
    border-color: var(--indigo);
    color: var(--indigo);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.more-service-link svg {
    color: var(--indigo);
    flex-shrink: 0;
}


/* Responsive inner pages */

@media (max-width: 992px) {
    .article-body {
        width: 100% !important;
    }

    .article-sidebar {
        width: 100% !important;
    }

}

@media (max-width: 576px) {
    .edge-card h3 {
        margin-bottom: 14px;
    }

    .edge-grid {
        flex-direction: row;
        gap: 10px;
        margin-top: 16px;
    }

    .what-matter-content .outcomes-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .what-matter-content .outcomes-grid .outcome-card {
        width: 100%;
    }

    .center-btn {
        margin-top: 12px;
    }

    .main-text-section {
        margin-top: 30px;
    }

    .main-text-section .page-hero-subtitle {
        color: #475569;
        margin-bottom: 0px;
    }

    .clients {
        padding: 30px 0;
    }

    .edge {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .home-grid-section .edge-grid {
        margin-top: 30px;
    }

    .cta-strip {
        padding: 40px 0;
    }

    .pillars-strip {
        padding: 30px 0;
    }

    .hero-ctas {
        margin-bottom: 0px;
    }

    .hero {
        padding: 120px 0 0px;
    }

    .about-grid {
        gap: 30px;
    }

    .market-list {
        margin-bottom: 0px;
    }

    .why-visual img {
        height: auto;
    }

    .why-grid {
        gap: 30px;
    }

    .approach-visual img {
        height: auto;
    }

    .approach-inner {
        gap: 30px !important;
    }

    .faq-section {
        padding: 30px 0px;
    }

    .more-services {
        padding: 30px 0;
    }

    .page-hero {
        padding: 100px 0 30px !important;
    }

    .cta-actions {
        margin-bottom: 0px;
    }

    .socail-media-box {
        padding: 30px 0px;
    }

    .video-brand-heading {
        font-size: 10px;
    }

    .btn-lg.large-bnt-size {
        font-size: 12px;
    }

    .btn-lg {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .edge-inner-section {
        padding: 30px 0px;
    }

    .video-btm-txt p {
        margin-bottom: 0px;
    }

    .mobile-menu ul {
        gap: 4px;
        margin-bottom: 0px;
    }

    .mobile-link {
        font-size: 16px;
        padding: 8px 8px;
    }

    .mobile-menu {
        height: max-content;
        padding: 80px 0px;
        padding-bottom: 30px;
    }

    .article-body,
    .article-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .related-articles-grid {
        padding: 30px 0 !important;
    }

    .about-img-wrap img {
        height: auto;
    }

    .ai-era-visual img {
        height: auto;
    }

    .blog-section {
        padding: 30px 0 0px !important;
    }

    #blogs-main-section {
        gap: 20px;
        margin-bottom: 30px;
    }

    #blogs-details-section .container {
        padding-bottom: 30px;
    }

    .article-content {
        padding: 30px 0 30px !important;
    }

    #blogs-details-section h1.page-hero-title.reveal-up {
        font-size: 30px;
        line-height: 2.5rem;
    }

    .related-articles-grid .section-title {
        margin-bottom: 25px !important;
    }

    .blog-grid {
        margin-bottom: 0px !important;
    }

    #contact {
        padding: 30px 0 30px;
    }

    .legal-body {
        padding: 30px 0 30px;
    }

    .legal-toc {
        margin-bottom: 30px;
    }

    .legal-content h2 {
        margin: 25px 0 10px;
    }

    .article-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .article-content table td,
    .article-content table th {
        padding: 10px 5px;
        font-size: 12px;
    }
}

@media (max-width: 960px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .approach-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .edge-inner-grid {
        grid-template-columns: 1fr;
    }

    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .from-to-grid {
        grid-template-columns: 1fr;
    }

    .inner-process-grid {
        grid-template-columns: 1fr;
    }

    .more-services-grid {
        grid-template-columns: 1fr;
    }

    .from-to-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .arrow-divider {
        display: none;
    }

    .page-hero-ctas {
        flex-direction: row;
        align-items: center;
    }

    #pillar-box-section .pillars-grid {
        display: block;
    }

    #pillar-box-section .pillars-grid .pillar-card {
        margin-bottom: 20px;
    }



    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 130px 0 70px;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
    padding: 80px 0 120px;
    background: #f8f9fc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* ── Form card ───────────────────────────────────────────── */
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 40px rgba(99, 102, 241, 0.06);
}

.contact-form-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-card>p {
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.req {
    color: #ec4899;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--dark);
    background: #fafbff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b5c5;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-select-wrap {
    position: relative;
}

.form-select-wrap select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--dark);
    background: #fafbff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select-wrap select:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.select-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -4px;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success-icon {
    margin: 0 auto 24px;
    width: 72px;
    height: 72px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ── Sidebar cards ───────────────────────────────────────── */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card,
.contact-trust-card,
.contact-expect-card {
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.05);
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-info-card>p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.contact-detail:last-of-type {
    border-bottom: none;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6366f1;
}

.contact-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

.contact-detail-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.2s;
}

a.contact-detail-value:hover {
    color: #6366f1;
}

.contact-detail-sub {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.contact-socials {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
}

.contact-socials-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.2s;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Trust card */
.contact-trust-card h4,
.contact-expect-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-trust-list li svg {
    flex-shrink: 0;
}

/* Expect card */
.contact-expect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.expect-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    padding: 4px 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-expect-list li strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 3px;
}

.contact-expect-list li p {
    font-size: 0.8375rem;
    color: var(--text-secondary);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   BLOG PAGES
   ============================================================ */

.blog-section {
    padding: 80px 0 120px;
}

/* Featured post */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(236, 72, 153, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 100%;
    min-height: 400px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(99, 102, 241, 0.95);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.blog-featured-content {
    padding: 48px;
}

.blog-featured-content .blog-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
}

.blog-featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-featured-content>p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f1f5;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content .blog-category {
    position: static;
    display: inline-block;
    width: fit-content;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    margin-bottom: 12px;
    padding: 4px 10px;
}

.blog-card-content .blog-date {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
}

.blog-card-content>p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--r-full);
    transition: all 0.2s;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.blog-card-link:hover {
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    gap: 10px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.pagination-btn {
    padding: 10px 20px;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================================
   ARTICLE (BLOG DETAIL)
   ============================================================ */

.article-hero {
    padding-bottom: 0;
    background: #000000;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.article-breadcrumb a {
    color: #6366f1;
    transition: color 0.2s;
}

.article-breadcrumb a:hover {
    color: #8b5cf6;
}

.breadcrumb-sep {
    opacity: 0.5;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.article-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-hero-image {
    margin-top: 48px;
    border-radius: 0;
    overflow: hidden;
    max-height: 500px;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article content */
.article-content {
    padding: 80px 0 120px;
}

.article-grid {
    display: flex;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    gap: 5%;
}

.article-body {
    max-width: 750px;
    width: 50%;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 20px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.8;
}

.article-body ol {
    list-style: decimal;
}

.article-body ul {
    list-style: disc;
}

.article-body a {
    color: #6366f1;
    transition: color 0.2s;
}

.article-body a:hover {
    color: #8b5cf6;
}

/* Article sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 45%;
}

.author-card,
.related-posts,
.newsletter-card,
.sidebar-cta {
    background: #f8f9fc;
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 16px;
    padding: 28px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
}

.author-card h4,
.related-posts h4,
.newsletter-card h4,
.sidebar-cta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.author-card p,
.newsletter-card p,
.sidebar-cta p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.related-posts-list {
    list-style: none;
}

.related-posts-list li {
    margin-bottom: 12px;
}

.related-posts-list a {
    font-size: 0.9375rem;
    color: var(--dark);
    transition: color 0.2s;
}

.related-posts-list a:hover {
    color: #6366f1;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 14px;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.875rem;
    background: #ffffff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-full {
    width: 100%;
}

/* Related articles grid */
.related-articles-grid {
    padding: 80px 0;
    background: #f8f9fc;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
}

.related-articles-grid .section-title {
    margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 1100px) {}

@media (max-width: 900px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        min-height: 300px;
    }

    .blog-featured-content {
        padding: 32px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 20px;
    }

    .blog-featured-content h2 {
        font-size: 1.5rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

    .article-body h2 {
        font-size: 1.25rem;
        margin: 32px 0 16px;
    }

    .article-sidebar {
        gap: 16px;
    }

    .author-card,
    .related-posts,
    .newsletter-card,
    .sidebar-cta {
        padding: 20px;
    }

    .related-articles-grid {
        padding: 60px 0;
    }

    .section-intro {

        margin: 0 auto 30px;
    }
}