@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;900&family=Orbitron:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   DESIGN TOKENS - Exact Reference Values
   ======================================== */

:root {
    /* Colors - Extracted from Reference */
    --primary: #EF4023;
    /* Brand Color (Backgrounds) */
    --primary-text: #D33418;
    /* Accessible Text Color (4.5:1 on White) */
    --primary-hover: #D33418;
    --text-dark: #0c0407;
    --text-muted: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f0fdff;
    --bg-gray: #F8F9FA;
    --border-light: rgba(0, 0, 0, 0.1);
    --border-medium: rgba(0, 0, 0, 0.2);

    /* Project Themes */
    --theme-greenleaf: rgba(37, 99, 235, 0.05);
    --theme-sunrise: rgba(245, 158, 11, 0.05);
    --theme-finflow: rgba(16, 185, 129, 0.05);
    --theme-sweet: rgba(236, 72, 153, 0.05);

    /* Vibrant Palette - Inspired by Pathfinder */
    --vibrant-orange: #FF9F1C;
    --vibrant-green: #2EC4B6;
    --vibrant-blue: #3A86FF;
    --vibrant-purple: #8338EC;
    --vibrant-red: #FF006E;
    --vibrant-cyan: #06D6A0;
    --vibrant-indigo: #4361EE;

    --colorful-gradient: linear-gradient(90deg,
            var(--vibrant-orange),
            var(--vibrant-red),
            var(--vibrant-purple),
            var(--vibrant-blue),
            var(--vibrant-green));

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-cabin: 'Cabin', sans-serif;
    --font-sora: 'Sora', sans-serif;
    --font-outfit: 'Outfit', sans-serif;

    /* Font Sizes */
    --text-xs: 13px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 28px;
    --text-4xl: 32px;
    --text-5xl: 42px;
    --text-6xl: 48px;
    --text-7xl: 56px;
    --text-8xl: 80px;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    /* Layout */
    --container-width: 1240px;
    --container-padding: 20px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-3xl: 40px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gradient-text {
    background: var(--colorful-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: clip;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: var(--text-8xl);
    letter-spacing: -2px;
}

h2 {
    font-size: var(--text-7xl);
    letter-spacing: -2px;
}

h3 {
    font-size: var(--text-3xl);
    letter-spacing: -1px;
}

p {
    line-height: 1.7;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul {
    list-style: none;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-20) 0;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* ========================================
   TYPOGRAPHY COMPONENTS
   ======================================== */

.badge-dot {
    width: 26px;
    height: 26px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.section-title {
    font-size: var(--text-7xl);
    line-height: 1.2;
    letter-spacing: -2px;
    margin: var(--space-3) 0 var(--space-5) 0;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 1024px) {

    .section-header.center,
    .section-header .center {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: var(--space-10);
    }

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

    .section-subtitle {
        text-align: center;
    }
}

.section-description {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   BUTTON COMPONENTS
   ======================================== */

/* ========================================
   NAVIGATION
   ======================================== */

/* ========================================
   NAVIGATION - TRENDY FLOATING DESIGN
   ======================================== */

.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    min-width: 1050px;
    white-space: nowrap;
    z-index: 1000;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled State */
.navbar-scrolled {
    top: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-scrolled .nav-links a,
.navbar-scrolled .logo {
    color: var(--text-dark);
}

.navbar-scrolled.nav-dark-theme .nav-links a,
.navbar-scrolled.nav-dark-theme .logo {
    color: white;
}

/* Theme Adaptation */
.navbar.nav-dark-theme {
    background: rgba(10, 10, 15, 0.45);
    /* Refined translucent dark tint */
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    /* Subtle top light reflection */
}

.navbar.nav-dark-theme .nav-links a,
.navbar.nav-dark-theme .logo {
    color: #ffffff !important;
    opacity: 1 !important;
}

.navbar-scrolled.nav-dark-theme {
    background: rgba(10, 10, 15, 0.65);
    /* Slightly darker for readability on scroll */
    border-color: rgba(255, 255, 255, 0.08);
}

.navbar.nav-dark-theme .mobile-menu-btn span {
    background-color: white;
}

/* Dropdown theme adaptation for dark navbar */

.navbar.nav-light-theme {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.navbar.nav-light-theme .nav-links a,
.navbar.nav-light-theme .logo {
    color: var(--text-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: none !important;
}

.logo:hover {
    opacity: 1 !important;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-dark-theme .logo img {
    filter: brightness(0) invert(1);
}

.navbar-scrolled .logo img {
    filter: none;
}

.navbar-scrolled.nav-dark-theme .logo img {
    filter: brightness(0) invert(1);
}

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

.nav-pane.main-pane {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-panes-container {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: inherit;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active::after {
    background: var(--colorful-gradient);
}

/* Dropdown Styles */

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .navbar {
        top: 15px;
        width: calc(100% - 32px);
        min-width: 0;
        padding: 12px 20px;
        border-radius: var(--radius-2xl);
    }

    .nav-container {
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        padding: 100px 40px 40px;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow: hidden;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-panes-container {
        width: 200%;
        /* For sliding effect */
        height: 100%;
        display: flex;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.submenu-active .nav-panes-container {
        transform: translateX(-50%);
    }

    .nav-pane {
        width: 50%;
        height: 100%;
        display: flex !important;
        /* Overriding display: none */
        flex-direction: column;
        gap: var(--space-6);
        overflow-y: auto;
    }

    .nav-links a {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-dark) !important;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-close-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 40px;
        background: none;
        border: none;
        color: var(--text-dark);
        cursor: pointer;
    }

    /* Sub-pane Styles */
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION - HOMEPAGE
   ======================================== */

/* ========================================
   HERO SECTION - THE GLASS NARRATIVE
   ======================================== */

/* Split-screen layout style adaptations */

@keyframes float-element-1 {

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

    50% {
        transform: translateY(-16px) rotate(12deg);
    }
}

@keyframes float-element-2 {

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

    50% {
        transform: translateY(-20px) rotate(-18deg);
    }
}

/* Light Orbs for depth */

@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Badge Refinement */

/* Button Enhancements */

/* Visual Block Design */

@keyframes float-slow {

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

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

/* Success Cards */

@keyframes float-card {

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

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Scroll Indicator */

@keyframes wheel-scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Responsive Overrides for Hero */

/* ========================================
   TRUSTED BY SECTION
   ======================================== */

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

    100% {
        transform: translateX(calc(-33.333% - var(--space-5)));
    }
}

/* ========================================
   CARD COMPONENTS
   ======================================== */

/* Testimonial Cards */

/* ========================================
   PORTFOLIO / PROJECTS
   ======================================== */

/* ========================================
   FAQ ACCORDION
   ======================================== */

/* ========================================
   FOOTER
   ======================================== */



/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
}

.fade-in-visible {
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   SECTION-SPECIFIC STYLES
   ======================================== */

/* About Summary - Premium Innovation Mosaic */

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    width: 100%;
    margin-top: var(--space-8);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-value {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.05em;
}

.stat-desc {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mosaic Architecture */

/* Tile Layout */

/* Mosaic Interaction */

/* Responsive Mosaic */
@media (max-width: 1200px) {
    .stat-value {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 768px) {
    .stat-value {
        font-size: var(--text-3xl);
    }
}

/* Services Summary */
/* Services Summary - Premium Narrative Studio Experience (Light) */

/* Narrative Row Architecture */

/* Visual Stage */

/* Crystal Content Card */

/* Card Elements */

/* Responsive Narrative */

/* Projects Summary */

/* Testimonials */

/* FAQ Section */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1239px) {
    :root {
        --text-8xl: 64px;
        --text-7xl: 48px;
    }
}

@media (max-width: 1024px) {
    :root {
        --text-8xl: 42px;
        --text-7xl: 32px;
        --text-6xl: 28px;
    }

    .section-title {
        font-size: var(--text-7xl) !important;
        letter-spacing: -1px !important;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .section {
        padding: var(--space-12) 0;
    }
}

/* Tablet Specific */

/* ========================================
   ADDITIONAL PAGE STYLES
   ======================================== */

/* Legal Page */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}



/* Contact Page */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-weight: 600;
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-4);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--text-base);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(252, 54, 45, 0.1);
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {

    .navbar {
        display: none;
    }
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */



/* Animation Delays */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

/* ========================================
   HOME SERVICES STICKY SECTION
   ======================================== */

/* Scoped Service Card Styling for Home Sticky Section */

/* Staggered offsets for stacking effect */

/* Icon Styling to match Vision Section Styles */

/* Responsive Reset */

/* Fix for Sticky Cards Hover Jitter/Line Issue */

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-hero {
    padding: 120px 0 80px;
    background-color: white;
}

/* Responsive */

/* ========================================
   MODERN SERVICES PAGE - CUSTOM DESIGN
   ======================================== */

/* 1. Modern Hero */

.hero-content-modern {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-large {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: var(--space-3);
    margin-bottom: var(--space-6);
    color: var(--text-heading);
}

.highlight-text {
    color: var(--primary);
    display: inline-block;
}

.hero-subtitle-large {
    font-size: 20px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

/* 2. Text Marquee */

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

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

    /* Assumes content is duplicated 2x */
}

/* 3. Detailed Services (Extending Sticky Stack) */

/* 4. Process Section Dark */

.badge-dot.white {
    background-color: white;
}

/* Connecting Line */

/* 5. FAQ Modern */

.faq-item-modern {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--space-4);
}

.faq-item-modern p {
    margin-top: var(--space-2);
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

/* Animations included in style.css already? If not: */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero-title-large {
        font-size: 48px;
    }

    /* Remove line on mobile */
}

/* ========================================
   CAREERS PAGE STYLES
   ======================================== */

.careers-hero {
    padding: 120px 0 100px;
    background-color: white;
}

/* Culture Section */
.culture-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.culture-image-large img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
}

.culture-image-large:hover img {
    transform: scale(1.02);
}

.culture-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.culture-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
}

.c-stat {
    display: flex;
    flex-direction: column;
}

.c-stat span {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.c-stat small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.benefit-card {
    padding: var(--space-6);
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--text-heading);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Open Roles Section */

/* Responsive */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

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

@media (max-width: 768px) {

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

/* ========================================
   MODERN SERVICES PAGE REDESIGN (2026)
   ======================================== */

/* --- Hero Section V2 --- */

.hero-content-v2 {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Bento Grid Section --- */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Grid Concept: 
   Row 1: Large (2 cols), Medium (1 col)
   Row 2: Medium (1 col), Wide (2 cols) 
*/

@media (min-width: 768px) {

    /* Correction for desired layout Layout for 5 items:
       Row 1: bento-large (colspan 2), bento-medium (colspan 1)
       Row 2: bento-medium (colspan 1), bento-medium (colspan 1), bento-medium (colspan 1)
    */
}

.bento-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    z-index: 2;
}

.bento-card h3 {
    font-size: var(--text-2xl);
    letter-spacing: -0.5px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: var(--text-base);
    line-height: 1.8;
}

/* Remove abstract shape decoration since we have a real image */

/* Stat circle */

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

/* --- How We Work (Alternating Row Layout) --- */

/* Each step row */

/* Reverse order for even rows — image on right */

/* Image side */

/* Step number watermark on image */

/* Color overlay tint per step */

/* Content side */

/* Label colors per step */

/* Colorful left accent bar on content side */

/* Responsive */

/* --- Services (Alternating Row Layout) --- */

/* Service rows — 5 distinct color schemes */

/* Tags inside service rows */

/* View Details link in service rows */

/* Responsive for services section */

/* --- Process Flow Infographic (Compact 4-step) --- */
.process-flow-section {
    padding: var(--space-20) 0;
    background: var(--bg-gray);
}

.process-flow-header {
    text-align: center;
    margin-bottom: 56px;
}

.process-flow-header h2 {
    font-size: var(--text-5xl);
    letter-spacing: -1.5px;
    margin-bottom: var(--space-3);
}

.process-flow-header p {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* 4-card horizontal grid */
.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    align-items: stretch;
}

/* Each card */
.flow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

/* Card color themes */
.flow-card-1 {
    background: linear-gradient(160deg, #7c3aed 0%, #a855f7 60%, #ec4899 100%);
}

.flow-card-2 {
    background: linear-gradient(160deg, #0891b2 0%, #22d3ee 60%, #3b82f6 100%);
}

.flow-card-3 {
    background: linear-gradient(160deg, #1d4ed8 0%, #3b82f6 60%, #8b5cf6 100%);
}

.flow-card-4 {
    background: linear-gradient(160deg, #c2410c 0%, #f97316 60%, #eab308 100%);
}

/* About Values color themes - Glassmorphic Upgrades */

/* Premium gradient top-accent for Values cards */

/* Top row: step number + icon */
.flow-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 12px;
}

.flow-step-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.95);
    /* Increased contrast */
    text-transform: uppercase;
}

.flow-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.flow-icon-wrap i {
    width: 20px;
    height: 20px;
    color: white;
}

/* Infographic thumbnail */
.flow-card-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.flow-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.flow-card:hover .flow-card-thumb img {
    opacity: 0.9;
    transform: scale(1.06);
}

/* Fade from thumb into card body */
.flow-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, var(--card-bg) 100%);
    pointer-events: none;
}

.flow-card-1 .flow-card-thumb::after {
    background: linear-gradient(to bottom, transparent 40%, #7c3aed 100%);
}

.flow-card-2 .flow-card-thumb::after {
    background: linear-gradient(to bottom, transparent 40%, #0891b2 100%);
}

.flow-card-3 .flow-card-thumb::after {
    background: linear-gradient(to bottom, transparent 40%, #1d4ed8 100%);
}

.flow-card-4 .flow-card-thumb::after {
    background: linear-gradient(to bottom, transparent 40%, #c2410c 100%);
}

/* Text content */
.flow-card-body {
    padding: 16px 22px 24px;
    flex: 1;
}

.flow-card-body h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.flow-card-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    /* Increased contrast */
    line-height: 1.65;
    margin: 0;
}

/* Arrow connector between cards */
.flow-connector {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flow-connector i {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
}

/* CTA below grid */

/* Responsive */
@media (max-width: 1024px) {
    .process-flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .flow-connector {
        display: none;
    }

    .flow-card {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .process-flow-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .process-flow-header h2 {
        font-size: var(--text-4xl);
    }
}

/* --- Values Flow Additional Styling --- */

/* --- Minimal FAQ --- */
.minimal-faq {
    padding: var(--space-20) 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: var(--space-10) auto 0;
    display: flex;
    flex-direction: column;
}

.faq-item-modern {
    border-bottom: 1px solid var(--border-light);
}

.faq-header {
    padding: var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--text-xl);
    font-weight: 500;
    transition: color 0.3s;
}

.faq-header:hover {
    color: var(--primary);
}

.faq-header i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item-modern.active .faq-header i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item-modern.active .faq-body {
    max-height: 200px;
    /* arbitrary limit for animation */
    padding-bottom: var(--space-6);
}

.faq-body p {
    color: var(--text-muted);
    font-size: var(--text-base);
}

/* --- Footer CTA Modern --- */
.footer-cta-modern {
    padding: 120px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.cta-title-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    letter-spacing: -2px;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
}

/* Light/Grey Theme Variant */
.footer-cta-modern.theme-grey {
    background-color: var(--bg-gray);
    color: var(--text-dark);
}

.footer-cta-modern.theme-grey .cta-title-lg {
    color: var(--text-dark);
}

.footer-cta-modern.theme-grey .cta-subtitle {
    color: var(--text-muted);
}

/* --- Logo Image Styles --- */
.logo img {
    height: 32px;
    width: auto;
    display: block;
}

/* Ensure links don't mess up image display */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* --- Modern Footer Redesign (Dark) --- */

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-col h3 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #a1a1aa;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #71717a;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ========================================
   CASE STUDY STYLES (Centralized)
   ======================================== */

/* Theme Modifiers */

.meta-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.meta-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Subtle pattern overlay */

/* ========================================
   GLOBAL COMPONENTS (Standardized)
   ======================================== */

/* Standard Card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* Icon Box */
.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: var(--space-4);
    transition: var(--transition-base);
}

.icon-box.icon-filled {
    background: var(--primary);
    color: white;
    border-radius: 50%;
    border: none;
    width: 64px;
    height: 64px;
}

.icon-box.icon-filled i {
    width: 32px;
    height: 32px;
}

.card:hover .icon-box {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Badge */
.badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

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

/* Form grid and inputs removed */

/* ========================================
   NAVIGATION & MOBILE MENU FIXES
   ======================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1024px) {
    .nav-links.active {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 2000;
        padding: 0 !important;
        overflow: hidden;
        /* Critical for sliding effect */
    }

    .nav-panes-container {
        display: flex;
        width: 200%;
        /* Two screens wide */
        height: 100%;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: stretch;
    }

    .nav-links.submenu-active .nav-panes-container {
        transform: translateX(-50%);
    }

    .nav-pane {
        width: 50% !important;
        height: 100%;
        padding: 80px 30px 40px !important;
        overflow-y: auto;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-pane.main-pane {
        background: white;
    }

    .menu-close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        background: none;
        border: none;
        color: var(--text-dark);
        cursor: pointer;
        z-index: 2100;
        /* Higher than panes */
    }

    .nav-pane a {
        width: 100%;
        text-align: left !important;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 17px;
    }

    .nav-pane a:last-child {
        border-bottom: none;
    }

    /* Hide standard dropdown in mobile */

    /* Animation Refinements */
    .nav-pane.main-pane>* {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .nav-links.active .nav-pane.main-pane>* {
        opacity: 1;
        transform: translateY(0);
    }

    /* Transition delays for list items */
    .nav-pane.main-pane a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-pane.main-pane a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-pane.main-pane div:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-pane.main-pane a:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-pane.main-pane a:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-pane.main-pane a:nth-child(6) {
        transition-delay: 0.35s;
    }

    /* When sub-menu is active, trigger its animations */
}


.menu-close-btn {
    display: none;
}

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

/* Contact page heading - increase line height */

/* Contact page heading spacing */

/* Contact form row layout */

/* Google Map Styles */

/* Increase spacing between contact items */

/* Ensure gradient-text works on about page */

/* Bento section header styles */

/* Careers note style */

/* Project page styles */

/* Projects page styles */

/* Text block centered */

/* ========================================
   JOB APPLICATION SECTION (TWO-COLUMN)
   ======================================== */

.job-application-section {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Left Column: Job Descriptions */

/* Right Column: Application Form (Sticky) */

.apply-header {
    margin-bottom: 28px;
}

.apply-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.apply-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 74, 31, 0.1);
}

/* Responsive */

/* ========================================
   APPLY PAGE STYLES
   ======================================== */

.apply-container {
    max-width: 1200px;
    /* Increased width for 2 columns */
    margin: 120px auto 80px;
    padding: 0 20px;
}

/* Left Column: Job Description */

/* Right Column: Application Form */
.apply-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
    /* Sticky scroll effect */
}

/* Form Styles */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: white;
}

.file-upload-wrapper i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-name {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 900px) {

    .apply-card {
        padding: 24px;
        position: static;
    }
}

/* Simplified careers grid */

/* ========================================
   MODERN CAREERS GRID (Redesign)
   ======================================== */

.job-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

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

.job-card-modern {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    /* Ensure link styles don't mess up card */
    overflow: hidden;
}

/*.job-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}*/

.job-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* border-color: var(--primary); */
}

.job-card-top {
    margin-bottom: 30px;
}

.dept-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    background: var(--bg-gray);
    color: var(--text-dark);
}

/* Department Colors */
.dept-badge.engineering {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.dept-badge.design {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
}

.dept-badge.marketing {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.job-title-large {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.job-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    margin-top: auto;
    /* Pushes to bottom if flex column */
}

.job-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.meta-item i {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

/*
.job-card-modern:hover .apply-arrow {
    background: var(--primary);
    transform: rotate(-45deg);
}

.job-card-modern:hover .apply-arrow i {
    color: white;
}
*/

/* ========================================
   APPLY PAGE REDESIGN (2-Column)
   ======================================== */

.apply-container {
    margin: 120px auto 80px;
    padding: 0 20px;
}

.apply-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .apply-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.job-details-column {
    padding-right: 20px;
}

.job-detail-block {
    display: none;
    /* Hidden by default, toggled by JS */
    animation: fadeIn 0.5s ease;
}

.job-detail-block.active {
    display: block;
}

.jd-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.jd-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.jd-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.jd-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 16px;
    color: var(--text-dark);
}

.jd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.jd-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.apply-form-column {
    position: sticky;
    top: 100px;
}

/* Adjust card for column usage */
.apply-form-column .apply-card {
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Utility Classes for Refactoring */
.container-xl {
    max-width: var(--container-width);
}

.text-left {
    text-align: left;
}

.mb-sm {
    margin-bottom: 8px;
}

.mb-md {
    margin-bottom: 24px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.p-md {
    padding: 20px;
}

.text-sm {
    font-size: 0.95rem;
}

.text-xs {
    font-size: 0.9rem;
}

.icon-lg {
    font-size: 1.5rem;
}

/* ========================================
   PROJECT FILTERS
   ======================================== */

/* ========================================
   CASE STUDY DETAILS
   ======================================== */

/* ========================================
   PROJECT NAVIGATION
   ======================================== */
.project-navigation {
    padding: var(--space-10) 0;
    background-color: white;
    border-top: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link.next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-arrow {
    transition: transform var(--transition-base);
}

.nav-link:hover .nav-arrow-left {
    transform: translateX(-4px);
}

.nav-link:hover .nav-arrow-right {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .project-navigation .nav-container {
        flex-direction: column;
        gap: var(--space-6);
        align-items: stretch;
    }

    .nav-link.next {
        align-items: flex-start;
        text-align: left;
    }

    .nav-link.next .nav-title {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
}

/* ========================================
   PARTNER PROGRAM PAGE STYLES
   ======================================== */

/* Background Pattern for Hero */

/* Partner Cards (Consulting Style) */

/* Partner List (Checkmarks) */

/* Process Steps (1-4) */

/* Connecting Line */


/* Commission Table */

/* Why List */

/* Contact Form Specifics */
/* Form validation and status removed */

.full-width {
    width: 100%;
}



/* Responsive Adjustments */

/* ========================================
   SUCCESS MODAL STYLES
   ======================================== */

/* Success modal removed */

/* Service Card Links */

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

.service-detail-hero {
    position: relative;
    padding: 120px 0 var(--space-24);
    background-color: var(--bg-white);
    text-align: center;
    overflow: hidden;
    color: var(--text-dark);
}

.service-detail-hero .hero-title-large {
    color: var(--text-dark);
    font-size: clamp(var(--text-4xl), 8vw, var(--text-8xl));
    letter-spacing: -1px;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.service-detail-hero .hero-subtext {
    color: var(--text-muted);
    font-size: var(--text-lg);
    line-height: 1.8;
    font-weight: 400;
}

.service-detail-hero .gradient-text {
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Detail Stats */
.service-detail-hero .about-stats-grid {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
}

.service-detail-hero .stat-value {
    color: var(--text-dark);
    font-size: var(--text-4xl);
    font-weight: 700;
    font-family: var(--font-heading);
}

.service-detail-hero .stat-desc {
    color: var(--text-muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-grey {
    background-color: var(--bg-gray);
}

/* Service Overview Layout */
.service-overview {
    padding: var(--space-20) 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
    align-items: center;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.overview-text .section-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    letter-spacing: -1px;
    margin-bottom: var(--space-2);
}

.overview-text p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-muted);
}

.overview-visual {
    position: relative;
}

.visual-card {
    background: white;
    padding: var(--space-2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.visual-card .img-responsive {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Custom Checklist */
.check-list {
    margin-top: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--text-dark);
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Capabilities Grid */
.capabilities-grid-section {
    padding: var(--space-20) 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .service-detail-hero {
        padding: 100px 0 var(--space-16);
    }
}

/* ========================================
   STICKY SCROLL PROCESS SECTION (For Service Subpages)
   ======================================== */

/* Stacking logic & Vibrant Themes */

/* ========================================
   KISSFLOW-INSPIRED FOOTER (Light)
   ======================================== */

.footer-kissflow {
    background-color: var(--bg-white);
    padding: var(--space-20) 0 var(--space-10);
    color: #1D2B36;
    border-top: 1px solid var(--border-light);
    font-family: var(--font-primary);
}

.footer-kissflow .footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-kissflow .footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    margin-bottom: var(--space-16);
}

@media (min-width: 1024px) {
    .footer-kissflow .footer-top {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-kissflow .footer-col h3 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: #1D2B36;
    margin-bottom: var(--space-6);
    text-transform: none;
}

.footer-kissflow .footer-col a {
    display: block;
    color: #1D2B36;
    margin-bottom: var(--space-3);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-base), transform var(--transition-fast);
}

.footer-kissflow .footer-col a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-kissflow .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 13px;
}

@media (min-width: 768px) {
    .footer-kissflow .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ========================================
   COLORFUL REDESIGN OVERRIDES
   ======================================== */

.badge-dot {
    background: var(--colorful-gradient) !important;
}


/* ========================================
   SUPER COLORFUL TRANSFORMATION
   ======================================== */

/* 1. Global Section Background Glows */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.08;
    pointer-events: none;
}

/* 2. Multi-color Service Cards */

/* 3. Section Title Gradient Upgrades */
.section-title {
    background: linear-gradient(135deg, var(--text-dark) 60%, var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-header.center .section-title {
    margin-left: auto;
    margin-right: auto;
}

/* 4. Portfolio Multi-color */

/* 5. Custom Colorful Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--vibrant-orange), var(--vibrant-purple), var(--vibrant-blue));
    border-radius: 5px;
}


/* 7. Colorful Infographics / Image Enhancements */


/* --- Think Design Specific Components (Adapted for Arcrux) --- */

/* Section Header Style */

/* Split Content Section */

/* Process Grid */

/* Pagination */

/* Browser Mockup Arcrux Version */

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ======================================== */
.legal-page-section {
    padding-top: 120px;
    overflow: visible;
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
    padding: var(--space-10) 0 var(--space-20);
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: var(--space-4);
}

.legal-sidebar-title {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-6);
    display: block;
}

.legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    border-left: 2px solid var(--border-light);
    padding-left: var(--space-4);
}

.legal-nav li {
    margin: 0;
    padding: 0;
}

.legal-nav a {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all var(--transition-fast);
    display: block;
    position: relative;
    padding: 4px 0;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--primary);
}

.legal-nav a.active::before {
    content: '';
    position: absolute;
    left: calc((var(--space-4) * -1) - 2px);
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary);
}

.legal-content section {
    scroll-margin-top: 140px;
}

.legal-content .tldr-box {
    background-color: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-bottom: var(--space-12);
    border-left: 4px solid var(--primary);
}

.tldr-box h3 {
    margin-top: 0;
    margin-bottom: var(--space-3);
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.legal-content h2 {
    font-size: var(--text-3xl);
    margin-top: var(--space-12);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

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

.legal-content h3 {
    font-size: var(--text-xl);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.legal-content p,
.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

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

.legal-content ul {
    margin-left: var(--space-6);
    margin-bottom: var(--space-6);
    list-style-type: disc;
}

@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .legal-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: var(--space-8);
    }

    .legal-nav {
        border-left: none;
        padding-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .legal-nav a.active::before {
        display: none;
    }

    .legal-nav a {
        background: var(--bg-gray);
        padding: 8px 16px;
        border-radius: var(--radius-full);
        font-size: var(--text-xs);
    }

    .legal-nav a.active {
        background: var(--primary);
        color: white;
    }
}

/* ========================================
   REACH-OUT REDESIGN MODULE (Contact & Partner)
   ======================================== */

/* Glass Cards & Containers */

/* Contact Bento Grid */

/* Info Cards Aesthetic */

/* Premium Tables (Commission Model) */

/* ========================================
   REACH-OUT UTILITIES (Contact & Partner)
   ======================================== */

/* Container alias used on redesigned pages */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section padding tiers */

/* Center alignment utility */
.center {
    text-align: center;
}

/* Margin helpers */

/* Outfit font utility */

/* Section label (numbered, uppercase) for partner page */

/* Contact card link style */

/* Hero header centering for Contact & Partner pages */

/* Headings & text — full constrained width, centered */

/* Badge — compact pill, never stretches */

/* Contact section background */

/* Section header spacing */
.section-header.center {
    text-align: center;
    margin-bottom: var(--space-12);
}

/* Responsive flow cards (partner page) */
@media (max-width: 991px) {
    .process-flow-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .process-flow-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Premium Form Input Styles */
/* Premium form styles removed */

/* ==========================================================================
   ARCRUX PREMIUM MONOCHROME DESIGN SYSTEM (.arcrux-design)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --ap-font: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --ap-black: #000000;
    --ap-charcoal: #1d1d1f;
    --ap-dark-grey: #424245;
    --ap-grey: #86868b;
    --ap-light-grey: #f5f5f7;
    --ap-border: rgba(0, 0, 0, 0.08);
    --ap-white: #ffffff;
    --ap-blue: #EF4023;
    --ap-orange: var(--ap-blue);
    --ap-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.arcrux-design {
    font-family: var(--ap-font);
    background-color: var(--ap-white);
    color: var(--ap-charcoal);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    --container-width: 1040px !important;

    /* Force legacy variables to monochrome + Manrope */
    --font-primary: var(--ap-font);
    --font-heading: var(--ap-font);
    --font-cabin: var(--ap-font);
    --font-sora: var(--ap-font);
    --font-outfit: var(--ap-font);

    --primary: var(--ap-black);
    --primary-text: var(--ap-charcoal);
    --primary-hover: var(--ap-dark-grey);
    --text-dark: var(--ap-charcoal);
    --text-muted: var(--ap-grey);
    --text-light: var(--ap-grey);
    --bg-white: var(--ap-white);
    --bg-light: var(--ap-light-grey);
    --bg-gray: var(--ap-light-grey);
    --border-light: var(--ap-border);
    --border-medium: rgba(0, 0, 0, 0.15);

    --theme-greenleaf: rgba(0, 0, 0, 0.02);
    --theme-sunrise: rgba(0, 0, 0, 0.02);
    --theme-finflow: rgba(0, 0, 0, 0.02);
    --theme-sweet: rgba(0, 0, 0, 0.02);

    --vibrant-orange: var(--ap-charcoal);
    --vibrant-green: var(--ap-dark-grey);
    --vibrant-blue: var(--ap-grey);
    --vibrant-purple: var(--ap-charcoal);
    --vibrant-red: var(--ap-dark-grey);
    --vibrant-cyan: var(--ap-grey);
    --vibrant-indigo: var(--ap-charcoal);

    --colorful-gradient: linear-gradient(90deg,
            var(--ap-charcoal),
            var(--ap-black),
            var(--ap-dark-grey),
            var(--ap-charcoal));
}

.arcrux-design h1,
.arcrux-design h2,
.arcrux-design h3 {
    font-family: var(--ap-font);
    font-weight: 700;
    color: var(--ap-black);
    letter-spacing: -0.025em;
}

/* --- Clean Navigation Bar (Skcript Style) --- */
.arcrux-design .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    /* Compact Skcript header */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--ap-border);
    z-index: 1000;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    min-width: 0;
    padding: 0 4%;
    display: flex;
    align-items: center;
}

.arcrux-design .navbar-scrolled {
    background: rgba(255, 255, 255, 0.85);
}

.arcrux-design .nav-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.arcrux-design .logo img {
    height: 20px;
    width: auto;
}

.arcrux-design .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.arcrux-design .nav-pane.main-pane {
    display: flex;
    align-items: center;
    gap: 24px;
}

.arcrux-design .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--ap-charcoal);
    opacity: 0.75;
    transition: var(--ap-transition);
}

.arcrux-design .nav-links a:hover {
    opacity: 1;
    color: var(--ap-black);
}

.arcrux-design .nav-links a::after {
    display: none;
}

/* --- Skcript Button Styles --- */
.arcrux-design .btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    text-transform: none;
    box-shadow: none;
}

.arcrux-design .btn-pill-primary {
    background-color: var(--ap-black);
    color: var(--ap-white);
}

.arcrux-design .btn-pill-primary:hover {
    background-color: var(--ap-dark-grey);
    transform: scale(0.98);
}

.arcrux-design .btn-pill-secondary {
    background-color: transparent;
    color: var(--ap-black);
    border: 1px solid var(--ap-border);
}

.arcrux-design .btn-pill-secondary:hover {
    border-color: var(--ap-orange);
    color: var(--ap-orange);
    background-color: rgba(255, 74, 31, 0.03);
    transform: scale(0.98);
}

/* --- Skcript Page Hero --- */
.arcrux-design .sk-hero {
    padding: 120px 4% 60px 4%;
    text-align: center;
    background-color: var(--ap-white);
}

.arcrux-design .sk-hero-title {
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: 1.1;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 24px auto;
    color: var(--ap-black);
    letter-spacing: -0.03em;
}

.arcrux-design .sk-hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.5;
    color: var(--ap-grey);
    max-width: 680px;
    margin: 0 auto 32px auto;
    font-weight: 400;
}

/* --- Parallax Scrolling Mission --- */
.arcrux-design .sk-mission {
    position: relative;
    height: 280vh;
    background-color: var(--ap-white);
    overflow: visible !important;
}

.arcrux-design .sk-mission-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
    height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    padding: 0 8%;
    box-sizing: border-box;
}

.arcrux-design .sk-mission-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.arcrux-design .sk-mission-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ap-orange);
    margin-bottom: 32px;
}

.arcrux-design .sk-mission-title {
    font-size: clamp(38px, 6.2vw, 82px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 1100px;
    margin: 0 0 40px 0;
    color: var(--ap-black);
}

.arcrux-design .sk-mission-word {
    display: inline-block;
    margin-right: 0.18em;
    transition: opacity 0.15s ease;
    opacity: 0.12;
    /* Driven by scroll script */
}

.arcrux-design .sk-mission-body {
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.6;
    color: var(--ap-grey);
    max-width: 800px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* --- Interactive Platform Tree Structure --- */

/* --- Research Section / Quiet Work --- */

/* --- Stories Grid --- */

/* --- Milestones Timeline --- */

/* --- Closing CTA --- */

/* Hide all custom photos / graphics, but allow mockups */
.arcrux-design img:not(.logo-img):not(.mockup-img):not(.footer-logo-icon):not(.work-card-img):not(.create-card-img) {
    display: none !important;
}

/* Section Header standard */

.arcrux-design .eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ap-orange);
    margin-bottom: 12px;
    display: block;
}

.arcrux-design .badge-dot {
    background-color: var(--ap-orange) !important;
}

.arcrux-design .gradient-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: var(--ap-black) !important;
    display: inline !important;
}

/* Standalone sections styling */
.arcrux-design section {
    background: var(--ap-white) !important;
    color: var(--ap-charcoal) !important;
}

/* Responsive Overrides */




/* ==========================================================================
   HOMEPAGE REDESIGN 2026 STYLES (PRODUCT PARTNER FOCUS)
   ========================================================================== */

/* ==========================================================================
   HOMEPAGE REDESIGN V2 (CLEAN GRAPHIC STRUCTURE & DISCLOSURES)
   ========================================================================== */

.arcrux-design .container-v2 {
    max-width: var(--container-width);
    margin: 0 auto;
}

.arcrux-design .title-large {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--ap-black);
    margin-bottom: 50px;
    max-width: 800px;
}

/* SECTION 3: Philosophy */
.arcrux-design .sk-philosophy-v2 {
    padding: 120px 4%;
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .philosophy-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.arcrux-design .philosophy-v2-card {
    padding: 40px 30px;
    border-left: 2px solid var(--ap-orange);
}

.arcrux-design .philosophy-v2-card .ph-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--ap-orange);
    margin-bottom: 20px;
}

.arcrux-design .philosophy-v2-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ap-black);
}

.arcrux-design .philosophy-v2-card p {
    font-size: 14px;
    color: var(--ap-grey);
    line-height: 1.6;
}

/* SECTION 4: What We Create (Updated to 3-column card grid layout) */
.arcrux-design .sk-create-v2 {
    padding: 120px 4%;
    border-top: 1px solid var(--ap-border);
    background-color: var(--ap-light-grey) !important;
}

.arcrux-design .create-header {
    margin-bottom: 50px;
}

.arcrux-design .create-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.arcrux-design .create-v2-card {
    background: var(--ap-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--ap-border);
    transition: var(--ap-transition);
    display: flex;
    flex-direction: column;
}

.arcrux-design .create-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.arcrux-design .create-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ap-light-grey);
}

/* Force override of general image display rules to let cards render their graphics */
.arcrux-design .sk-create-v2 img.create-card-img {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ap-transition);
}

.arcrux-design .create-v2-card:hover .create-card-img {
    transform: scale(1.04);
}

.arcrux-design .create-card-badge {
    position: absolute;
    top: -23px;
    left: 24px;
    width: 46px;
    height: 46px;
    background: #eef2f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--ap-white);
    z-index: 10;
}

.arcrux-design .create-card-badge i {
    width: 20px;
    height: 20px;
    color: var(--ap-orange);
    display: block;
}

.arcrux-design .create-card-content {
    position: relative;
    padding: 36px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.arcrux-design .create-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ap-black);
}

.arcrux-design .create-card-content p {
    font-size: 14px;
    color: var(--ap-grey);
    line-height: 1.6;
    margin: 0;
}

/* Responsive breakpoint for grid */
@media (max-width: 991px) {
    .arcrux-design .create-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arcrux-design .sk-create-v2 {
        padding: 80px 4%;
    }
}

/* SECTION 5: Approach */

/* SECTION 6: Industry Experience */
.arcrux-design .sk-industries-v2 {
    padding: 120px 4%;
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .industries-v2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--ap-border);
    margin-top: 50px;
}

