/* UX Consultancy Design System */
/* Extracted from Smart Workflow Automation with multi-page navigation support */

:root {
    --primary: #f26522;
    --primary-dark: #d95a1b;
    --primary-light: #ff8a4c;
    --primary-text: #c94d14; /* Darker orange for text - 4.5:1 on white - WCAG AA compliant */
    --secondary: #1a1a1a;
    --accent: #f26522;
    --text: #2d2d2d;
    --text-light: #595959; /* 7.0:1 on white */
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #f0f2f5;
    --bg-accent: #fff8f5; /* Subtle warm tint */
    --bg-accent-alt: #fef5f0; /* Slightly warmer */
    --success: #10b981;
    --gradient: linear-gradient(135deg, #f26522 0%, #ff8a4c 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f2f5 100%);
    --gradient-warm: linear-gradient(180deg, #fff8f5 0%, #ffffff 50%, #f8f9fa 100%);
    --gradient-section: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    overflow-x: hidden;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: translate(10px, -15px) rotate(90deg);
        opacity: 0.05;
    }
    50% {
        transform: translate(-5px, -25px) rotate(180deg);
        opacity: 0.03;
    }
    75% {
        transform: translate(-15px, -10px) rotate(270deg);
        opacity: 0.05;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.06; }
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 2000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.5);
}

/* Animated Background - Bolder gradient with orange accents */
.animated-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #faf8f6 0%, #ffffff 50%, #f8f6f4 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(242, 101, 34, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 138, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(242, 101, 34, 0.06) 0%, transparent 40%);
    background-size: 100% 100%;
    animation: gradientShift 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.animated-bg > .container {
    position: relative;
    z-index: 1;
}

/* Floating geometric shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border: 2px solid rgba(242, 101, 34, 0.2);
    opacity: 0.6;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: floatShape 20s ease-in-out infinite;
}

.bg-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: floatShape 25s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.bg-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: floatShape 18s ease-in-out infinite;
    animation-delay: -10s;
}

.bg-shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation: pulse 8s ease-in-out infinite;
}

/* Scroll Reveal Base Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.5s; }
.stagger-7 { transition-delay: 0.6s; }
.stagger-8 { transition-delay: 0.7s; }
.stagger-9 { transition-delay: 0.8s; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    color: var(--primary-text);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

body.transitions-ready .nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta):not(.dropdown-link)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
}

body.transitions-ready .nav-links a:not(.nav-cta):not(.dropdown-link)::after {
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.nav-cta):not(.dropdown-link):hover::after,
.nav-links a:not(.nav-cta):not(.dropdown-link).active::after {
    width: 100%;
}

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

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

.nav-links .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links .has-dropdown > a .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-links .has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    margin-top: 8px;
    list-style: none;
}

.nav-links .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-links .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-links .dropdown-menu li {
    border-bottom: none;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-links .dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--primary-text);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.3);
}

.mobile-menu {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
    padding: 0;
}

.mobile-menu:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-menu span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu span:nth-child(1) { top: 14px; }
.mobile-menu span:nth-child(2) { top: 21px; }
.mobile-menu span:nth-child(3) { top: 28px; }

.mobile-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section - Stripe-inspired with bolder gradient */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(
        135deg,
        #fff0e8 0%,
        #fff8f5 20%,
        #ffffff 40%,
        #fff8f2 60%,
        #ffefe5 80%,
        #ffe8dc 100%
    );
    background-size: 300% 300%;
    animation: heroGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.15) 0%, rgba(255, 138, 76, 0.08) 40%, transparent 70%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 138, 76, 0.12) 0%, rgba(242, 101, 34, 0.05) 40%, transparent 70%);
    pointer-events: none;
    animation: float 18s ease-in-out infinite reverse;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-content .hero-badge {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-content h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-content > p {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-visual {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 101, 34, 0.1);
    color: var(--primary-text);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(242, 101, 34, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(242, 101, 34, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: none;
    animation: float 6s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.hero-card:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-text);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Section Label */
.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-text);
    margin-bottom: 16px;
    padding-bottom: 8px;
    position: relative;
    text-align: center;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 2px;
    background: var(--primary);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-label.revealed::after {
    transform: translateX(-50%) scaleX(1);
}

/* Gradient Section Styles (replaces dark sections) */
.dark-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fef0ea 0%, #fce4d8 40%, #fce4d8 60%, #fef0ea 100%);
    color: var(--text);
}

.dark-section.animated-bg {
    background: linear-gradient(180deg, #fef0ea 0%, #fce4d8 40%, #fce4d8 60%, #fef0ea 100%);
}

.dark-section .container {
    text-align: center;
}

.dark-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary);
}

