﻿/* IT Architecture Page Styles */

/* Reuse styles from Implementation and Support pages where possible */

/* Hero Section */
.hero {
    position: relative;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
    color: var(--nv-text-dark-bg);
    overflow: hidden;
}

.hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.hero__orb--1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #2b5af4;
    /* Primary Accent */
}

.hero__orb--2 {
    bottom: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: #ff5000;
    /* Orange Accent */
    opacity: 0.2;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__grid {
    display: grid;
    align-items: center;
}

.hero__content {
    /* Styles handled by utility classes or inline styles in template for now, 
       but good to have base styles here */
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero__badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--nv-c-1);
    /* Green dot */
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

.hero__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

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

/* Muted (secondary) description in hero */
.hero__description--muted {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 40px;
}

/* =========================================
   Section Header Center Modifier
   ========================================= */
.section__header--center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section__header--center .section__title {
    color: #0f172a;
}


/* Buttons (if not globally defined or to ensure overrides) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--nv-primary-accent);
    color: white;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--nv-secondary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 90, 244, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section--white {
    background-color: var(--nv-site-bg);
}

.section--light {
    background-color: var(--nv-light-bg);
}

.section--dark {
    background-color: var(--nv-dark-bg);
    color: white;
}

/* =========================================
   Thesis List (Horizontal Cards)
   ========================================= */
.thesis-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.thesis-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.thesis-card:hover {
    border-color: #ff5000;
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.08);
    transform: translateY(-2px);
}

/* Number Badge */
.thesis-card__number {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
}

.thesis-card:hover .thesis-card__number {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-color: #ff5000;
    color: #ff5000;
}

/* Icon */
.thesis-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
}

/* Icon color variants - each thesis gets unique gradient */
.thesis-card:nth-child(1) .thesis-card__icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #9333ea 100%);
    /* violet */
}

.thesis-card:nth-child(2) .thesis-card__icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    /* cyan */
}

.thesis-card:nth-child(3) .thesis-card__icon {
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    /* orange */
}

.thesis-card:nth-child(4) .thesis-card__icon {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    /* amber */
}

.thesis-card:nth-child(5) .thesis-card__icon {
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    /* orange */
}

.thesis-card:hover .thesis-card__icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content */
.thesis-card__content {
    flex: 1;
    padding-right: 40px;
    /* Space for number badge */
}

.thesis-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.thesis-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .thesis-list {
        gap: 16px;
    }

    .thesis-card {
        padding: 24px;
        gap: 16px;
    }

    .thesis-card__number {
        position: static;
        flex-shrink: 0;
    }

    .thesis-card__icon {
        width: 48px;
        height: 48px;
    }

    .thesis-card__content {
        padding-right: 0;
    }

    .thesis-card__title {
        font-size: 17px;
    }

    .thesis-card__desc {
        font-size: 14px;
    }
}

/* =========================================
   Ecosystem Section
   Design System Compliant
   ========================================= */
.ecosystem-container {
    max-width: 1200px;
    /* Container standard */
    margin: 0 auto;
}

/* Center Business Element */
.ecosystem-center {
    background: white;
    /* BG white like cards */
    border: 1px solid #e2e8f0;
    /* Border light */
    border-radius: 16px;
    /* Standard card radius */
    padding: 48px;
    margin: 0 auto 64px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Light card shadow */
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
    transition: all 0.3s ease;
}

.ecosystem-center:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ecosystem-center__content {
    /* Text content left side */
}

.ecosystem-center__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.ecosystem-center__title {
    font-size: 32px;
    font-weight: 700;
    /* H2 weight */
    color: #0f172a;
    /* Text primary */
    margin-bottom: 16px;
    text-align: left;
}

.ecosystem-center__desc {
    font-size: 16px;
    /* Body default */
    line-height: 1.7;
    color: #475569;
    /* Text secondary */
    margin-bottom: 24px;
    text-align: left;
}

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