.arcrux-design .industry-v2-cell {
    padding: 40px 20px;
    border-right: 1px solid var(--ap-border);
}

.arcrux-design .industry-v2-cell:last-child {
    border-right: none;
}

.arcrux-design .industry-v2-cell h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ap-black);
}

.arcrux-design .industry-v2-cell p {
    font-size: 13px;
    color: var(--ap-grey);
    line-height: 1.5;
}

/* SECTION 7: Selected Work (Hover/Click Disclosures) */
.arcrux-design .sk-portfolio-v2 {
    padding: 120px 4%;
    border-top: 1px solid var(--ap-border);
    background-color: var(--ap-light-grey) !important;
}

.arcrux-design .portfolio-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.arcrux-design .portfolio-v2-header .title-large {
    margin-bottom: 0;
}

.arcrux-design .portfolio-v2-header .subtitle-v2 {
    font-size: 16px;
    color: var(--ap-grey);
    margin-top: 15px;
    max-width: 600px;
}

.arcrux-design .portfolio-v2-list {
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .project-v2-row {
    border-bottom: 1px solid var(--ap-border);
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.2s ease;
    display: block;
    text-decoration: none;
}

.arcrux-design .project-v2-row:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.arcrux-design .project-v2-main {
    display: grid;
    grid-template-columns: 80px 250px 1fr 50px;
    align-items: center;
    padding: 30px 20px;
}

.arcrux-design .project-v2-main .p-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--ap-grey);
}

