@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* ==========================================================================
   Altra-IT Professional Stylesheet
   Theme: Sleek Dark / Glassmorphism
   Accent Colors: Electric Cyan (#673de6) & Violet (#de2b97)
   ========================================================================== */

/* 1. Global Variables & Base Reset */
:root {
    --bg-dark: #0f072c;
    --bg-card: rgba(18, 22, 28, 0.65);
    --bg-card-hover: rgba(24, 30, 38, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(103, 61, 230, 0.4);
    
    --primary: #673de6;
    --primary-glow: rgba(103, 61, 230, 0.15);
    --secondary: #de2b97;
    --secondary-glow: rgba(222, 43, 151, 0.15);
    --accent: #673de6;
    
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --text-green: #10b981;
    --text-red: #ef4444;
    
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1320px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* 2. Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--primary-glow);
    border-radius: 50px;
    border: 1px solid rgba(103, 61, 230, 0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Button Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(103, 61, 230, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(103, 61, 230, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* 3. Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #0f072c;
    border-bottom: 1px solid var(--border-color);
    z-index: 99;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background: #0f072c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
}

.logo-dot {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

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

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(222, 43, 151, 0.4);
    transform: translateY(-2px);
}

.nav-btn-mobile {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Hamburger Open State */
.mobile-nav-toggle.open .hamburger {
    background: transparent;
}
.mobile-nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* 4. Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background-image: radial-gradient(circle at 10% 20%, rgba(222, 43, 151, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(103, 61, 230, 0.05) 0%, transparent 40%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(15, 7, 44, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.hero-tagline-wrapper {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(103, 61, 230, 0.06);
    border: 1px solid rgba(103, 61, 230, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--text-green);
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.0rem;
    margin-bottom: 36px;
    max-width: 580px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Interactive Hero Graphic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 920px;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(103, 61, 230, 0.1) 0%, rgba(222, 43, 151, 0.05) 50%, rgba(15, 7, 44, 0.8) 100%),
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(103, 61, 230, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(103, 61, 230, 0.12) 0%, rgba(222, 43, 151, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    filter: brightness(0.9) contrast(1.1);
    z-index: 0;
}

.interactive-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 15px var(--primary);
}

.interactive-node::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: -6px;
    left: -6px;
    animation: nodePulse 2s infinite;
    pointer-events: none;
}

.node-1 { top: 30%; left: 35%; }
.node-2 { top: 55%; left: 65%; }
.node-3 { top: 75%; left: 45%; }

.node-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 7, 44, 0.95);
    border: 1px solid var(--primary);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.node-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
}

.interactive-node:hover .node-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 5. Core Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(103, 61, 230, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(103, 61, 230, 0.06);
}

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

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(103, 61, 230, 0.06);
    border: 1px solid rgba(103, 61, 230, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(103, 61, 230, 0.04);
    transition: var(--transition-normal);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(103, 61, 230, 0.4);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    transform: rotateY(360deg);
}

.service-card:hover .service-icon {
    color: var(--text-white);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.35;
}

.service-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-features li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Custom Light-Card styling within Dark Services Section */
.services-section .service-card {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
    box-shadow: 0 15px 45px rgba(103, 61, 230, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.services-section .service-card::before {
    background: linear-gradient(180deg, rgba(103, 61, 230, 0.04) 0%, transparent 100%) !important;
}

.services-section .service-card:hover {
    border-color: rgba(103, 61, 230, 0.35) !important;
    box-shadow: 0 20px 50px rgba(103, 61, 230, 0.15) !important;
}

.services-section .service-card-title {
    color: #0f072c !important; /* Elegant deep dark headings */
}

.services-section .service-card-text {
    color: #5f5582 !important; /* Elegant slate-purple body text for high readability */
}

/* Secondary Button styling within Light Service Cards */
.services-section .service-card .btn-secondary {
    background: #f4f3ff !important;
    color: #673de6 !important;
    border: 1px solid rgba(103, 61, 230, 0.15) !important;
}

.services-section .service-card .btn-secondary:hover {
    background: #e9e6ff !important;
    border-color: rgba(103, 61, 230, 0.3) !important;
    color: #673de6 !important;
}

/* 6. Subscriptions Section */
.subscriptions-section {
    background-image: radial-gradient(circle at 50% 50%, rgba(222, 43, 151, 0.03) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.04);
}

.pricing-card.featured {
    background: rgba(18, 22, 28, 0.85);
    border: 1.5px solid var(--primary);
    box-shadow: 0 15px 35px rgba(103, 61, 230, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 45px rgba(103, 61, 230, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.25);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-price {
    font-family: var(--font-heading);
    color: var(--text-white);
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 4px;
    color: var(--primary);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.pricing-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.plan-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pricing-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    transition: var(--transition-normal);
}

.pricing-cta-btn:hover {
    background: var(--text-white);
    color: var(--text-dark);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.2);
}

.pricing-card.featured .pricing-cta-btn:hover {
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.4);
    transform: translateY(-2px);
}

/* Custom Light-Card styling within Dark Subscriptions Section */
.subscriptions-section .pricing-card {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
    box-shadow: 0 15px 45px rgba(103, 61, 230, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.subscriptions-section .pricing-card.featured {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 20px 45px rgba(103, 61, 230, 0.15) !important;
}

.subscriptions-section .pricing-card:hover {
    border-color: rgba(103, 61, 230, 0.35) !important;
    box-shadow: 0 20px 50px rgba(103, 61, 230, 0.15) !important;
}

.subscriptions-section .plan-name {
    color: #0f072c !important;
}

.subscriptions-section .plan-subtitle {
    color: #5f5582 !important;
}

.subscriptions-section .plan-price {
    color: #0f072c !important;
}

.subscriptions-section .price-num {
    color: #0f072c !important;
}

.subscriptions-section .price-currency {
    color: var(--primary) !important;
}

.subscriptions-section .price-period {
    color: #5f5582 !important;
}

.subscriptions-section .plan-features li {
    color: #5f5582 !important;
}

.subscriptions-section .plan-features li i {
    color: var(--primary) !important;
}

/* CTA Buttons inside standard light pricing cards */
.subscriptions-section .pricing-card:not(.featured) .pricing-cta-btn {
    background: #f4f3ff !important;
    color: #673de6 !important;
    border: 1px solid rgba(103, 61, 230, 0.15) !important;
}

.subscriptions-section .pricing-card:not(.featured) .pricing-cta-btn:hover {
    background: #e9e6ff !important;
    border-color: rgba(103, 61, 230, 0.3) !important;
    color: #673de6 !important;
    transform: translateY(-2px);
}

/* 7. Comparison Table Section */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
}

.col-competitor {
    width: 35%;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.01);
}

.col-altra-it {
    width: 35%;
    color: var(--text-white);
    background: rgba(103, 61, 230, 0.02);
}

.feature-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
}

.competitor-icon {
    color: var(--text-red);
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

.altra-icon {
    color: var(--primary);
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
    text-shadow: 0 0 8px rgba(103, 61, 230, 0.4);
}

/* 8. Case Study Section */
.case-study-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.case-study-content {
    padding: 50px;
}

.case-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 4px 12px;
    background: var(--primary-glow);
    border-radius: 4px;
}

.case-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 36px;
    line-height: 1.3;
}

.case-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-step {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(103, 61, 230, 0.2);
}

.step-desc h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.step-desc p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Case Study Stats column */
.case-study-stats {
    background: rgba(103, 61, 230, 0.02);
    border-left: 1px solid var(--border-color);
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-content: center;
}

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

.case-stat-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(103, 61, 230, 0.25);
    margin-bottom: 8px;
}

.case-stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* 9. Contact & Lead Form Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: start;
}

.contact-desc {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(103, 61, 230, 0.06);
    border: 1px solid rgba(103, 61, 230, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Multi-step Form Design */
.contact-form-wrapper {
    background: rgba(18, 22, 28, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
}

.form-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.form-progress-steps::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.step-dot.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 0 15px var(--primary);
}

.step-dot.completed {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-white);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-instruction {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Options Grid (Radio Cards) */
.form-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.form-options-grid.select-card {
    grid-template-columns: 1fr;
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-content {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-normal);
    height: 100%;
}

.option-card input[type="radio"]:checked + .option-card-content {
    border-color: var(--primary);
    background: rgba(103, 61, 230, 0.04);
    box-shadow: 0 0 20px rgba(103, 61, 230, 0.08);
}

.option-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.option-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Checkboxes Grid */
.form-checkboxes-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-right: 16px;
    display: inline-block;
    transition: var(--transition-fast);
    position: relative;
    flex-shrink: 0;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--text-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-card input[type="checkbox"]:checked {
    border-color: var(--primary);
}

.checkbox-card:has(input[type="checkbox"]:checked) {
    border-color: var(--primary);
    background: rgba(103, 61, 230, 0.03);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--text-white);
}

/* Inputs design */
.form-inputs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
}

.input-group input {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(103, 61, 230, 0.1);
}

/* Form Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.form-navigation .btn-prev {
    background: transparent;
    border: 1px solid var(--border-color);
}

.form-navigation .btn-prev:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Success container */
.form-success-container {
    display: none;
    text-align: center;
    padding: 30px 10px;
    animation: scaleIn 0.5s ease-out;
}

.success-big-icon {
    font-size: 4.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(103, 61, 230, 0.4);
    margin-bottom: 24px;
}

.form-success-container h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.form-success-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 36px;
    color: var(--text-muted);
}

/* 10. Footer Section */
.main-footer {
    background: #050608;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-links-col h4 {
    font-size: 1.05rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-col ul a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.legal-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 600px;
}

.legal-text strong {
    color: rgba(255, 255, 255, 0.7);
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.tech-brand {
    color: var(--primary);
}

/* 11. Keyframes & Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes nodePulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Animation Engine */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ==========================================================================
   12. Responsive Media Queries (Mobile First & Breakpoints)
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-box {
        grid-template-columns: 1fr;
    }
    
    .case-study-stats {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-dark);
        border-top: 1px solid var(--border-color);
        padding: 40px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
        z-index: 100;
        flex-direction: column;
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-cta-btn {
        display: none;
    }
    
    .nav-btn-mobile {
        display: block;
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-white);
        border: none;
        padding: 12px 36px;
        border-radius: 50px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
        margin-top: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .pricing-card,
    .service-card,
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .case-study-content {
        padding: 24px;
    }
}

/* ==========================================================================
   13. Multi-Page & Subpage Components (Sieci, Smart Home, Monitoring, SaaS)
   ========================================================================== */

/* Subpage Hero Section */
.subpage-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0f072c 0%, #1c0f4d 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.subpage-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subpage-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.subpage-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.subpage-back-link:hover {
    transform: translateX(-5px);
}

/* Subpage Detailed Content Section */
.subpage-details-section {
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.details-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.details-text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.details-text-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.details-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1rem;
}

/* Custom Interactive Infographics Container */
.infographic-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: rgba(18, 22, 28, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Infographic I: Network Topology Map */
.topology-map {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.topo-line {
    stroke: rgba(103, 61, 230, 0.15);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    animation: dash 30s linear infinite;
}

.topo-line-active {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 8 6;
    animation: dashActive 10s linear infinite;
    filter: drop-shadow(0 0 5px var(--primary));
}

@keyframes dash {
    to { stroke-dashoffset: -1000; }
}

@keyframes dashActive {
    to { stroke-dashoffset: -500; }
}

.topo-nodes-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.topo-node {
    position: absolute;
    background: rgba(15, 7, 44, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.topo-node:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(103, 61, 230, 0.15);
    transform: scale(1.05);
}

.topo-node-icon {
    font-size: 1.1rem;
    color: var(--primary);
    text-shadow: 0 0 8px rgba(103, 61, 230, 0.5);
}

.topo-node-text h5 {
    font-size: 0.8rem;
    color: var(--text-white);
    line-height: 1.1;
}

.topo-node-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.topo-badge-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-green);
    box-shadow: 0 0 8px var(--text-green);
}

/* Node absolute layout coordinates */
.node-core { top: 40%; left: 5%; }
.node-switch { top: 40%; left: 40%; }
.node-wifi-1 { top: 15%; left: 75%; }
.node-wifi-2 { top: 40%; left: 75%; }
.node-vlan-iot { top: 70%; left: 75%; }

/* Infographic II: Smart Home Energy Flows */
.energy-flow-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.flow-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(15, 7, 44, 0.85);
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.flow-node:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(103, 61, 230, 0.2);
    transform: scale(1.1);
}

.flow-node-main {
    width: 70px;
    height: 70px;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(103, 61, 230, 0.1);
    top: 40%;
    left: 42%;
}

.flow-node-main i {
    font-size: 1.8rem;
    color: var(--primary);
}

.flow-node-sub {
    width: 50px;
    height: 50px;
}

.flow-node-sub i {
    font-size: 1.2rem;
    color: var(--text-white);
}

.node-grid { top: 10%; left: 15%; border-color: rgba(255, 255, 255, 0.3); }
.node-shelly { top: 43%; left: 15%; border-color: var(--secondary); }
.node-pv { top: 75%; left: 15%; border-color: #f59e0b; }
.node-hvac { top: 15%; left: 75%; }
.node-heatpump { top: 43%; left: 75%; }
.node-dashboard-tablet { top: 75%; left: 75%; }

.energy-line {
    stroke-width: 2;
    stroke-dasharray: 5 5;
    animation: flowPulse 8s linear infinite;
}

.energy-line-yellow { stroke: #f59e0b; filter: drop-shadow(0 0 3px #f59e0b); }
.energy-line-cyan { stroke: var(--primary); filter: drop-shadow(0 0 3px var(--primary)); }
.energy-line-purple { stroke: var(--secondary); filter: drop-shadow(0 0 3px var(--secondary)); }

@keyframes flowPulse {
    to { stroke-dashoffset: -100; }
}

/* Infographic III: Camera AI Analytics */
.camera-analytics-infographic {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.camera-grid-lines {
    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: 33.33% 33.33%;
    pointer-events: none;
}

.camera-header-overlay {
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-white);
    opacity: 0.8;
}

.rec-indicator {
    color: var(--text-red);
    animation: blink 1s steps(5, start) infinite;
}

@keyframes blink { to { visibility: hidden; } }

.target-ai-box {
    position: absolute;
    border: 2px solid var(--primary);
    background: rgba(103, 61, 230, 0.05);
    border-radius: 4px;
    top: 30%;
    left: 35%;
    width: 150px;
    height: 220px;
    box-shadow: 0 0 20px rgba(103, 61, 230, 0.2);
    animation: scanner 4s ease-in-out infinite alternate;
}

@keyframes scanner {
    0% { transform: translateY(0); }
    100% { transform: translateY(15px); }
}

.target-label {
    position: absolute;
    bottom: calc(100% + 6px);
    left: -2px;
    background-color: var(--primary);
    color: var(--text-dark);
    font-family: monospace;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 3px 8px;
    white-space: nowrap;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(103, 61, 230, 0.2);
}

.line-crossing-indicator {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-red);
    box-shadow: 0 0 10px var(--text-red);
}

.line-crossing-label {
    position: absolute;
    right: 20px;
    top: calc(60% - 20px);
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--text-red);
    font-weight: 700;
}

/* 14. Serious Valuation Notice Box (NO "Bezpłatna wycena") */
.valuation-notice-box {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 36px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.valuation-notice-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 3px;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.valuation-notice-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.valuation-notice-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.valuation-notice-content strong {
    color: var(--primary);
}

/* Additional layout for subpages */
.subpage-features-container {
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 60px;
    margin-top: 60px;
}

.features-intro {
    max-width: 700px;
    margin: 0 auto 50px;
}

.features-subgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-subcard {
    background: rgba(15, 7, 44, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-normal);
}

.feature-subcard:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.feature-subcard-icon {
    width: 48px;
    height: 48px;
    background: rgba(103, 61, 230, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-subcard h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-subcard p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Custom layout for global SaaS subpage */
.saas-services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.saas-service-row {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 40px;
    align-items: center;
    backdrop-filter: blur(15px);
    transition: var(--transition-normal);
}

.saas-service-row:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.03);
}

.saas-service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.saas-service-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.saas-service-badge {
    background: rgba(222, 43, 151, 0.1);
    color: #de2b97;
    border: 1px solid rgba(222, 43, 151, 0.2);
    padding: 3px 10px;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.saas-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.saas-service-features li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.saas-service-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.saas-service-price-box {
    border-left: 1px solid var(--border-color);
    padding-left: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.saas-price-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 4px;
}

.saas-price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.saas-pricing-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    display: block;
    width: 100%;
}

@media (max-width: 1024px) {
    .subpage-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .details-grid,
    .details-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .saas-service-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .saas-service-price-box {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .subpage-hero-title {
        font-size: 2.3rem;
    }
    
    .subpage-features-container {
        padding: 30px;
    }
    
    .features-subgrid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   15. Light Theme Styling (Hostinger Mixed Theme)
   ========================================================================== */
.light-section {
    background-color: #ffffff !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(103, 61, 230, 0.01) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(222, 43, 151, 0.01) 0%, transparent 40%) !important;
    color: #5f5582 !important; /* Elegant slate-purple body text */
}

/* Light Theme Overrides for Hero Visuals */
.light-section .visual-wrapper {
    background: radial-gradient(circle at 50% 50%, rgba(103, 61, 230, 0.15) 0%, rgba(222, 43, 151, 0.1) 70%, #ffffff 100%) !important;
    box-shadow: 0 25px 50px rgba(103, 61, 230, 0.12), inset 0 0 30px rgba(103, 61, 230, 0.05) !important;
    border-color: rgba(103, 61, 230, 0.15) !important;
}

.light-section .hero-img {
    mix-blend-mode: normal !important; /* Premium crisp normal rendering for white background */
    filter: brightness(1.02) contrast(1.05) saturate(1.05) !important;
}


/* Base Headings inside Light Section */
.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6,
.light-section .section-title {
    color: #0f072c !important; /* Deep dark purple headings like Hostinger */
}

.light-section .section-subtitle {
    background: rgba(103, 61, 230, 0.06) !important;
    border-color: rgba(103, 61, 230, 0.15) !important;
    color: #673de6 !important;
}

.light-section p,
.light-section .section-description,
.light-section .service-card-text {
    color: #5f5582 !important;
}

/* Subpage detailed grid intro */
.light-section .features-intro p,
.light-section .details-grid p {
    color: #5f5582 !important;
}

/* Service Cards / Feature Cards in Light Section */
.light-section .service-card,
.light-section .feature-subcard,
.light-section .saas-service-row {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.08) !important;
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.03) !important;
    color: #5f5582 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.light-section .service-card::before,
.light-section .feature-subcard::before {
    background: linear-gradient(180deg, rgba(103, 61, 230, 0.02) 0%, transparent 100%) !important;
}

.light-section .service-card:hover,
.light-section .feature-subcard:hover,
.light-section .saas-service-row:hover {
    border-color: rgba(103, 61, 230, 0.3) !important;
    box-shadow: 0 15px 40px rgba(103, 61, 230, 0.08) !important;
}

.light-section .service-card-title,
.light-section .feature-subcard h4,
.light-section .saas-service-content h3 {
    color: #0f072c !important;
}

.light-section .service-features {
    border-top: 1px solid rgba(103, 61, 230, 0.08) !important;
}

.light-section .service-features li {
    color: #5f5582 !important;
}

.light-section .service-features li i {
    color: #673de6 !important;
}

/* Buttons in Light Section */
.light-section .btn-secondary {
    background: #f4f3ff !important;
    color: #673de6 !important;
    border: 1px solid rgba(103, 61, 230, 0.15) !important;
}

.light-section .btn-secondary:hover {
    background: #e9e6ff !important;
    border-color: rgba(103, 61, 230, 0.3) !important;
    color: #673de6 !important;
}

/* Special section: Global SaaS Banner */
.global-saas-banner {
    background: #f4f3ff !important; /* Premium soft light purple */
    border-top: 1px solid rgba(103, 61, 230, 0.08) !important;
    border-bottom: 1px solid rgba(103, 61, 230, 0.08) !important;
    color: #5f5582 !important;
}

.global-saas-banner h2 {
    color: #0f072c !important;
}

.global-saas-banner p {
    color: #5f5582 !important;
}

/* Comparison Table (Light Theme) */
.light-section .comparison-table-wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.25) !important;
    box-shadow: 0 10px 40px rgba(103, 61, 230, 0.04) !important;
}

.light-section .comparison-table th {
    background-color: #f4f3ff !important;
    color: #0f072c !important;
    border-bottom: 2px solid rgba(103, 61, 230, 0.25) !important;
}

.light-section .comparison-table td {
    color: #5f5582 !important;
    border-bottom: 1px solid rgba(103, 61, 230, 0.2) !important;
}

.light-section .comparison-table tr:hover td {
    background-color: #f9f9ff !important;
}

.light-section .comparison-table .feature-name {
    color: #0f072c !important;
    font-weight: 600 !important;
}

.light-section .comparison-table .col-competitor {
    background-color: rgba(239, 68, 68, 0.015) !important;
    color: #4b5563 !important; /* Neutral dark gray for highly readable sentences */
}

.light-section .comparison-table .col-altra-it {
    background-color: rgba(103, 61, 230, 0.015) !important;
    color: #0f072c !important; /* Deep dark purple for perfect reading contrast */
    font-weight: 500 !important;
}

.light-section .comparison-table .competitor-icon {
    color: #ef4444 !important;
}

.light-section .comparison-table .altra-icon {
    color: #673de6 !important;
}

/* Case Study in Light Theme */
.light-section .case-study-box {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.08) !important;
    box-shadow: 0 15px 50px rgba(103, 61, 230, 0.04) !important;
}

.light-section .case-badge {
    background: rgba(103, 61, 230, 0.06) !important;
    color: #673de6 !important;
    border-color: rgba(103, 61, 230, 0.15) !important;
}

.light-section .case-title {
    color: #0f072c !important;
}

.light-section .case-steps {
    border-top: 1px solid rgba(103, 61, 230, 0.08) !important;
}

.light-section .step-num {
    background: linear-gradient(135deg, rgba(103, 61, 230, 0.05) 0%, rgba(222, 43, 151, 0.03) 100%) !important;
    color: #673de6 !important;
    border: 1px solid rgba(103, 61, 230, 0.15) !important;
}

.light-section .case-step h4 {
    color: #0f072c !important;
}

.light-section .case-step p {
    color: #5f5582 !important;
}

.light-section .case-results {
    border-top: 1px solid rgba(103, 61, 230, 0.08) !important;
}

.light-section .result-item h4 {
    color: #0f072c !important;
}

.light-section .result-item p {
    color: #5f5582 !important;
}

/* Custom white background for Case Study box inside dark section */
#case-study .case-study-box {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.15) !important;
    box-shadow: 0 25px 60px rgba(103, 61, 230, 0.1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#case-study .case-badge {
    background: rgba(103, 61, 230, 0.06) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(103, 61, 230, 0.15) !important;
}

#case-study .case-title {
    color: #0f072c !important;
}

#case-study .step-desc h4 {
    color: #0f072c !important;
}