.dark-section > .container > p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Section labels use accessible orange */
.dark-section .section-label,
.cta .section-label,
.animated-bg .section-label {
    color: var(--primary-text);
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: var(--bg-alt);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.stats-section > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: white;
    padding: 36px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(242, 101, 34, 0.1);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-text);
    margin-bottom: 8px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.stat-card:hover .number {
    transform: scale(1.05);
}

.stat-card .label {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats-callout {
    margin-top: 48px;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stats-callout p {
    font-size: 1.125rem;
    color: var(--text);
    font-weight: 500;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

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

/* Two column grid for content sections */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Service card links - remove text-decoration */
a.service-card {
    text-decoration: none;
}

/* Service Cards / Feature Cards - Stripe-inspired soft styling */
.service-card,
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.service-card:hover,
.feature-card:hover {
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(242, 101, 34, 0.1);
    transform: translateY(-5px);
}

.service-card .icon,
.feature-card .icon {
    width: 56px;
    height: 56px;
    background: rgba(242, 101, 34, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .icon,
.feature-card:hover .icon {
    background: var(--primary);
    transform: scale(1.08);
    color: white;
}

.service-card h3,
.feature-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p,
.feature-card p {
    color: var(--text-light);
}

/* Pain Point Cards - Stripe-inspired soft styling */
.pain-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-align: center;
}

.pain-card:hover {
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(242, 101, 34, 0.1);
    transform: translateY(-5px);
}

.pain-card .icon {
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-text);
}

.pain-card h3 {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pain-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Case Study Cards - Stripe-inspired */
.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.12);
}

.case-study-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.case-study-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.case-study-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.case-study-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover .case-study-image {
    transform: scale(1.02);
}

.case-study-results {
    display: grid;
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.result-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.result-text {
    font-weight: 600;
    color: var(--secondary);
}

/* Expanded Case Study - Split Layout */
.case-study-expanded {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
}

.case-study-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.case-study-split-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15);
}

.case-study-split-content .case-study-label {
    margin-bottom: 24px;
}

.case-study-challenge,
.case-study-solution {
    margin-bottom: 28px;
}

.case-study-challenge h3,
.case-study-solution h3,
.case-study-outcomes h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study-challenge h3::before,
.case-study-solution h3::before,
.case-study-outcomes h3::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.case-study-challenge p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.solution-items {
    display: grid;
    gap: 12px;
}

.solution-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.solution-item:hover {
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.solution-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(242, 101, 34, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-text);
}

.solution-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.solution-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.case-study-outcomes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-outcomes li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.case-study-outcomes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 256 256' fill='white'%3E%3Cpath d='M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

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

    .case-study-split-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .solution-item {
        flex-direction: column;
    }
}

/* Testimonials */
.testimonials {
    display: grid;
    gap: 24px;
}

.testimonial {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.1);
}

.testimonial-company {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.testimonial-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.testimonial-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.team-member:hover .team-avatar {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-member .role {
    color: var(--primary-text);
    font-weight: 500;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff8f5 0%, #fef0ea 50%, #fff8f5 100%);
    color: var(--text);
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--secondary);
}

.cta h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta > .container > p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    border: 1px solid rgba(242, 101, 34, 0.2);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 50px -10px rgba(242, 101, 34, 0.12);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px -15px rgba(242, 101, 34, 0.18);
}

