/* ================================
   INEXORABLES — Dark Vibrant Theme
   Premium, interactive, Apple-inspired
   ================================ */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f0f0f5;
    background: #06070a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #f0f0f5;
}

.section-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 48px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 980px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #f0f0f5;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

/* ================================
   NAVIGATION
   ================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 7, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(6, 7, 10, 0.92);
    box-shadow: 0 1px 30px rgba(99, 102, 241, 0.08);
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    color: #8b8fa3;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0f0f5;
}

.nav-cta {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 980px;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

/* ================================
   SECTION 1: HERO
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #06070a;
    color: #f0f0f5;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

/* Ambient glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 20px;
    border-radius: 980px;
    margin-bottom: 32px;
    background: rgba(99, 102, 241, 0.06);
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #8b8fa3;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   SECTION 2: PROBLEM
   ================================ */
.problem {
    padding: 140px 24px;
    background: #0d0f17;
    text-align: center;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.problem .container {
    position: relative;
    z-index: 1;
}

.problem .section-headline {
    color: #f0f0f5;
}

.problem-points {
    max-width: 680px;
    margin: 0 auto;
}

.problem-points p {
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    color: #8b8fa3;
    margin-bottom: 24px;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.problem-points p:hover {
    color: #f0f0f5;
    transform: translateX(8px);
}

/* ================================
   SECTION 2B: SOLUTION
   ================================ */
.solution {
    padding: 140px 24px;
    background: #06070a;
    color: #f0f0f5;
    text-align: center;
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.solution .container {
    position: relative;
    z-index: 1;
}

.transition-text {
    font-size: 1.125rem;
    color: #8b8fa3;
    margin-bottom: 16px;
}

.solution .section-headline {
    margin-bottom: 64px;
}

.solution-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.solution-point {
    text-align: center;
    padding: 48px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.solution-point:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.solution-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.solution-point p {
    font-size: 1.125rem;
    color: #f0f0f5;
    position: relative;
    z-index: 1;
}

/* ================================
   SECTION 3: SERVICES
   ================================ */
.services {
    padding: 140px 24px;
    background: #0d0f17;
    text-align: center;
    position: relative;
}

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

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-grid .service-card {
    flex: 0 1 calc(33.333% - 16px);
    min-width: 280px;
}

a.service-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px 32px;
    overflow: hidden;
    text-align: center;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
    will-change: transform;
}

/* Cursor-following glow on cards */
.service-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

/* Scanning light beam on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.06), transparent);
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 0;
    transition: none;
}

.service-card:hover::after {
    animation: scanBeam 1s ease forwards;
}

@keyframes scanBeam {
    0% { left: -100%; }
    100% { left: 150%; }
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.service-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 0;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 1rem;
    color: #8b8fa3;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ================================
   SECTION 4: HOW WE WORK
   ================================ */
.how-we-work {
    padding: 140px 24px;
    background: #06070a;
    color: #f0f0f5;
    text-align: center;
    position: relative;
}

.how-we-work::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-we-work .container {
    position: relative;
    z-index: 1;
}

/* Timeline container */
.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Horizontal connecting line */
.timeline-line {
    position: absolute;
    top: 46px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 2;
}

.timeline-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    border-radius: 2px;
    transition: width 0.1s ease;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glowing dot at top of each step */
.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    border: 2px solid rgba(99, 102, 241, 0.5);
    margin: 0 auto 20px;
    position: relative;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.step:hover .step-dot {
    background: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6), 0 0 40px rgba(99, 102, 241, 0.2);
    transform: scale(1.3);
}

.step::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.08);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.08);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.step p {
    font-size: 1rem;
    color: #8b8fa3;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ================================
   SECTION 5: METRICS
   ================================ */
.metrics {
    padding: 140px 24px;
    background: #0d0f17;
    position: relative;
}

.metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 10% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 90% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.metrics .container {
    position: relative;
    z-index: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.metric {
    position: relative;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
    overflow: hidden;
}

/* Cursor-following glow on metric tiles */
.metric::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.metric:hover::before {
    opacity: 1;
}

.metric:hover {
    border-color: rgba(6, 182, 212, 0.25);
}

.metric-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #f0f0f5;
    position: relative;
    z-index: 1;
}

.metric-number.highlight-text {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.9rem;
    color: #8b8fa3;
    position: relative;
    z-index: 1;
}

/* Shimmer scan effect for "Salesforce AI & Agents" */
.metric-number.shimmer-active {
    background-size: 200% auto !important;
    animation: shimmerScan 1.2s ease forwards !important;
}

@keyframes shimmerScan {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

/* ================================
   SECTION 6: CASE STUDY
   ================================ */
.case-study {
    padding: 140px 24px;
    background: #06070a;
    color: #f0f0f5;
    text-align: center;
    position: relative;
}

.case-study::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.case-study .container {
    position: relative;
    z-index: 1;
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.case-block {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
}

.case-block::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-block:hover::before {
    opacity: 1;
}

.case-block:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.case-block p {
    font-size: 1.125rem;
    color: #f0f0f5;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.case-result {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   SECTION 7: ABOUT
   ================================ */
.about {
    padding: 140px 24px;
    background: #0d0f17;
    text-align: center;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-credentials {
    margin-bottom: 80px;
}

.about-clouds {
    font-size: 1.125rem;
    color: #8b8fa3;
    margin-bottom: 24px;
}

.about-belief {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #f0f0f5;
}

.about-story {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 64px;
}

.about-story h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.about-story p {
    font-size: 1.125rem;
    color: #8b8fa3;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ================================
   SECTION 8: FAQ
   ================================ */
.faq {
    padding: 140px 24px;
    background: #06070a;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq .section-headline {
    margin-bottom: 64px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f0f0f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #a5b4fc;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #8b8fa3;
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-question::after,
.faq-item.open .faq-question::after {
    content: '\2212';
    color: #a5b4fc;
}

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

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: #8b8fa3;
    line-height: 1.7;
}

/* ================================
   SECTION 9: FINAL CTA
   ================================ */
.final-cta {
    padding: 160px 24px;
    background: #0d0f17;
    color: #f0f0f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-subtext {
    font-size: 1.25rem;
    color: #8b8fa3;
    margin-bottom: 48px;
}

.final-cta .btn-primary {
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 50px rgba(99, 102, 241, 0.4), 0 0 80px rgba(168, 85, 247, 0.15); }
}

/* ================================
   SECTION 10: FOOTER
   ================================ */
.footer {
    padding: 48px 24px;
    background: #06070a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 8px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: #8b8fa3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a5b4fc;
}


.footer-tag {
    font-size: 0.8rem;
    color: #8b8fa3;
    letter-spacing: 0.03em;
}

.footer-copy {
    font-size: 0.75rem;
    color: #424245;
}

/* ================================
   SKIP LINK (Accessibility)
   ================================ */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ================================
   FOCUS-VISIBLE (Accessibility)
   ================================ */
:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.7);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
}

.faq-question:focus-visible {
    outline-offset: 2px;
}

/* ================================
   MOBILE HAMBURGER MENU
   ================================ */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 9999;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #f0f0f5;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X morphing */
.nav-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   GRAIN TEXTURE OVERLAY
   ================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ================================
   PAGE ENTRANCE
   ================================ */
body {
    animation: pageEntrance 0.6s ease-out forwards;
}

@keyframes pageEntrance {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.back-to-top:hover {
    background: rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

/* ================================
   NAV LOGO HOVER
   ================================ */
.nav-logo:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #06070a;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 9998;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links a {
        display: block !important;
        font-size: 1.5rem;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        color: #f0f0f5 !important;
        padding: 20px 0;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.open a:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.open a:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.open a:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.open a:nth-child(4) { transition-delay: 0.2s; }

    .nav-links .nav-cta {
        margin-top: 16px;
    }

    .hero {
        padding: 100px 24px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

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

    .solution-points {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .services-grid .service-card {
        flex: 0 1 calc(50% - 12px);
        min-width: 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hide horizontal timeline on mobile */
    .timeline-line {
        display: none;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .case-studies {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .solution-points {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card {
        flex: 0 1 100%;
    }

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

/* ================================
   REDUCED MOTION (Accessibility)
   ================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-text {
        animation: none;
    }

    .final-cta .btn-primary {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ================================
   ENHANCEMENT 1: BREATHING GRADIENT ORBS
   ================================ */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    opacity: 0;
    animation: orbFadeIn 2s ease forwards;
    will-change: transform;
    contain: layout style;
}

@keyframes orbFadeIn {
    to { opacity: 1; }
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: orbBreathe1 8s ease-in-out infinite, orbFadeIn 2s ease forwards;
}

.orb-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: -10%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    animation: orbBreathe2 10s ease-in-out infinite, orbFadeIn 2s ease 0.5s forwards;
}

.orb-3 {
    width: 450px;
    height: 450px;
    bottom: 10%;
    left: 15%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: orbBreathe3 12s ease-in-out infinite, orbFadeIn 2s ease 1s forwards;
}

@keyframes orbBreathe1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, 20px) scale(1.15); opacity: 1; }
}

@keyframes orbBreathe2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-25px, 15px) scale(1.1); opacity: 0.85; }
}

@keyframes orbBreathe3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(20px, -20px) scale(1.2); opacity: 0.75; }
}

/* ================================
   ENHANCEMENT 2: SECTION COLOR SHIFTS
   ================================ */
.hero {
    background: linear-gradient(180deg, #06070a 0%, #0a0c18 100%);
}

.problem {
    background: linear-gradient(180deg, #0d0f17 0%, #110e1c 100%);
}

.solution {
    background: linear-gradient(180deg, #0a0820 0%, #06070a 100%);
}

.services {
    background: linear-gradient(180deg, #0d0f17 0%, #0a1018 100%);
}

.how-we-work {
    background: linear-gradient(180deg, #06070a 0%, #0e0a18 100%);
}

.metrics {
    background: linear-gradient(180deg, #0e0a18 0%, #0d0f17 100%);
}

.case-study {
    background: linear-gradient(180deg, #0d0f17 0%, #06070a 100%);
}

.about {
    background: linear-gradient(180deg, #06070a 0%, #0a0c18 100%);
}

.faq {
    background: linear-gradient(180deg, #0a0c18 0%, #0d0f17 100%);
}

.final-cta {
    background: linear-gradient(180deg, #0d0f17 0%, #0a0820 100%);
}

/* ================================
   ENHANCEMENT 3: GRADIENT FADE TRANSITIONS
   ================================ */
.problem::after,
.solution::after,
.services::after,
.how-we-work::after,
.metrics::after,
.case-study::after,
.about::after,
.faq::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--next-bg, #06070a));
    pointer-events: none;
    z-index: 2;
}

.problem::after { --next-bg: #0a0820; }
.solution::after { --next-bg: #0d0f17; }
.services::after { --next-bg: #06070a; }
.how-we-work::after { --next-bg: #0e0a18; }
.metrics::after { --next-bg: #0d0f17; }
.case-study::after { --next-bg: #0a0c18; }
.experience::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--next-bg, #06070a));
    pointer-events: none;
    z-index: 2;
    --next-bg: #06070a;
}
.about::after { --next-bg: #0a0c18; }
.faq::after { --next-bg: #0d0f17; }

/* ================================
   ENHANCEMENT 4: GLASS MORPHISM + CARD UPGRADES
   ================================ */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow:
        0 8px 40px rgba(99, 102, 241, 0.15),
        0 0 60px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.solution-point {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.solution-point:hover {
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.12),
        0 0 40px rgba(168, 85, 247, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.case-block {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ================================
   ENHANCEMENT 5: INFINITE SCROLL MARQUEE
   ================================ */
.marquee-strip {
    overflow: hidden;
    padding: 28px 0;
    position: relative;
    background: transparent;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 2;
    pointer-events: none;
}

.marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, #06070a, transparent);
}

.marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, #06070a, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 45s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.12);
    padding: 0 32px;
    text-transform: uppercase;
}

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

/* ================================
   ENHANCEMENT 6: HERO GRADIENT SHIMMER
   ================================ */
.hero-headline .gradient-text {
    background: linear-gradient(
        90deg,
        #6366f1 0%,
        #a855f7 25%,
        #06b6d4 50%,
        #a855f7 75%,
        #6366f1 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroShimmer 6s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ================================
   ENHANCEMENT 7: 3D DEPTH ON TILES & CARDS
   ================================ */
.service-card,
.solution-point,
.step,
.metric,
.case-block {
    transform-style: preserve-3d;
    perspective: 800px;
    transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.4s ease,
        box-shadow 0.5s ease,
        background 0.4s ease;
}

/* 3D lift on hover for all interactive cards */
.solution-point:hover {
    transform: perspective(800px) translateZ(12px) scale(1.02);
}

.step:hover {
    transform: perspective(800px) translateZ(10px) scale(1.02);
}

.metric:hover {
    transform: perspective(800px) translateZ(8px);
}

.case-block:hover {
    transform: perspective(800px) translateZ(12px) scale(1.01);
}

/* Inner content depth layer */
.service-card h3,
.solution-point p,
.step h3,
.metric .metric-number {
    transform: translateZ(20px);
    transform-style: preserve-3d;
}

/* ================================
   PERFORMANCE — GPU & Rendering
   ================================ */
.hero-headline,
.hero-subtext,
.hero-ctas,
.hero-badge {
    will-change: transform, opacity, filter;
}

.solution-canvas,
.service-canvas {
    will-change: contents;
}

/* Performance containment (layout only, no content-visibility to avoid scroll jank) */
.services,
.metrics,
.faq,
.final-cta,
.footer {
    contain: layout style;
}

/* ================================
   SERVICE DETAIL PAGES
   ================================ */

/* Service Hero */
.svc-hero {
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.svc-hero .container {
    position: relative;
    z-index: 1;
}

.svc-hero-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.svc-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.svc-hero-sub {
    font-size: 1.25rem;
    color: #8b8fa3;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* Problem Section */
.svc-problem {
    padding: 100px 24px;
}

.svc-problem h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.svc-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.svc-pain-card {
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
    perspective: 800px;
    cursor: default;
}

.svc-pain-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.12), 0 0 50px rgba(99, 102, 241, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(800px) translateZ(10px) scale(1.02);
}

.svc-pain-card .pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.svc-pain-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.svc-pain-card p {
    font-size: 0.95rem;
    color: #8b8fa3;
    line-height: 1.5;
}

/* What We Deliver */
.svc-deliver {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.01);
}

.svc-deliver h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.svc-deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.svc-deliver-card {
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}

.svc-deliver-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: perspective(800px) translateZ(12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15), 0 0 60px rgba(99, 102, 241, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.svc-deliver-card .deliver-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(99, 102, 241, 0.6);
    margin-bottom: 12px;
    display: block;
}

.svc-deliver-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.svc-deliver-card p {
    font-size: 0.95rem;
    color: #8b8fa3;
    line-height: 1.5;
}

/* How We Work (Service Page version) */
.svc-process {
    padding: 100px 24px;
}

.svc-process h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 56px;
    text-align: center;
}

.svc-steps {
    display: flex;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.svc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.svc-steps::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
    z-index: 0;
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(var(--svc-line-scale, 0));
}

.svc-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.svc-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #a5b4fc;
    position: relative;
    z-index: 1;
}

.svc-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.svc-step p {
    font-size: 0.9rem;
    color: #8b8fa3;
    line-height: 1.5;
}

/* Outcomes */
.svc-outcomes {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.01);
}

.svc-outcomes h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.svc-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.svc-outcome {
    text-align: center;
    padding: 32px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.svc-outcome:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: perspective(800px) translateZ(8px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.svc-outcome-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #a5b4fc, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-outcome-label {
    font-size: 0.9rem;
    color: #8b8fa3;
}

/* Why Us (Service Page) */
.svc-why {
    padding: 100px 24px;
}

.svc-why h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.svc-why-item {
    padding: 32px 24px;
    border-left: 2px solid rgba(99, 102, 241, 0.3);
}

.svc-why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.svc-why-item p {
    font-size: 0.95rem;
    color: #8b8fa3;
    line-height: 1.5;
}

/* Service FAQ */
.svc-faq {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.01);
}

.svc-faq h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.svc-faq .faq-list {
    max-width: 720px;
    margin: 0 auto;
}

/* Service CTA */
.svc-cta {
    padding: 120px 24px;
    text-align: center;
}

.svc-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.svc-cta p {
    font-size: 1.15rem;
    color: #8b8fa3;
    margin-bottom: 36px;
}

/* Cross-link banner */
.svc-crosslink {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(99, 102, 241, 0.03);
}

.svc-crosslink p {
    font-size: 1rem;
    color: #8b8fa3;
    margin-bottom: 8px;
}

.svc-crosslink a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.svc-crosslink a:hover {
    color: #ffffff;
}

/* Back link */
.svc-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b8fa3;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.svc-back:hover {
    color: #f0f0f5;
}

/* Service page responsive */
@media (max-width: 768px) {
    .svc-hero h1 {
        font-size: 2.5rem;
    }

    .svc-pain-grid,
    .svc-deliver-grid,
    .svc-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .svc-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .svc-steps {
        flex-direction: column;
        gap: 32px;
    }

    .svc-steps::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .svc-steps::after {
        display: none;
    }

    .svc-step {
        text-align: left;
        padding-left: 80px;
    }

    .svc-step-num {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .svc-hero h1 {
        font-size: 2rem;
    }

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

    .svc-outcome-val {
        font-size: 2rem;
    }
}

/* ================================
   EXPANDABLE TILE MODAL OVERLAY
   ================================ */
.expand-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.expand-overlay.active {
    opacity: 1;
    visibility: visible;
}

.expand-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 7, 10, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.expand-modal {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    background: rgba(15, 16, 24, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.expand-overlay.active .expand-modal {
    transform: scale(1) translateY(0);
}

/* Scrollbar styling for modal */
.expand-modal::-webkit-scrollbar {
    width: 4px;
}

.expand-modal::-webkit-scrollbar-track {
    background: transparent;
}

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

.expand-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #8b8fa3;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.expand-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f0f0f5;
    border-color: rgba(255, 255, 255, 0.2);
}

.expand-modal-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 12px;
    display: block;
}

.expand-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #f0f0f5;
    margin-bottom: 8px;
    line-height: 1.2;
}

.expand-modal-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 3px;
    margin: 20px 0 28px;
}

.expand-modal-body {
    font-size: 1.05rem;
    color: #b0b3c6;
    line-height: 1.8;
}

.expand-modal-body p {
    margin-bottom: 16px;
}

.expand-modal-body p:last-child {
    margin-bottom: 0;
}

/* Clickable indicator on expandable tiles */
.expandable-tile {
    cursor: pointer;
    position: relative;
}

.expandable-tile::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.expandable-tile:hover::after {
    opacity: 0.5;
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .expand-modal {
        width: 95%;
        padding: 40px 28px;
        max-height: 90vh;
        border-radius: 20px;
    }

    .expand-modal-title {
        font-size: 1.5rem;
    }

    .expand-modal-body {
        font-size: 0.95rem;
    }
}

/* ================================
   EXPERIENCE / TRACK RECORD SECTION
   ================================ */
.experience {
    padding: 140px 24px;
    background: linear-gradient(180deg, #0a0c18 0%, #0d0f17 100%);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 30% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.experience .container {
    position: relative;
    z-index: 1;
}

.experience .section-headline {
    margin-bottom: 64px;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto 64px;
}

.exp-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.exp-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow:
        0 8px 40px rgba(99, 102, 241, 0.12),
        0 0 60px rgba(99, 102, 241, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(800px) translateZ(10px) scale(1.01);
}

.exp-card-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 980px;
    padding: 4px 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.exp-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.exp-card p {
    font-size: 1rem;
    color: #8b8fa3;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.exp-card-result {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem !important;
    color: #a5b4fc !important;
    font-weight: 500;
}

.exp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.exp-stat {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.exp-stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #a5b4fc, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-stat-label {
    font-size: 0.85rem;
    color: #8b8fa3;
}

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

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

@media (max-width: 480px) {
    .exp-stats {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SERVICE PAGE — DETAILED SOLUTIONS SECTION
   ================================ */
.svc-solutions {
    padding: 100px 24px;
}

.svc-solutions h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.svc-solutions-intro {
    font-size: 1.1rem;
    color: #8b8fa3;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.svc-sol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.svc-sol-card {
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}

.svc-sol-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    transform: perspective(800px) translateZ(8px) scale(1.01);
}

.svc-sol-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f0f0f5;
}

.svc-sol-card p {
    font-size: 0.92rem;
    color: #8b8fa3;
    line-height: 1.6;
}

.svc-sol-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.svc-sol-card ul li {
    font-size: 0.88rem;
    color: #8b8fa3;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.5;
}

.svc-sol-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.5);
}

/* AI & Security approach block */
.svc-approach {
    padding: 80px 24px;
    background: rgba(99, 102, 241, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.svc-approach h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.svc-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.svc-approach-block {
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.svc-approach-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #a5b4fc;
}

.svc-approach-block p {
    font-size: 0.95rem;
    color: #8b8fa3;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .svc-sol-grid,
    .svc-approach-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CALENDLY POST-BOOKING OVERLAY
   ================================ */
.calendly-thank-you {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(6, 7, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.calendly-thank-you.active {
    opacity: 1;
    visibility: visible;
}

.calendly-thank-you-content {
    text-align: center;
    max-width: 480px;
    padding: 48px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.calendly-thank-you.active .calendly-thank-you-content {
    transform: translateY(0);
}

.calendly-thank-you-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 2px solid rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #a5b4fc;
}

.calendly-thank-you h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f0f0f5;
    margin-bottom: 12px;
}

.calendly-thank-you p {
    font-size: 1.1rem;
    color: #8b8fa3;
    line-height: 1.6;
    margin-bottom: 32px;
}

.calendly-thank-you .btn {
    min-width: 200px;
}

/* ================================
   HULY-INSPIRED ENHANCEMENTS
   ================================ */

/* 1. GLOWING CTA BUTTONS — Rotating conic gradient border */
.btn-primary {
    position: relative;
    z-index: 1;
    border: none;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--glow-angle, 0deg),
        #6366f1, #a855f7, #06b6d4, #6366f1
    );
    z-index: -2;
    animation: glowRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Extra glow spread on hover */
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3), 0 0 60px rgba(168, 85, 247, 0.15);
}

@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes glowRotate {
    to { --glow-angle: 360deg; }
}

/* Fallback for browsers without @property — simple pulse */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .btn-primary::before { display: none; }
}

/* 2. ENHANCED GRADIENT TEXT — White-to-lavender huly-style */
.gradient-text {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d5d8f6 35%,
        #a78bfa 60%,
        #818cf8 80%,
        #06b6d4 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

/* 3. TIGHTER LETTER-SPACING ON ALL HEADINGS */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

.section-headline,
.svc-hero h1,
.hero-headline {
    letter-spacing: -0.035em;
}

/* 4. BACKGROUND AMBIENT LIGHT EFFECTS */
/* Use box-shadow on ::before (where available) for ambient glows
   without conflicting with existing ::after gradient transitions */

/* Homepage — sections that already have ::before used get
   ambient via inset box-shadow on the section itself */
.solution {
    box-shadow: inset 400px 200px 600px -400px rgba(99, 102, 241, 0.04);
}

.how-we-work {
    box-shadow: inset -400px 300px 600px -400px rgba(6, 182, 212, 0.03);
}

.metrics {
    box-shadow: inset 0 200px 500px -300px rgba(168, 85, 247, 0.04);
}

.experience {
    box-shadow: inset -300px 100px 500px -300px rgba(99, 102, 241, 0.04);
}

/* Service page ambient glows — these don't have ::after conflicts */
.svc-problem {
    position: relative;
}
.svc-problem::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    top: 20%;
    right: -250px;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: lighten;
}

.svc-deliver {
    box-shadow: inset -350px 200px 500px -350px rgba(6, 182, 212, 0.03);
}

.svc-solutions {
    box-shadow: inset 350px 250px 500px -350px rgba(168, 85, 247, 0.03);
}

.svc-process {
    box-shadow: inset -300px 150px 500px -300px rgba(99, 102, 241, 0.03);
}

.svc-outcomes {
    box-shadow: inset 300px 100px 500px -300px rgba(6, 182, 212, 0.04);
}

.svc-why {
    box-shadow: inset -250px 200px 400px -250px rgba(168, 85, 247, 0.03);
}

/* Ensure service page sections are positioned for pseudo-elements */
.svc-problem, .svc-deliver, .svc-solutions, .svc-process, .svc-outcomes {
    position: relative;
    overflow: hidden;
}

/* 5. SPOTLIGHT / RAY-OF-LIGHT EFFECT ON CARDS */
/* Light ray overlay — angled gradient simulating natural light */
.service-card,
.solution-point,
.step,
.metric,
.case-block,
.exp-card,
.exp-stat,
.svc-pain-card,
.svc-deliver-card,
.svc-sol-card,
.svc-approach-block,
.svc-step,
.svc-outcome,
.svc-why-item {
    position: relative;
    overflow: hidden;
}

/* Spotlight ray — diagonal light wash on hover */
.svc-pain-card::before,
.svc-deliver-card::before,
.svc-sol-card::before,
.svc-approach-block::before,
.svc-step::before,
.svc-outcome::before,
.svc-why-item::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.svc-pain-card:hover::before,
.svc-deliver-card:hover::before,
.svc-sol-card:hover::before,
.svc-approach-block:hover::before,
.svc-step:hover::before,
.svc-outcome:hover::before,
.svc-why-item:hover::before {
    opacity: 1;
}

/* Static light ray — top-right diagonal wash for depth */
/* Applied only to elements whose ::after is not already in use */
.svc-pain-card::after,
.svc-deliver-card::after,
.svc-approach-block::after,
.svc-why-item::after,
.exp-stat::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* 6. ENHANCED TILE HOVER EFFECTS */
.svc-pain-card:hover,
.svc-deliver-card:hover,
.svc-sol-card:hover,
.svc-approach-block:hover,
.svc-outcome:hover,
.svc-why-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.1), 0 0 50px rgba(99, 102, 241, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Step cards on service pages — enhanced glow on hover */
.svc-step:hover {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12), 0 0 40px rgba(99, 102, 241, 0.05);
}

/* Homepage cards — subtle glow warmth enhancement */
.exp-stat:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}

/* 7. CLIP-PATH REVEAL — CSS base for section content */
.clip-reveal {
    clip-path: inset(8% 4% 8% 4% round 12px);
    transition: clip-path 0.1s linear;
}

.clip-reveal.revealed {
    clip-path: inset(0% 0% 0% 0% round 0px);
}