.arcrux-design .project-v2-main .p-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ap-black);
}

.arcrux-design .project-v2-main .p-desc {
    font-size: 14px;
    color: var(--ap-grey);
}

.arcrux-design .project-v2-main .p-arrow {
    display: flex;
    justify-content: flex-end;
    color: var(--ap-grey);
}

/* SECTION 8: Final CTA */
.arcrux-design .sk-closing-v2 {
    padding: 120px 4%;
    background-color: var(--ap-black) !important;
    color: var(--ap-white) !important;
    text-align: center;
}

.arcrux-design .closing-v2-box {
    max-width: 600px;
    margin: 0 auto;
}

.arcrux-design .sk-closing-v2 h2,
.arcrux-design .sk-closing-v2 .title-large {
    color: var(--ap-white) !important;
}

.arcrux-design .sk-closing-v2 p {
    color: var(--ap-grey) !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.arcrux-design .sk-closing-v2 .btn-pill-primary {
    background-color: var(--ap-white) !important;
    color: var(--ap-black) !important;
}

.arcrux-design .sk-closing-v2 .btn-pill-primary:hover {
    background-color: var(--ap-light-grey) !important;
    transform: scale(0.98);
}

@media (max-width: 991px) {
    .arcrux-design .philosophy-v2-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .arcrux-design .industries-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arcrux-design .industry-v2-cell:nth-child(even) {
        border-right: none;
    }

    .arcrux-design .project-v2-main {
        grid-template-columns: 50px 180px 1fr 30px;
        padding: 20px 10px;
    }
}

@media (max-width: 768px) {
    .arcrux-design .project-v2-main {
        grid-template-columns: 40px 1fr 30px;
    }

    .arcrux-design .project-v2-main .p-desc {
        display: none;
    }
}

@media (max-width: 576px) {
    .arcrux-design .industries-v2-grid {
        grid-template-columns: 1fr;
    }

    .arcrux-design .industry-v2-cell {
        border-right: none;
        border-bottom: 1px solid var(--ap-border);
        padding: 20px 0;
    }

    .arcrux-design .industry-v2-cell:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   INTERACTIVE APPROACH TABS WITH AUTO-CYCLING AND PROGRESS LINE
   ========================================================================== */

/* Skcript Footer Redesign Styles */
.arcrux-design .footer-kissflow {
    background-color: var(--ap-white) !important;
    color: var(--ap-charcoal) !important;
    border-top: 1px solid var(--ap-border) !important;
    padding: 60px 4% 30px 4% !important;
    font-family: var(--ap-font) !important;
}

.arcrux-design .footer-kissflow .footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.arcrux-design .footer-kissflow .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .arcrux-design .footer-kissflow .footer-top {
        grid-template-columns: 220px 1fr;
        gap: 48px;
    }
}

.arcrux-design .footer-kissflow .footer-links-group {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px 40px;
}

@media (min-width: 768px) {
    .arcrux-design .footer-kissflow .footer-links-group {
        grid-template-columns: 2.2fr 1.5fr 1fr 1fr;
        gap: 32px 64px;
    }
}

.arcrux-design .footer-kissflow .footer-col {
    display: flex;
    flex-direction: column;
    gap: 4px !important;
}

.arcrux-design .footer-kissflow .footer-col h3 {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--ap-charcoal) !important;
    text-transform: none !important;
    margin-bottom: 8px !important;
    letter-spacing: normal !important;
}