.ecosystem-center__list li {
    font-size: 15px;
    /* Body small */
    color: #0f172a;
    /* Text primary */
    padding: 8px 0 8px 28px;
    position: relative;
}

.ecosystem-center__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff5000;
    /* Primary orange */
    font-weight: 700;
}

/* Ecosystem Grid */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    /* Standard gap */
}

@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        /* Mobile breakpoint */
    }
}

/* =========================================
   Utility Classes for Sections
   ========================================= */

/* Section Headers */
.section__header--center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.section__header--narrow {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
}

/* Section Intro/Closing Text */
.section__intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.section__intro p {
    font-size: 18px;
    /* Body large */
    line-height: 1.7;
    color: #475569;
    /* Text secondary */
    margin-bottom: 16px;
}

.section__intro strong {
    color: #0f172a;
    /* Text primary */
}

.section__closing {
    max-width: 800px;
    margin: 64px auto 0;
    text-align: center;
}

.section__closing p {
    font-size: 18px;
    /* Body large */
    line-height: 1.7;
    color: #475569;
    /* Text secondary */
}


/* Ecosystem Cards */
.ecosystem-card {
    background: white;
    /* BG white */
    border-radius: 16px;
    /* Standard card radius */
    padding: 32px;
    /* Card padding large */
    border: 1px solid #e2e8f0;
    /* Border light */
    transition: all 0.3s ease;
    /* Standard transition */
}

.ecosystem-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* MD hover shadow */
    transform: translateY(-4px);
    /* Hover lift */
    border-color: #ff5000;
    /* Primary orange */
}

.ecosystem-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ecosystem-card__number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    /* Primary orange gradient */
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    /* Circle badge */
    box-shadow: 0 2px 8px rgba(255, 80, 0, 0.3);
}

.ecosystem-card__title {
    font-size: 22px;
    /* Card title */
    font-weight: 700;
    color: #0f172a;
    /* Text primary */
    margin-bottom: 16px;
    line-height: 1.3;
}

.ecosystem-card__intro {
    font-size: 15px;
    /* Body small */
    line-height: 1.6;
    color: #475569;
    /* Text secondary */
    margin-bottom: 16px;
}

.ecosystem-card__subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #0f172a;
    /* Text primary */
    margin: 16px 0 8px 0;
}

.ecosystem-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.ecosystem-card__list li {
    font-size: 14px;
    color: #475569;
    /* Text secondary */
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.5;
}

.ecosystem-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff5000;
    /* Primary orange */
    font-weight: 700;
}

.ecosystem-card__highlight {
    font-size: 15px;
    /* Body small */
    font-weight: 600;
    color: #ff5000;
    /* Primary orange */
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e2e8f0;
    /* Border light */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ecosystem-center {
        grid-template-columns: 1fr;
        /* Stack vertically on tablet/mobile */
        gap: 32px;
    }

    .ecosystem-center__image-wrapper {
        order: -1;
        /* Image first on mobile */
    }
}

@media (max-width: 640px) {
    .ecosystem-center {
        padding: 32px 24px;
        /* Mobile padding */
    }

    .ecosystem-center__title {
        font-size: 24px;
        /* Mobile H3 */
    }

    .ecosystem-card {
        padding: 24px;
        /* Card padding medium */
    }

    .ecosystem-card__title {
        font-size: 20px;
    }
}

/* ============================================
   Who Needs IT Architecture Section
   ============================================ */

/* Grid Layout */
.who-needs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Standard grid gap */
    gap: 32px;
    margin-top: 48px;
}

/* Base Card Styles */
.who-needs-card {
    background: white;
    /* BG white */
    border: 1px solid #e2e8f0;
    /* Border light */
    border-radius: 16px;
    /* Standard card radius */
    padding: 40px;
    /* Large card padding */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Light shadow */
    transition: all 0.3s ease;
    /* Standard transition */
}