#case-study .step-desc p {
    color: #5f5582 !important;
}

#case-study .case-study-stats {
    background: rgba(103, 61, 230, 0.01) !important;
    border-left: 1px solid rgba(103, 61, 230, 0.15) !important;
}

#case-study .case-stat-val {
    color: var(--primary) !important;
    text-shadow: none !important;
}

#case-study .case-stat-lbl {
    color: #5f5582 !important;
    font-weight: 500 !important;
}

/* Stats visibility overrides in light Hero Section */
.light-section .hero-stats {
    border-top-color: rgba(103, 61, 230, 0.15) !important;
}
.light-section .stat-number {
    color: #0f072c !important;
}
.light-section .stat-label {
    color: #5f5582 !important;
}

/* Subpage detailed intro containers */
.light-section .subpage-features-container {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.08) !important;
    box-shadow: 0 10px 40px rgba(103, 61, 230, 0.03) !important;
}

.light-section .feature-subcard-icon {
    background: rgba(103, 61, 230, 0.05) !important;
    color: #673de6 !important;
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
}

/* Multi-step Valuation/Contact Form in Light Section */
.light-section .contact-form-wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.08) !important;
    box-shadow: 0 20px 50px rgba(103, 61, 230, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.light-section .step-dot {
    background-color: #f4f3ff !important;
    border: 2px solid rgba(103, 61, 230, 0.1) !important;
    color: #5f5582 !important;
}

.light-section .step-dot.active {
    background-color: #673de6 !important;
    border-color: #673de6 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(103, 61, 230, 0.3) !important;
}

.light-section .step-dot.completed {
    background-color: #de2b97 !important;
    border-color: #de2b97 !important;
    color: #ffffff !important;
}

.light-section .form-step h3 {
    color: #0f072c !important;
}

.light-section .step-instruction {
    color: #5f5582 !important;
}

.light-section .option-card-content {
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
    background: #ffffff !important;
    color: #5f5582 !important;
}

.light-section .option-card-content h4 {
    color: #0f072c !important;
}

.light-section .option-card-content p {
    color: #5f5582 !important;
}

.light-section .option-card input[type="radio"]:checked + .option-card-content {
    border-color: #673de6 !important;
    background: rgba(103, 61, 230, 0.04) !important;
    box-shadow: 0 0 20px rgba(103, 61, 230, 0.08) !important;
}

.light-section .form-inputs-container label {
    color: #0f072c !important;
}

.light-section .form-inputs-container input,
.light-section .form-inputs-container textarea {
    background: #f4f3ff !important;
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
    color: #0f072c !important;
}

.light-section .form-inputs-container input:focus,
.light-section .form-inputs-container textarea:focus {
    border-color: #673de6 !important;
    background: #ffffff !important;
    box-shadow: 0 0 10px rgba(103, 61, 230, 0.1) !important;
}

.light-section .form-navigation .btn-prev {
    background: #f4f3ff !important;
    color: #5f5582 !important;
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
}

.light-section .form-navigation .btn-prev:hover {
    background: #e9e6ff !important;
}

.light-section .valuation-notice-box {
    background: rgba(245, 158, 11, 0.03) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.light-section .valuation-notice-content h4 {
    color: #0f072c !important;
}

.light-section .valuation-notice-content p {
    color: #5f5582 !important;
}

.light-section .contact-info h3 {
    color: #0f072c !important;
}

.light-section .contact-intro {
    color: #5f5582 !important;
}

.light-section .contact-item-icon {
    background: rgba(103, 61, 230, 0.05) !important;
    color: #673de6 !important;
    border: 1px solid rgba(103, 61, 230, 0.1) !important;
}

.light-section .contact-item h4 {
    color: #0f072c !important;
}

.light-section .contact-item p {
    color: #5f5582 !important;
}

.light-section .saas-service-features li {
    color: #5f5582 !important;
}

.light-section .saas-service-features li i {
    color: #673de6 !important;
}

.light-section .saas-service-price-box {
    border-left: 1px solid rgba(103, 61, 230, 0.08) !important;
}

@media (max-width: 1024px) {
    .light-section .saas-service-price-box {
        border-left: none !important;
        border-top: 1px solid rgba(103, 61, 230, 0.08) !important;
    }
}

.light-section .saas-price-num {
    color: #0f072c !important;
}

.light-section .saas-price-period {
    color: #5f5582 !important;
}


/* ==========================================================================
   16. Service Cards and Pricing Text Visibility inside Light Sections
   ========================================================================== */
.light-section .service-card h3,
.light-section .service-card h4,
.light-section .service-card .plan-name,
.light-section .service-card .price-num {
    color: #0f072c !important; /* Deep dark purple */
}

.light-section .service-card p,
.light-section .service-card .plan-subtitle,
.light-section .service-card span[style*="color: var(--text-muted)"],
.light-section .service-card span[style*="color:var(--text-muted)"] {
    color: #5f5582 !important; /* Elegant slate-purple */
}

.light-section .service-card ul,
.light-section .service-card li {
    color: #5f5582 !important; /* Elegant slate-purple */
}

.light-section .service-card li strong {
    color: #0f072c !important; /* Deep dark purple for emphasis */
}

/* Strikethrough items for unavailable features */
.light-section .service-card li[style*="line-through"] {
    color: rgba(95, 85, 130, 0.4) !important;
}

.light-section .service-card li[style*="line-through"] i {
    color: rgba(95, 85, 130, 0.3) !important;
}

/* Large prices in subpage cards (e.g., "39 zł", "99 zł", "249 zł") */
.light-section .service-card span[style*="font-size: 2.2rem"] {
    color: #0f072c !important;
}

/* Featured card stand-out style in light section */
.light-section .service-card[style*="border: 2px solid"],
.light-section .service-card[style*="border:2px solid"],
.light-section .service-card.featured {
    border: 2px solid #673de6 !important;
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(103, 61, 230, 0.1) !important;
}

/* Central Command / Roadmap Box at bottom of subpages */
.light-section div[style*="background: rgba(255, 255, 255, 0.01)"] {
    background: #ffffff !important;
    border: 1px solid rgba(103, 61, 230, 0.08) !important;
    box-shadow: 0 10px 40px rgba(103, 61, 230, 0.03) !important;
}

.light-section div[style*="background: rgba(255, 255, 255, 0.01)"] h3 {
    color: #0f072c !important;
}

.light-section div[style*="background: rgba(255, 255, 255, 0.01)"] p {
    color: #5f5582 !important;
}

/* Central Command terminal/code mockup block */
.light-section div[style*="background: rgba(12, 16, 22, 0.8)"] {
    background: #0f072c !important; /* Keep the terminal block dark for contrast! */
}

/* CTA box in light section */
.light-section div[style*="background: linear-gradient"] {
    background: #f4f3ff !important;
    border: 1px solid rgba(103, 61, 230, 0.08) !important;
    box-shadow: 0 10px 40px rgba(103, 61, 230, 0.03) !important;
}

.light-section div[style*="background: linear-gradient"] h3 {
    color: #0f072c !important;
}

.light-section div[style*="background: linear-gradient"] p {
    color: #5f5582 !important;
}

/* ==========================================================================
   17. Network Subpage (sieci.html) Rebuild & Timelines
   ========================================================================== */
.blueprint-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.blueprint-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f072c;
    margin-bottom: 20px;
}

.blueprint-steps {
    display: flex;
    flex-direction: column;
    gap: 120px; /* Highly spacious */
    position: relative;
}

.blueprint-step {
    background: #ffffff;
    border: 1px solid rgba(103, 61, 230, 0.08);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 20px 50px rgba(103, 61, 230, 0.02);
}

.blueprint-step-header {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(103, 61, 230, 0.08);
    padding-bottom: 30px;
}

.step-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.2);
}