.arcrux-design .footer-kissflow .footer-col a {
    font-size: 12px !important;
    color: var(--ap-grey) !important;
    text-decoration: none;
    transition: color 0.15s ease;
    opacity: 1 !important;
}

.arcrux-design .footer-kissflow .footer-logo-icon {
    display: block !important;
    width: 36px !important;
    height: auto !important;
    margin-bottom: 14px !important;
    opacity: 1 !important;
}

.arcrux-design .footer-kissflow .footer-brand-col {
    display: flex;
    flex-direction: column;
    max-width: 220px;
}

.arcrux-design .footer-kissflow .footer-brand-desc {
    font-size: 12px !important;
    line-height: 1.7 !important;
    color: var(--ap-grey) !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-family: var(--ap-font) !important;
}

.arcrux-design .footer-kissflow .footer-col a:hover {
    color: var(--ap-charcoal) !important;
}

.arcrux-design .footer-kissflow .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--ap-border) !important;
}

.arcrux-design .footer-kissflow .footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 12px !important;
    color: var(--ap-grey) !important;
}

.arcrux-design .footer-kissflow .footer-bottom-left a {
    color: var(--ap-grey) !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

.arcrux-design .footer-kissflow .footer-bottom-left a:hover {
    color: var(--ap-charcoal) !important;
}

.arcrux-design .footer-kissflow .footer-bottom-right {
    font-size: 12px !important;
    color: var(--ap-grey) !important;
}

.arcrux-design .footer-kissflow .footer-bottom-separator {
    opacity: 0.4;
    display: inline;
}

.arcrux-design .footer-kissflow .logo-img {
    margin-right: 8px;
}

/* ==========================================================================
   ABOUT PAGE REDESIGN
   ========================================================================== */

.arcrux-design .sk-about-hero {
    padding: 120px 4% 120px 4%;
    background-color: var(--ap-white);
}

.arcrux-design .title-medium {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.2;
    font-weight: 800;
    color: var(--ap-black);
    margin-bottom: 20px;
    max-width: 600px;
}

.arcrux-design .sk-about-story,
.arcrux-design .sk-about-belief,
.arcrux-design .sk-about-areas {
    padding: 120px 4%;
    background-color: var(--ap-white);
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .about-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.arcrux-design .about-grid-left {
    max-width: 500px;
}

.arcrux-design .about-grid-right {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ap-charcoal);
}

.arcrux-design .experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arcrux-design .highlight-card {
    border-bottom: 1px solid var(--ap-border);
    padding-bottom: 24px;
}

.arcrux-design .highlight-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.arcrux-design .highlight-num {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: var(--ap-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.arcrux-design .highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ap-black);
    margin-bottom: 4px;
}

.arcrux-design .highlight-desc {
    font-size: 14px;
    color: var(--ap-grey);
}

.arcrux-design .industry-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.arcrux-design .industry-item {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--ap-black);
    padding: 24px 0;
    border-bottom: 1px solid var(--ap-border);
}