/* Border Thickness Variation */
.who-needs-card--startup {
    border-top: 4px solid #ff5000;
    /* Primary orange, thin (simple) */
}

.who-needs-card--scaling {
    border-top: 4px solid #ff5000;
    /* Primary orange, thick (advanced) */
}

/* Hover State */
.who-needs-card:hover {
    transform: translateY(-4px);

}

/* Icon Container */
.who-needs-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    /* Medium radius */
    background: #f1f5f9;
    /* Primary orange 10% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Title */
.who-needs-card__title {
    font-size: 24px;
    /* Card title */
    font-weight: 700;
    /* H2 weight */
    color: #0f172a;
    /* Text primary */
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Section */
.who-needs-card__section {
    margin-bottom: 24px;
}

/* Label */
.who-needs-card__label {
    font-size: 14px;
    /* Body small */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff5000;
    /* Primary orange */
    margin-bottom: 12px;
}

/* Lists */
.who-needs-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-needs-card__list li {
    font-size: 16px;
    /* Body default */
    color: #475569;
    /* Text secondary */
    line-height: 1.7;
    /* Body line height */
    padding: 6px 0 6px 24px;
    position: relative;
}

/* Bullet Points */
.who-needs-card__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff5000;
    /* Primary orange */
    font-weight: 700;
}

/* Checkmarks List */
.who-needs-card__list--check li::before {
    content: '✓';
    color: #10b981;
    /* Success green - ALLOWED for checkmarks! */
}

/* Footer */
.who-needs-card__footer {
    font-size: 15px;
    /* Body small */
    font-weight: 600;
    font-style: italic;
    color: #0f172a;
    /* Text primary */
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
    /* Border light */
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .who-needs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
    .who-needs-card {
        padding: 32px 24px;
        /* Mobile padding */
    }

    .who-needs-card__title {
        font-size: 20px;
    }
}

/* ============================================
   How We Work Section - Dark Theme
   ============================================ */

/* Base Section (based on demo-cta.css) */
.how-we-work {
    padding: 100px 0;
    /* Dark gradient background */
    background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Gradient Mesh Background */
.how-we-work__gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 80, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        /* Blue orb - Design System */
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

/* Animated Glow Orbs */
.how-we-work__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    /* Reuse demo-cta animation */
    pointer-events: none;
}

.how-we-work__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 80, 0, 0.4) 0%, transparent 70%);
    /* Primary orange */
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.how-we-work__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    /* Blue accent */
    bottom: -150px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float {

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

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

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Light Text Variants for Dark Background */
.section__title--light {
    color: #ffffff;
    /* White text */
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.7);
    /* Light text secondary */
}

.tagline-pill--light {
    background: rgba(255, 255, 255, 0.08);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}



/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .how-we-work {
        padding: 70px 0;
        /* Tablet padding */
    }


}

@media (max-width: 480px) {
    .how-we-work {
        padding: 60px 0;
        /* Mobile padding */
    }


}

/* ============================================
   Architecture Scenarios Slider Section
   ============================================ */

/* Slider Container */
.architecture-slider {
    position: relative;
    max-width: 1000px;
    margin: 64px auto 0;
    padding: 0 80px;
    /* Increased space for arrows - no overlap */
}

.architecture-slider__wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    /* Match card radius */
}

.architecture-slider__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smooth slide animation */
}

.architecture-slider__slide {
    width: 100%;
    min-width: 100%;
    /* Full width slide */
    flex-shrink: 0;
}

/* ============================================
   Scenario Card Styles
   ============================================ */

.scenario-card {
    background: white;
    /* BG white */
    border: 1px solid #e2e8f0;
    /* Border light */
    border-radius: 16px;
    /* Card radius */
    padding: 40px;
    /* Large padding */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Light shadow */
}

/* Header */
.scenario-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
    /* Light divider */
}