.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-card:hover .contact-avatar {
    transform: scale(1.1);
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-alt);
    border-radius: 50px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.contact-method:hover {
    background: var(--primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(242, 101, 34, 0.4);
}

.contact-method:active {
    transform: translateY(-1px);
}

.contact-method svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-method:hover svg {
    transform: scale(1.15);
}

.contact-method.primary {
    background: var(--primary);
    border-color: transparent;
    color: white;
}

.contact-method.primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 25px -5px rgba(242, 101, 34, 0.5);
}

/* Footer */
footer {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer p {
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(242, 101, 34, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-text);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}


/* Section Spacing - Generous whitespace like Stripe */
section {
    padding: 120px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

section > .container > p.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Specific */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.value-item h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Utility Classes ── */

/* Sub-page hero (services, about, case-studies, insights) */
.hero-subpage {
    padding: 140px 0 80px;
}

/* Service page hero (ai-adoption, innovation-discovery) */
.hero-service {
    padding: 160px 0 100px;
}

/* Centered hero layout */
.hero .hero-centered {
    display: block;
    text-align: center;
}

.hero-centered .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-service .hero-centered .hero-content {
    max-width: 900px;
}

.hero-centered .hero-content > p {
    margin: 0 auto 32px;
}

.hero-service .hero-centered .hero-content > p {
    margin: 0 auto 40px;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

/* Section background variant */
.section-alt {
    background: var(--bg-alt);
}

/* "View All" / CTA button wrapper at bottom of sections */
.section-cta-wrapper {
    text-align: center;
    margin-top: 48px;
}

/* Callout block (blockquotes, stat citations) */
.callout {
    background: linear-gradient(135deg, #fff8f5 0%, #fef0ea 100%);
    padding: 24px;
    border-left: 3px solid var(--primary);
    display: flex;
    align-items: center;
}

.callout p {
    font-size: 1rem;
    margin: 0;
    color: var(--text);
}

/* Stat source citation (small text below stat cards) */
.stat-source {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* Left-aligned section label variant */
.section-label-left {
    text-align: left;
}

/* Numbered approach steps (case-studies 4-phase) */
.approach-steps {
    display: grid;
    gap: 16px;
}

.approach-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-alt);
    border-left: 3px solid var(--primary);
}

.approach-step .step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.approach-step strong {
    color: var(--secondary);
}

.approach-step p {
    color: var(--text-light);
    margin: 4px 0 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* ── Mobile menu panel ── */
    .mobile-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        gap: 0;
        padding: 12px 24px 32px;
        background: white;
        border-top: 1px solid #e5e5e5;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    /* ── Mobile nav items ── */
    .nav-links li {
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 24px;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-links .nav-cta {
        text-align: center;
    }

    /* ── Mobile dropdown ── */
    .nav-links .has-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links .has-dropdown > a .dropdown-arrow {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .nav-links .has-dropdown.open > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-links .dropdown-menu {
        all: unset;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links .has-dropdown.open .dropdown-menu {
        max-height: 200px;
    }

    .nav-links .dropdown-menu li {
        border-bottom: none;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0 10px 20px;
        font-size: 0.9rem;
        color: var(--text);
        text-decoration: none;
    }

    .nav-links .dropdown-menu a::before {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 1.5px solid var(--text-light);
        border-bottom: 1.5px solid var(--text-light);
        transform: rotate(-45deg);
        flex-shrink: 0;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero h1 {
        font-size: 2.75rem;
        letter-spacing: -0.02em;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .card-grid,
    .card-grid.four-col,
    .card-grid.two-col,
    .two-col-grid {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    section {
        padding: 60px 0;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 16px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Enhanced Focus Indicators - Accessibility */
.nav-links a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 6px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}

.btn-primary:focus-visible {
    outline-color: var(--primary-dark);
}

.contact-method:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.service-card:focus-within,
.feature-card:focus-within,
.case-study-card:focus-within {
    box-shadow: 0 0 0 3px var(--primary);
}

.social-links a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.footer-links a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 180px;
}

.process-step .step-number {
    width: 64px;
    height: 64px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.15);
}

.process-step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.process-step .step-icon {
    width: 64px;
    height: 64px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.15);
    color: var(--primary);
}

.process-step:hover .step-icon {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
    color: white;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Animated Counter */
.stat-card .number,
.stat-number {
    font-variant-numeric: tabular-nums;
}

.stat-card .number.counting,
.stat-number.counting {
    opacity: 1;
}

@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .process-timeline::before {
        top: 32px;
        bottom: 32px;
        left: 51px;
        right: auto;
        width: 3px;
        height: calc(100% - 64px);
        transform: none;
    }

    .process-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        gap: 20px;
    }

    .process-step .step-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .step-content {
        flex: 1;
        align-items: flex-start;
        padding-top: 8px;
    }

    .process-step h3 {
        margin-top: 0;
    }
}

/* Reduced Motion - Accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-progress {
        transition: none;
    }
    .animated-bg::before {
        animation: none;
    }
    .bg-shape {
        animation: none;
        opacity: 0.02;
    }
    .hero-card {
        animation: none;
    }
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        transition: opacity 0.3s ease;
        transform: none !important;
    }
    .nav-links,
    nav ~ section,
    nav ~ footer {
        transition: none !important;
    }
}

/* =====================================================
   INSIGHTS & ARTICLES
   ===================================================== */

/* Insight Card - listing page and homepage */
.insight-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(242, 101, 34, 0.1);
}

.insight-card .category-badge {
    align-self: flex-start;
    margin-bottom: 16px;
}

.category-badge {
    display: inline-block;
    background: rgba(242, 101, 34, 0.1);
    color: var(--primary-text);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-card .insight-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.insight-card .insight-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.insight-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.insight-card:hover .read-more {
    gap: 12px;
}

.insight-card .read-more svg {
    transition: transform 0.3s ease;
}

.insight-card:hover .read-more svg {
    transform: translateX(4px);
}

/* Insights Filters */
.insights-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-pill {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    background: white;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.filter-pill:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

.insight-card.card-filtered-out,
.insight-card.card-hidden {
    display: none;
}

.show-more-btn.hidden {
    display: none;
}

/* Article Page Styles */
.article-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
}

.article-hero .container {
    max-width: 800px;
}

.article-hero .category-badge {
    margin-bottom: 20px;
}

.article-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-meta .date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta .reading-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Article Breadcrumb */
.breadcrumb {
    position: static;
    background: none;
    border-bottom: none;
    z-index: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.breadcrumb span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.article-content .container {
    max-width: 720px;
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin: 48px 0 20px;
    text-align: left;
}

.article-content h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin: 36px 0 16px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.article-content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    margin: 0;
}

.article-content strong {
    color: var(--secondary);
}

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

.article-content a:hover {
    color: var(--primary-dark);
}

/* Video Embed */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-alt);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Article Author Box */
.article-author {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 32px;
    background: var(--bg-alt);
    border-radius: 16px;
    margin-top: 48px;
}

.article-author .author-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 16px;
    overflow: hidden;
}

.article-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-author .author-info h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.article-author .author-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Article Navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.article-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-nav a:hover {
    color: var(--primary-text);
}

.article-nav .back-to-insights {
    background: var(--bg-alt);
    padding: 12px 24px;
    border-radius: 50px;
}

/* Responsive adjustments for articles */
@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2rem;
    }

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

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =====================================================
   SMART WORKFLOW PAGE COMPONENTS
   ===================================================== */

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f2f5 0%, #f8f9fa 50%, #ffffff 100%);
    color: var(--text);
}

.problem .container {
    text-align: center;
}

.problem h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary);
}