.arcrux-design .industry-item:last-child {
    border-bottom: none;
}

@media (max-width: 991px) {
    .arcrux-design .about-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arcrux-design .sk-about-hero {
        padding: 100px 4% 80px 4%;
    }

    .arcrux-design .sk-about-story,
    .arcrux-design .sk-about-belief,
    .arcrux-design .sk-about-areas {
        padding: 80px 4%;
    }
}

/* ==========================================================================
   CAPABILITIES PAGE REDESIGN
   ========================================================================== */

.arcrux-design .sk-capabilities-hero {
    padding: 120px 4% 120px 4%;
    background-color: var(--ap-white);
}

.arcrux-design .sk-capabilities-hero .mockup-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ap-border);
    margin-top: 48px;
}

@media (max-width: 768px) {
    .arcrux-design .sk-capabilities-hero .mockup-img {
        height: 350px;
        margin-top: 32px;
    }
}


.arcrux-design .sk-capability-section {
    padding: 120px 4%;
    background-color: var(--ap-white);
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .capabilities-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.arcrux-design .capability-tags-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.arcrux-design .capability-tag-item {
    font-size: 16px;
    font-weight: 700;
    color: var(--ap-black);
    padding: 16px 20px;
    border: 1px solid var(--ap-border);
    border-radius: 6px;
}

.arcrux-design .delivery-progression {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.arcrux-design .delivery-step {
    border-top: 2px solid var(--ap-black);
    padding-top: 24px;
}

.arcrux-design .delivery-step-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--ap-black);
    margin-bottom: 8px;
}