.scenario-card__number {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    /* Medium radius */
    background: rgba(255, 80, 0, 0.1);
    /* Orange tint */
    border: 2px solid rgba(255, 80, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ff5000;
    /* Primary orange */
    flex-shrink: 0;
}

.scenario-card__title {
    font-size: 24px;
    /* Card title */
    font-weight: 700;
    color: #0f172a;
    /* Text primary */
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

/* Companies */
.scenario-card__companies {
    margin-bottom: 24px;
}

.scenario-card__label {
    font-size: 13px;
    /* Small text */
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    /* Text muted */
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.scenario-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    padding: 6px 12px;
    background: #f1f5f9;
    /* Light bg */
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    /* Text secondary */
}

/* Content Sections */
.scenario-card__section {
    margin-bottom: 24px;
}

.scenario-card__subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    /* Text primary */
    margin: 0 0 12px 0;
}

.scenario-card__section p {
    font-size: 15px;
    color: #475569;
    /* Text secondary */
    line-height: 1.6;
    margin: 0;
}

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

.scenario-card__list li {
    font-size: 15px;
    /* Body default */
    color: #475569;
    /* Text secondary */
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.6;
}

.scenario-card__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff5000;
    /* Primary orange */
    font-weight: 700;
}

.scenario-card__list--check li::before {
    content: '✓';
    color: #10b981;
    /* Success green */
}

/* Result Block */
.scenario-card__result {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 80, 0, 0.05);
    /* Subtle orange tint */
    border-left: 3px solid #ff5000;
    /* Orange accent */
    border-radius: 8px;
    font-size: 15px;
    color: #0f172a;
    /* Text primary */
    line-height: 1.6;
}

.scenario-card__result strong {
    color: #ff5000;
    /* Highlight label */
    font-weight: 600;
}

/* ============================================
   Navigation - Arrows
   ============================================ */

.architecture-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* Circle */
    background: white;
    border: 1px solid #e2e8f0;
    /* Light border */
    color: #475569;
    /* Button text color (for SVG currentColor) */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.architecture-slider__arrow--prev {
    left: -10px;
    /* Outside container */
}

.architecture-slider__arrow--next {
    right: -10px;
    /* Outside container */
}

.architecture-slider__arrow:hover {
    background: #ff5000;
    /* Primary orange */
    border-color: #ff5000;
    color: white;
    /* Change color for SVG currentColor */
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3);
    /* Orange glow */
    transform: translateY(-50%) scale(1.05);
    /* Slight grow */
}

.architecture-slider__arrow svg {
    display: block;
    /* Prevent inline spacing issues */
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    stroke: currentColor;
    /* Use button's color */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: stroke 0.3s ease;
}

.architecture-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   Navigation - Dots
   ============================================ */

.architecture-slider__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.architecture-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    /* Neutral inactive */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.architecture-slider__dot.is-active {
    background: #ff5000;
    /* Primary orange */
    width: 32px;
    /* Elongate active */
    border-radius: 5px;
}