.problem > .container > p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: 16px;
    text-align: left;
}

.comparison-card.old {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-card.new {
    background: white;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(242, 101, 34, 0.15);
}

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-card.old h3 {
    color: var(--text-light);
}

.comparison-card.new h3 {
    color: var(--primary-text);
}

.comparison-card .keyword {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.comparison-card.old .keyword {
    color: var(--text-light);
}

.comparison-card.new .keyword {
    color: var(--primary-text);
}

.comparison-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--accent);
}

/* Framework Section */
.framework {
    padding: 100px 0;
}

.framework h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.framework > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.phase-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phase-card:hover {
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(242, 101, 34, 0.1);
    transform: translateY(-6px);
}

.phase-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phase-card:hover .phase-number {
    transform: scale(1.08);
    box-shadow: 0 8px 20px -5px rgba(242, 101, 34, 0.4);
}

.phase-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.phase-card .subtitle {
    color: var(--primary-text);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.phase-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.phase-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.phase-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 8px;
    list-style: none;
}

.phase-features li::before {
    content: '\2014';
    color: var(--primary);
    font-weight: 700;
}

/* Case Study Section Layout */
.case-study {
    padding: 100px 0;
    background: var(--bg-alt);
}

.case-study h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.case-study > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.why-us > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

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

.why-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(242, 101, 34, 0.1);
    transform: translateY(-6px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(242, 101, 34, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover .why-icon {
    background: var(--primary);
    transform: scale(1.08);
    color: white;
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-light);
}

/* CTA Feature Cards */
.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: left;
}