.arcrux-design .delivery-step-desc {
    font-size: 14px;
    color: var(--ap-grey);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .arcrux-design .capabilities-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arcrux-design .sk-capabilities-hero {
        padding: 100px 4% 80px 4%;
    }


    .arcrux-design .sk-capability-section {
        padding: 80px 4%;
    }

    .arcrux-design .delivery-progression {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   INTERACTIVE CAPABILITIES STYLES
   ========================================================================== */

.arcrux-design .sk-capabilities-interactive {
    padding: 120px 4%;
    background-color: var(--ap-white);
}

.arcrux-design .capability-tab {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--ap-border);
    cursor: pointer;
    transition: var(--ap-transition);
    position: relative;
    overflow: hidden;
}

.arcrux-design .capability-tab:hover {
    border-color: var(--ap-black);
}

.arcrux-design .capability-tab.active {
    background-color: var(--ap-white);
    border-color: var(--ap-black);
}

.arcrux-design .capability-tab.active .cap-tab-progress {
    height: 100%;
    width: 0%;
    background-color: var(--ap-black);
}

.arcrux-design .cap-detail-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
}

.arcrux-design .cap-detail-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.arcrux-design .sk-capabilities-products,
.arcrux-design .sk-capabilities-trust {
    padding: 120px 4%;
    background-color: var(--ap-white);
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.arcrux-design .trust-metric-card {
    border-top: 1px solid var(--ap-border);
    padding-top: 24px;
}

.arcrux-design .trust-metric-value {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: var(--ap-orange);
    line-height: 1;
    margin-bottom: 12px;
}

.arcrux-design .trust-metric-label {
    font-size: 14px;
    color: var(--ap-grey);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .arcrux-design .trust-metrics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.arcrux-design .works-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.arcrux-design .work-v2-card {
    border: 1px solid var(--ap-border);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background-color: var(--ap-white);
    transition: var(--ap-transition);
}

.arcrux-design .work-v2-card:hover {
    border-color: var(--ap-black);
}

.arcrux-design .work-card-category {
    font-size: 13px;
    font-weight: 700;
    color: var(--ap-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arcrux-design .work-card-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ap-black);
    margin: 12px 0 16px 0;
}

.arcrux-design .work-card-description {
    font-size: 16px;
    color: var(--ap-dark-grey);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.arcrux-design .work-card-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--ap-border);
    padding-top: 24px;
}

.arcrux-design .work-detail-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
}