.architecture-slider__dot:hover {
    background: #ff5000;
    transform: scale(1.2);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .architecture-slider {
        padding: 0 50px;
        /* Smaller arrow space */
    }

    .scenario-card {
        padding: 32px 24px;
        /* Mobile padding */
    }

    .scenario-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .scenario-card__number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .scenario-card__title {
        font-size: 20px;
    }

    .architecture-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .architecture-slider__arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {
    .architecture-slider {
        padding: 0;
        /* Remove padding, arrows overlay */
    }

    .architecture-slider__wrapper {
        touch-action: pan-x;
        /* Enable horizontal swipe */
    }

    .architecture-slider__arrow {
        width: 40px;
        height: 40px;
        background: transparent;
        /* No background on mobile */
        border: none;
        /* No border on mobile */
        box-shadow: none;
        /* No shadow */
        color: #ff5000;
        /* Orange arrows */
        opacity: 1;
        /* Full opacity */
        top: 24px;
        /* Header area */
        transform: translateY(0);
        /* No center transform */
        right: 8px;
    }

    .architecture-slider__arrow--prev {
        right: auto;
        left: auto;
        right: 56px;
        /* Next to other arrow */
    }

    .architecture-slider__arrow--next {
        right: 8px;
        left: auto;
    }

    .architecture-slider__arrow:hover {
        background: transparent;
        /* Keep transparent on hover */
        color: #ff5000;
        /* Keep orange */
        transform: scale(1.1);
        /* Just scale on hover, no translateY */
        box-shadow: none;
    }

    .architecture-slider__arrow svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        stroke-width: 2.5;
        /* Thicker for visibility */
    }

    .scenario-card {
        padding: 24px 20px;
    }

    .scenario-card__header {
        padding-right: 100px;
        /* Space for arrows */
    }

    .scenario-card__title {
        font-size: 18px;
        line-height: 1.4;
    }

    .scenario-card__subtitle {
        font-size: 15px;
    }

    .scenario-card__list li,
    .scenario-card__section p,
    .scenario-card__result {
        font-size: 14px;
        line-height: 1.6;
    }

    .architecture-slider__dots {
        margin-top: 24px;
        /* Closer on mobile */
    }

    .architecture-slider__dot {
        width: 8px;
        height: 8px;
    }

    .architecture-slider__dot.is-active {
        width: 24px;
        /* Smaller elongation on mobile */
    }
}

/* ============================================
   Deliverables Section
   ============================================ */

/* Grid Layout: 60% left, 40% right */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* ~60% / ~40% */
    gap: 64px;
    /* Large gap for spacing */
    margin-top: 64px;
}

/* Left Column: Deliverables List */
.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Deliverable Item */
.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid #e2e8f0;
    /* Border light */
    border-radius: 12px;
    /* Standard card radius */
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    border-color: #ff5000;
    /* Primary orange */
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.08);
    transform: translateY(-2px);
}

/* Deliverable Item Icon - gradient backgrounds like thesis-card */
.deliverable-item__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
}

/* Icon color variants - each deliverable gets unique gradient */
.deliverable-item:nth-child(1) .deliverable-item__icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #9333ea 100%);
    /* violet - процеси */
}

.deliverable-item:nth-child(2) .deliverable-item__icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    /* cyan - вибір */
}

.deliverable-item:nth-child(3) .deliverable-item__icon {
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    /* orange - фінанси */
}

.deliverable-item:nth-child(4) .deliverable-item__icon {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    /* amber - архітектура */
}

.deliverable-item:nth-child(5) .deliverable-item__icon {
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    /* orange - дорожня карта */
}

.deliverable-item:hover .deliverable-item__icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Remove old number badge styles */
.deliverable-item__number {
    display: none;
}

/* Content */
.deliverable-item__content {
    flex: 1;
}

.deliverable-item__title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    /* Text primary */
    margin-bottom: 8px;
    line-height: 1.4;
}

.deliverable-item__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    /* Text secondary */
    margin: 0;
}

/* CTAs */
.deliverables-cta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.deliverables-cta .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.deliverables-cta .btn--primary {
    background: #ff5000;
    /* Primary orange */
    color: white;
    border: 1px solid #ff5000;
}

.deliverables-cta .btn--primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3);
}

.deliverables-cta .btn--secondary {
    background: white;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.deliverables-cta .btn--secondary:hover {
    border-color: #ff5000;
    color: #ff5000;
    transform: translateY(-2px);
}

/* Right Column: Package Card */
.deliverables-package {
    height: 100%;
    /* Fill grid cell height */
}

.package-card {
    background: white;
    /* White background */
    border: 2px solid #ff5000;
    /* Primary orange border */
    border-radius: 16px;
    /* Standard card radius */
    padding: 32px;
    box-shadow: 0 10px 30px rgba(255, 80, 0, 0.1);
    height: 100%;
    /* Match container height */
    display: flex;
    flex-direction: column;
}

.package-card__header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.package-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    /* Text primary */
    margin-bottom: 8px;
    line-height: 1.3;
}