.blueprint-step-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f072c;
    margin-bottom: 16px;
}

.blueprint-step-desc {
    color: #5f5582;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0;
}

/* Alternate Diagram Layout style */
.showcase-diagram-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    width: 100%;
}

.showcase-diagram-row:last-child {
    margin-bottom: 0;
}

.showcase-diagram-row.alt-row {
    flex-direction: row-reverse;
}

.showcase-image-container {
    width: 73%; /* 3/4 of the width */
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(103, 61, 230, 0.12);
    box-shadow: 0 20px 50px rgba(103, 61, 230, 0.06);
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition-normal);
}

.showcase-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(103, 61, 230, 0.12);
    border-color: rgba(103, 61, 230, 0.3);
}

.showcase-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.showcase-text-container {
    width: 27%;
    flex-grow: 1;
}

.showcase-text-container h4 {
    font-size: 1.5rem;
    color: #0f072c;
    font-weight: 800;
    margin-bottom: 12px;
}

.showcase-text-container p {
    font-size: 0.95rem;
    color: #5f5582;
    line-height: 1.6;
    margin-bottom: 24px;
}

.device-badge-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(103, 61, 230, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-badge-tag.premium-tag {
    color: var(--secondary);
    background: rgba(222, 43, 151, 0.05);
}

.blueprint-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.blueprint-bullet-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #5f5582;
    font-size: 0.92rem;
    line-height: 1.5;
}

.blueprint-bullet-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .showcase-diagram-row {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .showcase-diagram-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    .showcase-image-container {
        width: 100%;
    }
    .showcase-text-container {
        width: 100%;
    }
    .blueprint-step {
        padding: 40px 30px;
    }
}