.cta-feature-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cta-feature-card h3 {
    color: var(--primary-text);
    font-size: 1rem;
    margin-bottom: 8px;
}

.cta-feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .phases {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-features {
        grid-template-columns: 1fr;
    }
}

/* ── AI Adoption Page ── */

.archetype-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.archetype-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.archetype-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 12px 12px 0 0;
}

.archetype-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.archetype-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.archetype-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.archetype-card .quote {
    font-style: italic;
    color: var(--primary-text);
    font-size: 0.9rem;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.archetype-label {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding: 0 12px;
}

.archetype-label span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.archetype-label span:last-child {
    color: var(--primary-text);
}

.model-visual {
    display: flex;
    gap: 0;
    max-width: 300px;
    margin: 0 auto 32px;
}

.model-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    color: white;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
}

.model-bar.people {
    background: var(--primary);
    height: 280px;
    flex: 7;
    border-radius: 8px 0 0 0;
}

.model-bar.process {
    background: var(--primary-light);
    height: 80px;
    flex: 2;
}

.model-bar.tech {
    background: #999;
    height: 40px;
    flex: 1;
    border-radius: 0 8px 0 0;
}

.model-bar .percentage {
    font-size: 2rem;
    line-height: 1;
}

.model-bar .label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
}

.transition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.transition-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.transition-card.highlight {
    background: var(--primary);
    color: white;
    border: none;
}

.transition-card.highlight h3,
.transition-card.highlight p,
.transition-card.highlight .impact {
    color: white;
}

.transition-card .transition-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.transition-card.highlight .transition-label {
    color: rgba(255, 255, 255, 0.8);
}