.package-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: #ff5000;
    /* Primary orange */
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    font-family: monospace;
}

.package-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.package-card__list li {
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    /* Text primary */
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.5;
}

.package-card__list li:last-child {
    border-bottom: none;
}

.package-card__footer {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    /* Text secondary */
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
    margin: 0;
    font-style: italic;
}


/* Package Card CTAs */
.package-card__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}

.package-card__cta .btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-card__cta .btn--primary {
    background: #ff5000;
    color: white;
    border: 1px solid #ff5000;
}

.package-card__cta .btn--primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3);
}

.package-card__cta .btn--secondary {
    background: white;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.package-card__cta .btn--secondary:hover {
    border-color: #ff5000;
    color: #ff5000;
    transform: translateY(-2px);
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
        /* Stack on tablet */
        gap: 48px;
    }

    .deliverables-package {
        position: static;
        /* Remove sticky on smaller screens */
    }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
    .deliverables-grid {
        gap: 32px;
    }

    .deliverable-item {
        padding: 20px;
        gap: 16px;
    }

    .deliverable-item__number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .deliverable-item__title {
        font-size: 17px;
    }

    .deliverable-item__desc {
        font-size: 14px;
    }

    .deliverables-cta {
        flex-direction: column;
    }

    .deliverables-cta .btn {
        width: 100%;
        text-align: center;
    }

    .package-card {
        padding: 24px;
    }

    .package-card__title {
        font-size: 20px;
    }
}

/* ============================================
   Deliverables Matrix Section (What You Get)
   ============================================ */
.deliverables-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.matrix-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.matrix-card:hover {
    border-color: #ff5000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.matrix-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.matrix-card__number {
    font-size: 18px;
    font-weight: 700;
    color: #ff5000;
    background: rgba(255, 80, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.matrix-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.matrix-card__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
}

.matrix-card__practical {
    margin-top: auto;
    /* Push to bottom if content height differs */
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #cbd5e1;
    transition: border-color 0.3s ease;
}

.matrix-card:hover .matrix-card__practical {
    border-color: #ff5000;
}

.matrix-card__label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

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

.matrix-card__list li {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.matrix-card__list li:last-child {
    margin-bottom: 0;
}

.matrix-card__list li::before {
    content: "•";
    color: #ff5000;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
    top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .deliverables-matrix {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .matrix-card {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .matrix-card__title {
        font-size: 20px;
    }

    .matrix-card__desc {
        font-size: 15px;
    }

    .matrix-card__practical {
        padding: 20px;
    }
}

/* ============================================
   Deliverables Matrix - Dark Theme Reskin
   ============================================ */
.deliverables-section--dark {
    padding: 100px 0;
    /* Dark gradient background matching How We Work */
    background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Dark Card Styles */
.deliverables-section--dark .matrix-card {
    background: rgba(255, 255, 255, 0.03);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.deliverables-section--dark .matrix-card:hover {
    border-color: #ff5000;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

/* Typography Overrides */
.deliverables-section--dark .matrix-card__title {
    color: white;
}

.deliverables-section--dark .matrix-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

.deliverables-section--dark .matrix-card__practical {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(255, 255, 255, 0.2);
}

.deliverables-section--dark .matrix-card:hover .matrix-card__practical {
    border-left-color: #ff5000;
}

.deliverables-section--dark .matrix-card__label {
    color: rgba(255, 255, 255, 0.9);
}

.deliverables-section--dark .matrix-card__list li {
    color: rgba(255, 255, 255, 0.7);
}

/* Number Badge Adjustment */
.deliverables-section--dark .matrix-card__number {
    background: rgba(255, 80, 0, 0.15);
    color: #ff5000;
    text-shadow: 0 0 10px rgba(255, 80, 0, 0.4);
}