.arcrux-design .work-detail-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ap-grey);
    text-transform: uppercase;
}

.arcrux-design .work-detail-value {
    font-size: 14px;
    color: var(--ap-black);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .arcrux-design .works-v2-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* SECTION 5: HOW WE WORK (Modern 4-Step Card Grid) */
.arcrux-design .sk-how-we-work {
    padding: 120px 4%;
    border-top: 1px solid var(--ap-border);
    position: relative;
    background-color: var(--ap-white);
}

/* Connecting line running behind the step badges on desktop */

/* Hover effects */

/* Responsive constraints */

/* ==========================================================================
   SERVICE DETAILED PAGES STYLING CONSISTENCY (.arcrux-design OVERRIDES)
   ========================================================================== */

.arcrux-design {
    --bg-card: var(--ap-white);
}

/* 1. Make hero title gradient text match the monochrome layout */
.arcrux-design .service-detail-hero .gradient-text {
    background: var(--ap-black) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* 2. Process Flow Section monochrome adjustments */
.arcrux-design .process-flow-section {
    background: var(--ap-light-grey) !important;
    border-top: 1px solid var(--ap-border);
    border-bottom: 1px solid var(--ap-border);
}

.arcrux-design .process-flow-header h2 {
    color: var(--ap-black) !important;
}

.arcrux-design .process-flow-header p {
    color: var(--ap-grey) !important;
}

/* 3. Convert colorful flow cards into clean monochrome/glass style */
.arcrux-design .flow-card {
    background: var(--ap-white) !important;
    border: 1px solid var(--ap-border) !important;
    box-shadow: var(--shadow-sm) !important;
    color: var(--ap-charcoal) !important;
}

.arcrux-design .flow-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--ap-grey) !important;
}