.transition-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.transition-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.transition-card .impact {
    font-weight: 600;
    color: var(--primary-text);
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.transition-card.highlight .impact {
    border-top-color: rgba(255, 255, 255, 0.3);
}

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

.barrier-item {
    padding: 24px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.barrier-item h4 {
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.barrier-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.approach-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.approach-card {
    padding: 40px;
    border-radius: 16px;
}

.approach-card.traditional {
    background: var(--bg-alt);
}

.approach-card.recommended {
    background: var(--primary);
    color: white;
}

.approach-card .approach-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--text-light);
}

.approach-card.recommended .approach-label {
    color: rgba(255, 255, 255, 0.8);
}

.approach-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.approach-card.traditional ul li {
    text-decoration: line-through;
    color: var(--text-light);
    padding: 8px 0;
}

.approach-card.recommended ul li {
    color: white;
    padding: 8px 0;
}

.approach-card .result {
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.approach-card.traditional .result {
    color: var(--text-light);
}

.approach-card.recommended .result {
    color: white;
    border-top-color: rgba(255, 255, 255, 0.3);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.framework-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 12px 12px 0 0;
}

.framework-card.pass::before {
    background: #10b981;
}

.framework-card.fail::before {
    background: #ef4444;
}

.framework-card .status {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.framework-card.pass .status {
    color: #10b981;
}

.framework-card.fail .status {
    color: #ef4444;
}

.framework-card h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.framework-card .question {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.framework-card .reality {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.framework-card .reality strong {
    color: var(--text);
}

.takeaway-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.takeaway-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.takeaway-item .number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.takeaway-item h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.takeaway-item p {
    color: var(--text-light);
    margin: 0;
}

.quote-block {
    background: var(--primary);
    color: white;
    padding: 48px;
    border-radius: 16px;
    margin: 48px 0;
    text-align: center;
}

.quote-block p {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .archetype-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archetype-label {
        display: none;
    }

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

@media (max-width: 768px) {
    .archetype-grid,
    .transition-grid,
    .barrier-grid,
    .approach-comparison,
    .framework-grid {
        grid-template-columns: 1fr;
    }

    .takeaway-item {
        flex-direction: column;
        text-align: center;
    }

    .takeaway-item .number {
        margin: 0 auto;
    }
}

/* ── Innovation & Discovery Page ── */

.mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.mode-card {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mode-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.mode-card.blitz {
    background: var(--primary);
    color: white;
    border: none;
}

.mode-card.sprint {
    background: white;
}

.mode-card .mode-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.mode-card.blitz .mode-label {
    color: rgba(255, 255, 255, 0.8);
}

.mode-card.sprint .mode-label {
    color: var(--primary-text);
}

.mode-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.mode-card.blitz h3 {
    color: white;
}

.mode-card.sprint h3 {
    color: var(--secondary);
}

.mode-card p {
    margin-bottom: 0;
}

.mode-card.blitz p {
    color: rgba(255, 255, 255, 0.9);
}

.mode-card.sprint p {
    color: var(--text-light);
}

.feature-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item .check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

.process-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 12px 12px 0 0;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.process-card .step-number {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 64px;
    position: relative;
}

.pipeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #f26522;
}

.pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 8px;
}

.pipeline-step .step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #f26522;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #f26522;
}

.pipeline-step .step-icon svg {
    width: 28px;
    height: 28px;
}

.pipeline-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 16px;
    margin-bottom: 6px;
}

.pipeline-step p {
    font-size: 0.85rem;
    color: #595959;
    margin: 0;
    max-width: 160px;
}

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

.benefit-card {
    text-align: center;
    padding: 32px 24px;
}

.benefit-card h4 {
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.outcome-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.outcome-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.outcome-item .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-item h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.outcome-item p {
    color: var(--text-light);
    margin: 0;
}

.honest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.honest-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.honest-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.honest-card p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mode-grid,
    .process-grid,
    .benefits-grid,
    .honest-grid {
        grid-template-columns: 1fr;
    }

    .pipeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .pipeline::before {
        top: 0;
        bottom: 0;
        left: 36px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .pipeline-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 16px 0;
    }

    .pipeline-step .step-icon {
        min-width: 72px;
    }

    .pipeline-step p {
        max-width: none;
    }

    .outcome-item {
        flex-direction: column;
        text-align: center;
    }

    .outcome-item .icon-box {
        margin: 0 auto;
    }
}


/* ── Accessibility Utilities ── */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Keyboard-opened dropdown */
.has-dropdown.open-keyboard .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