.arcrux-design .flow-card-1,
.arcrux-design .flow-card-2,
.arcrux-design .flow-card-3,
.arcrux-design .flow-card-4 {
    background: var(--ap-white) !important;
}

.arcrux-design .flow-step-num {
    color: var(--ap-grey) !important;
}

.arcrux-design .flow-icon-wrap {
    background: var(--ap-light-grey) !important;
    color: var(--ap-black) !important;
}

.arcrux-design .flow-card-body h3 {
    color: var(--ap-black) !important;
}

.arcrux-design .flow-card-body p {
    color: var(--ap-grey) !important;
}

.arcrux-design .flow-connector {
    color: var(--ap-grey) !important;
}

.arcrux-design .flow-card-thumb::after {
    background: linear-gradient(to bottom, transparent 40%, var(--ap-white) 100%) !important;
}

/* 4. Bento grid and checklist compliance */
.arcrux-design .bento-card {
    background: var(--ap-white) !important;
    border: 1px solid var(--ap-border) !important;
    box-shadow: var(--shadow-sm) !important;
}

.arcrux-design .bento-card:hover {
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--ap-grey) !important;
}

.arcrux-design .check-list i {
    color: var(--ap-black) !important;
}

/* Navigation Active Page Highlighter Overrides */
.nav-links a.active {
    color: #EF4023 !important;
    opacity: 1 !important;
}

.nav-links a.active::after {
    display: block !important;
    width: 100% !important;
    background: #EF4023 !important;
}

/* Breadcrumbs */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-8, 32px);
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--ap-grey, #86868b);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary, #EF4023);
}

.breadcrumb-nav .breadcrumb-separator {
    width: 14px;
    height: 14px;
    margin: 0 8px;
    color: var(--ap-grey, #86868b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-nav span {
    color: var(--text-dark, #1d1d1f);
}

/* Featured Work Editorial Layout */
.arcrux-design .works-v2-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.arcrux-design .work-v2-card {
    border: none;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    transition: none;
}

.arcrux-design .work-v2-card:hover {
    border-color: transparent;
}

.arcrux-design .work-card-image-wrap {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #f5f5f7;
    margin-bottom: 32px;
    display: block;
}

.arcrux-design .work-v2-card .work-card-image-wrap img.work-card-img {
    width: 100%;
    height: 100%;
    display: block !important;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arcrux-design .work-card-image-wrap:hover .work-card-img {
    transform: scale(1.02);
}

.arcrux-design .work-card-info-row {
    display: flex;
    gap: 40px;
}

.arcrux-design .work-card-name-col {
    flex: 0 0 25%;
}

.arcrux-design .work-card-project-name {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    color: var(--ap-grey);
    letter-spacing: -0.01em;
}

.arcrux-design .work-card-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.arcrux-design .work-card-catchy-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ap-black);
    margin: 0 0 16px 0;
}

.arcrux-design .work-card-short-desc {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
    color: var(--ap-grey);
    margin: 0 0 24px 0;
    max-width: 760px;
}

.arcrux-design .work-card-link-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary, #EF4023);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease;
    align-self: flex-start;
}

.arcrux-design .work-card-link-btn i {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.arcrux-design .work-card-link-btn:hover {
    color: var(--primary-hover, #D33418);
}

.arcrux-design .work-card-link-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .arcrux-design .work-card-image-wrap {
        height: 300px;
    }

    .arcrux-design .work-card-info-row {
        flex-direction: column;
        gap: 12px;
    }

    .arcrux-design .work-card-name-col {
        flex: none;
    }

    .arcrux-design .work-card-catchy-title {
        margin-bottom: 12px;
    }
}

.arcrux-design .sk-capabilities-hero .breadcrumb-nav {
    justify-content: flex-start;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .careers-hero {
        padding: 100px 0 80px;
    }

    .legal-page-section {
        padding-top: 100px;
    }
}

.arcrux-design .works-hero {
    padding-bottom: 20px;
}

.arcrux-design .works-hero+.sk-capabilities-products {
    padding-top: 20px;
    border-top: none;
}

/* Redesigned Services subpages styles */
.arcrux-design .service-detail-hero.hero-split {
    text-align: left;
    padding: 140px 0 80px 0 !important;
}

.arcrux-design .service-detail-hero.hero-split .hero-split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .arcrux-design .service-detail-hero.hero-split .hero-split-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
    }
}

.arcrux-design .service-detail-hero.hero-split .hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.arcrux-design .service-detail-hero.hero-split .hero-title-large {
    font-size: clamp(32px, 5vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--ap-black);
}

.arcrux-design .service-detail-hero.hero-split .hero-subtext {
    font-size: 16px !important;
    line-height: 1.65;
    color: var(--ap-grey);
    margin-bottom: 30px;
    max-width: 600px;
}

.arcrux-design .service-detail-hero.hero-split .hero-cta {
    margin-bottom: 40px;
}

.arcrux-design .service-detail-hero.hero-split .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 0;
    padding-top: 30px;
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .service-detail-hero.hero-split .about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arcrux-design .service-detail-hero.hero-split .stat-value {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--ap-black);
}

.arcrux-design .service-detail-hero.hero-split .stat-desc {
    font-size: 11px !important;
    color: var(--ap-grey);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.arcrux-design .service-detail-hero.hero-split .hero-right-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ap-border);
}

.arcrux-design .service-overview {
    padding: 80px 0 !important;
    border-top: 1px solid var(--ap-border);
}

.arcrux-design .service-overview .grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .arcrux-design .service-overview .grid-2-col {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.arcrux-design .service-overview .overview-text h2 {
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 800 !important;
    color: var(--ap-black);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.arcrux-design .service-overview .overview-text p {
    font-size: 15px !important;
    line-height: 1.65;
    color: var(--ap-grey);
}

.arcrux-design .service-overview .overview-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ap-border);
}

.arcrux-design .capabilities-grid-section {
    padding: 80px 0 !important;
}

.arcrux-design .capabilities-grid-section .section-title {
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 700 !important;
    color: var(--ap-black);
    letter-spacing: -0.01em;
}

.arcrux-design .capabilities-grid-section p {
    font-size: 15px !important;
    color: var(--ap-grey);
}

.arcrux-design .bento-card {
    background: var(--ap-white) !important;
    border: 1px solid var(--ap-border) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
}

.arcrux-design .bento-card h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--ap-black) !important;
    margin: 16px 0 8px 0 !important;
}

.arcrux-design .bento-card p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: var(--ap-grey) !important;
    margin: 0 !important;
}

.arcrux-design .process-flow-section {
    padding: 80px 0 !important;
}

.arcrux-design .process-flow-header h2 {
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.arcrux-design .process-flow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .arcrux-design .process-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .arcrux-design .process-flow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.arcrux-design .flow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px !important;
    overflow: hidden;
}

.arcrux-design .flow-card-thumb {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.arcrux-design .flow-connector {
    display: none !important;
}

/* Process and Capabilities horizontal cards layout */
.arcrux-design .process-cards-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .arcrux-design .process-cards-horizontal.grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .arcrux-design .process-cards-horizontal.grid-4-col {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 576px) {
    .arcrux-design .process-cards-horizontal {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px 20px;
    }
}

@media (min-width: 1024px) {
    .arcrux-design .process-cards-horizontal {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
}