/* ==========================================================================
   WE CONSULT I.T. - Custom Style Sheet
   ========================================================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
    --color-bg-dark: #030712;      /* Deep midnight grey/black */
    --color-bg-dark-accent: #0f172a; /* Slate 900 for dark cards */
    --color-bg-light: #f8fafc;     /* Slate 50 for light sections */
    --color-primary: #1d4ed8;      /* Deep blue */
    --color-primary-glow: rgba(59, 130, 246, 0.4);
    --color-secondary: #0ea5e9;    /* Sky blue */
    --color-accent: #10b981;       /* Emerald Green */
    --color-purple: #6d28d9;       /* Purple for infra */
    --color-text-dark: #0f172a;    /* Muted dark text */
    --color-text-light: #f1f5f9;   /* Muted light text */
    --color-border-light: #e2e8f0;  /* Slate 200 */
    --color-border-dark: #1e293b;   /* Slate 800 */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Orbitron', monospace;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

/* --- Common Button System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-purple {
    background-color: var(--color-purple);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
}

.btn-purple:hover {
    background-color: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.6);
}

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--color-bg-dark);
    transform: translateY(-2px);
}

.btn-icon {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

.btn-icon-left {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    gap: 8px;
}

.link-arrow:hover {
    gap: 12px;
}

/* --- Layout Sections & Structure --- */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(3, 7, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-header.scrolled .site-logo img {
    height: 55px;
}

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

.site-logo img {
    height: 80px;
    width: auto;
    transition: var(--transition-smooth);
}

.site-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-item a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-item a:hover,
.menu-item.current-menu-item > a {
    color: #ffffff;
}

.menu-item.current-menu-item > a {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 4px;
}

.chevron-icon {
    width: 14px;
    height: 14px;
}

/* Submenu styling */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-dark-accent);
    min-width: 240px;
    list-style: none;
    border-radius: 6px;
    padding: 0.8rem 0;
    margin-top: 1rem;
    border: 1px solid var(--color-border-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    padding: 0.6rem 1.5rem;
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.sub-menu li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* --- Hero Section Styling --- */
.section-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.15), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05), transparent 50%),
                var(--color-bg-dark);
    padding-top: 160px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content .tagline {
    font-family: var(--font-mono);
    color: var(--color-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight-text {
    color: var(--color-secondary);
}

.hero-content .subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

/* Hero Dashboard Styling */
.hero-dashboard-wrapper {
    perspective: 1000px;
}

.dashboard-mockup {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 
                inset 0 1px 0 rgba(255,255,255,0.1),
                0 0 40px rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background-color: rgba(15, 23, 42, 0.8);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dashboard-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dashboard-header .dot.red { background-color: #ef4444; }
.dashboard-header .dot.yellow { background-color: #f59e0b; }
.dashboard-header .dot.green { background-color: #10b981; }

.dashboard-title {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-left: 10px;
    text-transform: uppercase;
}

.dashboard-body {
    padding: 20px;
}

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

.dashboard-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.chart-mini {
    height: 40px;
}

.chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.security-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

.security-shield-glow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    margin-bottom: 6px;
}

.shield-icon {
    width: 22px;
    height: 22px;
    color: #3b82f6;
}

.security-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.uptime-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
}

.circular-chart {
    max-width: 60px;
    max-height: 60px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: #10b981;
    stroke-width: 2.8;
    stroke-linecap: round;
}

.uptime-circle .percentage {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: #ffffff;
}

/* --- Hero Stats Banner --- */
.hero-stats-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 10;
}

.hero-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    background-color: var(--color-bg-dark-accent);
    border: 1px solid var(--color-border-dark);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.stat-item:not(:last-child) {
    border-right: 1px solid var(--color-border-dark);
}

.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.stat-icon-wrapper i {
    width: 20px;
    height: 20px;
}

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

.stat-value {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* --- Challenges Section --- */
.section-challenges {
    background-color: #ffffff;
    padding-top: 140px;
    padding-bottom: 80px;
}

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

.section-title-center {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 4rem;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.challenge-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: rgba(29, 78, 216, 0.15);
}

.challenge-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.challenge-icon-box i {
    width: 24px;
    height: 24px;
}

.challenge-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-dark);
}

.challenge-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* --- Solutions Section --- */
.section-solutions {
    background-color: var(--color-bg-light);
    padding: 100px 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

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

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.solution-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.solution-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(14, 165, 233, 0.08);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.solution-icon-box i {
    width: 22px;
    height: 22px;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.solution-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.55;
}

.solutions-footer-action {
    text-align: center;
}

/* --- Dual Column Sections --- */
.section-dual-solutions {
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
}

.dual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dual-column {
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hosting-col {
    background-color: #0b1329;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.infra-col {
    background-color: #020617;
}

.column-content {
    z-index: 5;
    margin-bottom: 2.5rem;
}

.dual-column h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.col-subtext {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    margin-bottom: 2.5rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.checklist .check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Checklist style for light sections */
.section-why-us .checklist li {
    color: var(--color-text-dark);
}

.section-why-us .checklist .check-icon {
    color: var(--color-primary);
}

/* Graphics Styling inside Columns */
.column-graphic {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS Server Graphic */
.server-graphic-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}

.server-rack {
    background-color: #1e293b;
    border: 2px solid #334155;
    border-radius: 6px;
    width: 180px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-slot {
    background-color: #0f172a;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: space-between;
}

.server-slot .slot-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #64748b;
}

.server-slot.active .slot-led {
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.server-slot.active .slot-led.blinking {
    animation: blink 1.2s infinite;
}

.server-slot.active .slot-led.blinking-alt {
    animation: blink 1.2s infinite 0.6s;
}

.server-slot .slot-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.cloud-glow {
    color: var(--color-secondary);
    animation: float 3s ease-in-out infinite;
}

.cloud-icon {
    width: 60px;
    height: 60px;
}

/* CSS AI Node Graphic */
.ai-node-container {
    position: relative;
    width: 240px;
    height: 160px;
}

.node {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 2px solid var(--color-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.4);
}

.node i {
    width: 16px;
    height: 16px;
}

.central-node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
}

.central-node i {
    width: 22px;
    height: 22px;
}

.child-node.node-1 { left: 10%; top: 20%; }
.child-node.node-2 { right: 10%; top: 25%; }
.child-node.node-3 { left: 40%; bottom: 10%; }

.node-connection {
    position: absolute;
    background-color: rgba(109, 40, 217, 0.2);
    z-index: 1;
    transform-origin: left center;
}

.connection-1 {
    width: 100px;
    height: 2px;
    left: 110px;
    top: 60px;
    transform: rotate(-140deg);
}

.connection-2 {
    width: 100px;
    height: 2px;
    left: 120px;
    top: 80px;
    transform: rotate(-25deg);
}

.connection-3 {
    width: 70px;
    height: 2px;
    left: 120px;
    top: 80px;
    transform: rotate(75deg);
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* --- Approach Section --- */
.section-approach {
    background-color: #ffffff;
    padding: 100px 0;
}

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

.section-subtitle-center {
    font-size: 1.15rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: -3rem auto 4rem;
}

.approach-steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

.approach-step-card {
    flex: 1;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.approach-step-card .step-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(29, 78, 216, 0.04);
    line-height: 1;
}

.step-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon-box i {
    width: 22px;
    height: 22px;
}

.approach-step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.approach-step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    border: 1px solid rgba(29, 78, 216, 0.1);
}

.step-arrow i {
    width: 20px;
    height: 20px;
}

/* --- Why Choose Us Section --- */
.section-why-us {
    background-color: var(--color-bg-light);
    padding: 100px 0;
    border-top: 1px solid var(--color-border-light);
}

.why-us-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.shield-badge-wrapper {
    margin-top: 3rem;
}

.glowing-shield {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

.glowing-shield .shield-icon {
    width: 44px;
    height: 44px;
}

.why-us-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.stat-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.stat-box-icon i {
    width: 20px;
    height: 20px;
}

.stat-box h3 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #64748b;
    font-size: 0.95rem;
}

/* --- Footer CTA Section --- */
.section-footer-cta {
    background: linear-gradient(135deg, #09132c 0%, #030712 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-title {
    color: #ffffff;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- Main Footer Styling --- */
.site-footer {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 0.8fr) 1.2fr;
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.85rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-brand .brand-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 260px;
}

.footer-brand img {
    height: 90px;
    width: auto;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}

.footer-contact ul li i {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: inherit;
}

.footer-contact ul li a:hover {
    color: #ffffff;
    padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

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

/* --- Responsive Adaptations (Mobile & Tablet) --- */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-container {
        gap: 2rem;
    }
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    .footer-column.footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats-banner {
        position: relative;
        transform: translateY(0);
        margin-top: 4rem;
    }
    .hero-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .dual-container {
        grid-template-columns: 1fr;
    }
    .hosting-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .approach-steps-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    /* Mobile Menu Toggle */
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-bg-dark-accent);
        border-left: 1px solid var(--color-border-dark);
        padding: 80px 40px;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .site-navigation.open {
        right: 0;
    }
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }
    .nav-menu .menu-item {
        width: 100%;
    }
    .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        background-color: rgba(0, 0, 0, 0.1);
        padding-left: 1rem;
        display: none;
    }
    .menu-item-has-children.active .sub-menu {
        display: block;
    }
    .header-cta {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats-container {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none !important;
    }
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .why-us-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-column.footer-contact {
        grid-column: span 1;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLING
   ========================================================================== */

.page-about-us {
    background-color: var(--color-bg-light);
}

/* --- About Hero Section --- */
.about-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.breadcrumbs a {
    color: inherit;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumb-sep {
    width: 12px;
    height: 12px;
}

.breadcrumbs .current {
    color: var(--color-secondary);
}

.about-tagline {
    font-family: var(--font-mono);
    color: var(--color-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

/* About Hero Stats Cards */
.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 16px;
}

.about-hero-stat-item .stat-icon {
    color: var(--color-secondary);
    display: flex;
    align-items: center;
}

.about-hero-stat-item .stat-icon i {
    width: 18px;
    height: 18px;
}

.about-hero-stat-item .stat-lbl {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
}

.about-hero-image img {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(59, 130, 246, 0.15);
}

/* --- Who We Are Section --- */
.about-who-we-are {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.about-who-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1.75rem;
}

.who-desc p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-primary-glow);
}

.who-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.who-stat-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.who-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(29, 78, 216, 0.1);
}

.stat-card-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.stat-card-icon i {
    width: 24px;
    height: 24px;
}

.stat-card-val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-card-lbl {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

/* --- Our Story (Timeline) Section --- */
.about-story-timeline {
    background-color: var(--color-bg-light);
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.story-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 4rem;
}

.story-desc p {
    color: #64748b;
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    padding-top: 10px;
}

.timeline-row::after {
    content: '';
    position: absolute;
    top: 35px; /* aligns to icon center */
    left: 40px;
    right: 40px;
    height: 2px;
    border-top: 2px dotted #cbd5e1;
    z-index: 1;
}

.timeline-node-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.node-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-bg-light);
    box-shadow: 0 0 10px rgba(29, 78, 216, 0.15);
}

.node-icon-box i {
    width: 18px;
    height: 18px;
}

.node-year {
    font-family: var(--font-mono);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.node-title {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.node-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 0 10px;
}

/* --- Core Values & Expertise Section --- */
.about-values-expertise {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.values-exp-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
}

.value-item-card {
    display: flex;
    flex-direction: column;
}

.value-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    width: 18px;
    height: 18px;
}

.value-item-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
}

.value-item-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
    padding-left: 2px;
}

/* Dark Expertise Block */
.expertise-column-block {
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.expertise-column-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
}

.expertise-block-content {
    position: relative;
    z-index: 5;
    margin-bottom: 2.5rem;
}

.exp-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.exp-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.exp-checklist {
    list-style: none;
}

.exp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.exp-checklist .check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.expertise-block-graphic {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.database-graphic-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 140px;
}

.db-layer {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    height: 28px;
    border-radius: 50% / 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 2px 2px rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.db-layer i {
    width: 14px;
    height: 14px;
}

.db-layer.active {
    background-color: rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), inset 0 2px 2px rgba(255,255,255,0.1);
}

/* --- About Approach Section --- */
.about-approach {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.about-approach-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-section-title-center {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.about-approach-steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.about-step-card-box {
    flex: 1;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 2.5rem 1.75rem;
    text-align: center;
}

.step-card-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-card-icon-box i {
    width: 20px;
    height: 20px;
}

.step-card-title {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.step-card-desc {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.5;
}

.step-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.step-flow-arrow i {
    width: 18px;
    height: 18px;
}

/* --- About Team CTA Section --- */
.about-team-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.team-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.team-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.team-cta-content {
    max-width: 600px;
    color: #ffffff;
}

.team-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.team-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
}

.team-cta-actions {
    display: flex;
    gap: 1rem;
}

/* --- Responsive styles for About page --- */
@media (max-width: 1200px) {
    .about-hero-container {
        gap: 2rem;
    }
    .about-hero-content h1 {
        font-size: 3rem;
    }
    .about-who-container {
        gap: 3rem;
    }
    .who-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-row::after {
        left: 20px;
        right: 20px;
    }
    .values-exp-container {
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .breadcrumbs {
        justify-content: center;
    }
    .about-hero-stats {
        justify-content: center;
    }
    .about-hero-image img {
        margin: 0 auto;
        max-width: 80%;
    }
    
    .about-who-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .about-who-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .who-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .timeline-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    .timeline-row::after {
        display: none;
    }
    .node-icon-box {
        margin-bottom: 1rem;
    }
    
    .values-exp-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-approach-steps-flow {
        flex-direction: column;
        gap: 2rem;
    }
    .step-flow-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
}

@media (max-width: 768px) {
    .who-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-cta-content {
        text-align: center;
    }
    .team-cta-actions {
        justify-content: center;
    }
    .team-photo-bg {
        background-image: linear-gradient(to bottom, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.85) 100%), url('<?php echo esc_url(get_template_directory_uri() . '/assets/images/team_photo.png'); ?>') !important;
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 2.25rem;
    }
    .who-stats-grid {
        grid-template-columns: 1fr;
    }
    .team-cta-content h2 {
        font-size: 2rem;
    }
    .team-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .team-cta-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   CASES / USE CASES PAGE STYLING
   ========================================================================== */

.page-cases {
    background-color: var(--color-bg-light);
}

/* --- Cases Hero Section --- */
.cases-hero {
    background: radial-gradient(circle at 75% 30%, rgba(29, 78, 216, 0.15), transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 85px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cases-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.cases-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cases-subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 620px;
    line-height: 1.6;
}

/* 3D Cube Graphic */
.cases-hero-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
}

.cube-3d-scene {
    width: 220px;
    height: 220px;
    perspective: 800px;
    position: relative;
}

.cube-3d {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 60px;
    left: 60px;
    transform-style: preserve-3d;
    animation: rotateCube 18s linear infinite;
}

.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(15, 23, 42, 0.75);
    border: 2px solid var(--color-primary);
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.5), 0 0 10px rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.cube-face i {
    width: 32px;
    height: 32px;
}

.cube-face.front  { transform: translateZ(50px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(50px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(50px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(50px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(50px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(50px); }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* Connector labels around cube */
.cube-connector {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    color: #ffffff;
    background-color: rgba(30, 41, 59, 0.85);
    border: 1px solid var(--color-border-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.cube-connector::before {
    content: '';
    position: absolute;
    background-color: var(--color-primary-glow);
}

.top-conn {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.left-conn {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}
.right-conn {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
.bottom-conn {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Filter Bar Section --- */
.cases-filter-bar {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.filter-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.filter-industry {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.filter-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-border-light);
    color: #64748b;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 2px 8px var(--color-primary-glow);
}

.filter-search {
    flex-shrink: 0;
    width: 280px;
    margin-top: 15px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border-radius: 6px;
    border: 1px solid var(--color-border-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    outline: none;
    transition: var(--transition-smooth);
}

.search-input-wrapper input:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.search-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #94a3b8;
}

/* --- Use Cases Grid Section --- */
.cases-grid-section {
    background-color: var(--color-bg-light);
    padding: 80px 0;
}

.cases-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.use-case-card-item {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.use-case-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.case-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-badge-category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Category-specific badging colors matching mockup */
.case-badge-category.hosting-msps { color: #10b981; }
.case-badge-category.infrastructure-devops { color: #3b82f6; }
.case-badge-category.ai-ml { color: #8b5cf6; }
.case-badge-category.applications { color: #6366f1; }
.case-badge-category.security { color: #f97316; }
.case-badge-category.databases { color: #0d9488; }
.case-badge-category.performance { color: #0ea5e9; }

.case-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.case-card-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-solution-box {
    background-color: var(--color-bg-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 6px 6px 0;
    padding: 1.2rem;
    margin-bottom: 2rem;
}

.case-solution-box .sol-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.case-solution-box .sol-desc {
    color: var(--color-text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Card Stats Banner */
.case-card-stats-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid var(--color-border-light);
    padding-top: 1.5rem;
    margin-top: auto;
}

.card-stat-node {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-node-icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.stat-node-icon i {
    width: 16px;
    height: 16px;
}

.stat-node-info {
    display: flex;
    flex-direction: column;
}

.stat-node-info .val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    line-height: 1.1;
}

.stat-node-info .lbl {
    font-size: 0.68rem;
    color: #94a3b8;
    margin-top: 1px;
    line-height: 1.2;
}

/* --- Approach & Outcomes Section --- */
.cases-approach-outcomes {
    background-color: #ffffff;
    padding: 100px 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.approach-outcomes-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
}

.approach-flow-col .section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 3.5rem;
}

.approach-flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.flow-step-box {
    flex: 1;
    text-align: center;
}

.flow-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.flow-step-icon i {
    width: 18px;
    height: 18px;
}

.flow-step-box h3 {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.flow-step-box p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.flow-step-divider {
    color: #94a3b8;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.flow-step-divider i {
    width: 16px;
    height: 16px;
}

/* Outcomes Glowing Card */
.outcomes-glowing-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-primary-glow);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.04);
}

.outcomes-glowing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.outcomes-checklist {
    list-style: none;
}

.outcomes-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.outcomes-checklist .check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Testimonials Section --- */
.cases-testimonials-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border-light);
}

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

.testimonials-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 3rem;
}

.testimonials-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-item {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-primary-glow);
    line-height: 1;
    margin-top: -20px;
    margin-bottom: -15px;
}

.quote-text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(29, 78, 216, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    width: 18px;
    height: 18px;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-meta .name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.author-meta .role {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1px;
}

.slider-dots-ui {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots-ui .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots-ui .dot.active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* --- Bottom CTA Section --- */
.cases-bottom-cta {
    background-color: #ffffff;
    padding: 80px 0;
}

.cta-banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-banner-card {
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
}

.cta-icon-glow {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.cta-robot-icon {
    width: 30px;
    height: 30px;
}

.cta-text-content {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.cta-text-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.cta-text-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

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

.btn-secondary-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* --- Responsive Adaptations for Cases page --- */
@media (max-width: 1200px) {
    .cases-hero-container {
        gap: 2rem;
    }
    .cases-hero-content h1 {
        font-size: 3rem;
    }
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-outcomes-container {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .cases-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cases-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cases-hero-graphic-wrapper {
        margin-top: 2rem;
    }
    .filter-bar-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .filter-search {
        width: 100%;
    }
    .approach-outcomes-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .approach-flow-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .flow-step-divider {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    .testimonials-slider-track {
        display: flex;
        gap: 0;
        grid-template-columns: none;
    }
    .testimonial-card-item {
        width: 100%;
        flex-shrink: 0;
    }
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
        gap: 2rem;
    }
    .cta-icon-glow {
        margin: 0 auto;
    }
    .cta-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cases-hero-content h1 {
        font-size: 2.25rem;
    }
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
    }
    .cta-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   SERVICES INDEX PAGE (.page-services)
   ========================================================================== */
.page-services {
    background-color: var(--color-bg-light);
}

.services-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.services-hero-content h1 .highlight-text {
    color: var(--color-secondary);
}

.services-subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Services Interactive Hexagon Graphic */
.services-hero-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-interactive-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-hexa-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hexa {
    position: absolute;
    width: 80px;
    height: 92px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.8rem;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
    transition: var(--transition-smooth);
    animation: floatHexa 6s ease-in-out infinite alternate;
}

.hexa:nth-child(1) { top: 20px; left: 110px; animation-delay: 0s; }
.hexa:nth-child(2) { top: 95px; left: 30px; animation-delay: 1s; }
.hexa:nth-child(3) { top: 95px; left: 190px; animation-delay: 2s; }
.hexa:nth-child(4) { top: 170px; left: 110px; animation-delay: 3s; }
.hexa:nth-child(5) { top: 95px; left: 110px; background: rgba(59, 130, 246, 0.1); border-color: var(--color-primary); color: #ffffff; animation-delay: 1.5s; }

.hexa.active, .hexa:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.4);
    transform: scale(1.05);
}

@keyframes floatHexa {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(2deg); }
}

/* Services Grid */
.services-grid-section {
    padding: 80px 0;
}

.services-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card-item {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card-item .card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.07);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card-item:hover .card-icon-box {
    background: var(--color-primary);
    color: #ffffff;
}

.service-card-item .card-body h3 {
    font-size: 1.35rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.service-card-item .card-body p {
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.learn-more-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.learn-more-link .arrow-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.learn-more-link:hover {
    color: var(--color-secondary);
}

.learn-more-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Custom CTA Block */
.services-custom-cta-section {
    padding: 20px 0 60px;
}

.custom-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.custom-cta-card {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 60%),
                var(--color-bg-dark-accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.custom-cta-card .cta-content {
    max-width: 60%;
}

.custom-cta-card .cta-tag {
    font-family: var(--font-mono);
    color: var(--color-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

.custom-cta-card h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.custom-cta-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.6;
}

.custom-cta-card .cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.custom-cta-card .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.custom-cta-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Services Approach Section */
.services-approach-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
}

.services-approach-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.services-approach-section .approach-steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 1rem;
}

.services-approach-section .approach-step-card {
    flex: 1;
    text-align: left;
    position: relative;
}

.services-approach-section .step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.services-approach-section .step-num {
    font-family: var(--font-mono);
    color: rgba(15, 23, 42, 0.15);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.services-approach-section .step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.services-approach-section .step-title {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.services-approach-section .step-desc {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.5;
}

.services-approach-section .step-connector {
    flex-grow: 1;
    height: 2px;
    background: rgba(15, 23, 42, 0.08);
    margin-top: 24px;
    position: relative;
}

.services-approach-section .step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(15, 23, 42, 0.15);
    border-right: 2px solid rgba(15, 23, 42, 0.15);
    transform: rotate(45deg);
}

/* ==========================================================================
   SERVICE DETAIL PAGE (.page-service-detail)
   ========================================================================== */
.page-service-detail {
    background-color: var(--color-bg-light);
}

.service-detail-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail-hero .hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-hero .hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.service-detail-hero .hero-content h1 .highlight-text {
    color: var(--color-secondary);
}

.service-detail-hero .tagline {
    font-family: var(--font-mono);
    color: var(--color-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.service-detail-hero .subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.service-detail-hero .hero-actions {
    display: flex;
    gap: 1rem;
}

.service-detail-hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.service-detail-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Laptop Mockup */
.hero-laptop-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.laptop-screen {
    background: #090d16;
    border: 12px solid #1e293b;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(59, 130, 246, 0.15);
    padding: 1rem;
    font-family: var(--font-mono);
    height: 250px;
    display: flex;
    flex-direction: column;
}

.laptop-screen-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.laptop-screen-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.laptop-screen-header .dot.red { background-color: #ef4444; }
.laptop-screen-header .dot.yellow { background-color: #f59e0b; }
.laptop-screen-header .dot.green { background-color: #10b981; }

.laptop-screen-header .screen-title {
    margin-left: 4px;
}

.laptop-screen-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.checklist-header .terminal-icon {
    width: 14px;
    height: 14px;
}

.console-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.console-checklist .check-icon {
    color: var(--color-accent);
    width: 14px;
    height: 14px;
}

.console-footer {
    margin-top: auto;
}

.blink-cursor {
    color: var(--color-accent);
    animation: blinkCursor 1s step-end infinite;
}

@keyframes blinkCursor {
    from, to { color: transparent }
    50% { color: var(--color-accent) }
}

.laptop-base {
    background: #334155;
    height: 14px;
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.base-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1e293b;
    border-radius: 0 0 4px 4px;
}

/* What We Do Section */
.detail-what-we-do-section {
    padding: 80px 0;
}

.detail-what-we-do-section .section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.detail-what-we-do-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.detail-what-we-do-section .section-desc-center {
    text-align: center;
    color: rgba(15, 23, 42, 0.65);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.sub-offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.offering-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.15);
}

.offering-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.offering-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.offering-card:hover .offering-icon-box {
    background: var(--color-primary);
    color: #ffffff;
}

.offering-header h3 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.25;
}

.offering-desc {
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.offering-checklist {
    list-style: none;
    border-top: 1px solid var(--color-border-light);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offering-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.75);
}

.offering-checklist .chk-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Detail Process Flow Section */
.detail-process-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.detail-process-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.detail-process-section .process-steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 1rem;
}

.detail-process-section .process-step-card {
    flex: 1;
    text-align: left;
}

.detail-process-section .step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.detail-process-section .step-num {
    font-family: var(--font-mono);
    color: rgba(15, 23, 42, 0.15);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.detail-process-section .step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.detail-process-section .step-title {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.detail-process-section .step-desc {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.5;
}

.detail-process-section .step-connector {
    flex-grow: 1;
    height: 2px;
    background: rgba(15, 23, 42, 0.08);
    margin-top: 24px;
    position: relative;
}

.detail-process-section .step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(15, 23, 42, 0.15);
    border-right: 2px solid rgba(15, 23, 42, 0.15);
    transform: rotate(45deg);
}

/* Split Layout Section */
.detail-split-section {
    padding: 80px 0;
}

.split-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.split-col-left h2 {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.split-left-desc {
    color: rgba(15, 23, 42, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.split-grid-points {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.grid-point-item {
    display: flex;
    gap: 1.25rem;
}

.grid-point-item .point-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.07);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.grid-point-item .point-body h3 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.grid-point-item .point-body p {
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.95rem;
    line-height: 1.5;
}

.split-col-right .scenarios-box {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.split-col-right .scenarios-box h2 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
}

.scenarios-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.scenarios-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.scenarios-list .scenario-icon {
    color: #ef4444;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Tech Stack Section */
.detail-tech-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    text-align: center;
}

.detail-tech-section h2 {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
}

.tech-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-logo-item {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.tech-logo-item:hover {
    background: var(--color-bg-dark-accent);
    color: #ffffff;
    border-color: var(--color-bg-dark-accent);
    transform: translateY(-2px);
}

/* Detail Bottom CTA */
.detail-bottom-cta-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.15), transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(109, 40, 217, 0.12), transparent 50%),
                var(--color-bg-dark);
    text-align: center;
    color: #ffffff;
}

.detail-bottom-cta-section .cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.detail-bottom-cta-section .cta-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.detail-bottom-cta-section .cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.detail-bottom-cta-section .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.detail-bottom-cta-section .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.detail-bottom-cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS FOR NEW PAGES
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sub-offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-approach-section .approach-steps-flow,
    .detail-process-section .process-steps-flow {
        flex-direction: column;
        gap: 3rem;
        align-items: stretch;
    }
    
    .services-approach-section .step-connector,
    .detail-process-section .step-connector {
        display: none;
    }
    
    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-hero-container,
    .service-detail-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .services-subheading,
    .service-detail-hero .subheading {
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-hero-content h1,
    .service-detail-hero .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .custom-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .custom-cta-card .cta-content {
        max-width: 100%;
    }
    
    .custom-cta-card .cta-actions {
        width: 100%;
        justify-content: center;
    }
    
    .detail-bottom-cta-section .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .sub-offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-cta-card .cta-actions,
    .service-detail-hero .hero-actions,
    .detail-bottom-cta-section .cta-actions {
        flex-direction: column;
    }
    
    .custom-cta-card .cta-actions .btn,
    .service-detail-hero .hero-actions .btn,
    .detail-bottom-cta-section .cta-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   FOR INFRASTRUCTURE & AI TEAMS PAGE (.page-infra-teams)
   ========================================================================== */
.page-infra-teams {
    background-color: var(--color-bg-light);
}

.infra-hero {
    background: radial-gradient(circle at 80% 20%, rgba(109, 40, 217, 0.1), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.infra-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.infra-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.infra-hero-content h1 .highlight-text {
    color: var(--color-secondary);
}

.infra-hero-content .subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.infra-hero-content .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.infra-hero-content .btn-secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.infra-hero-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Stats Row */
.infra-hero-stats {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.infra-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.infra-stat-item .stat-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.infra-stat-item .stat-lbl {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Server Rack 3D graphic */
.infra-hero-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.rack-3d-scene {
    position: relative;
    width: 100%;
    max-width: 380px;
    perspective: 1000px;
}

.rack-frame {
    background: #0b111e;
    border: 3px solid #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
                0 0 35px rgba(59, 130, 246, 0.15);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rack-led-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.rack-led-bar .led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.rack-led-bar .led.green { background-color: #10b981; }
.rack-led-bar .led.blue { background-color: #3b82f6; }

.rack-server {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    color: #ffffff;
    font-size: 0.75rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.rack-server:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.3);
}

.rack-server .led-dots {
    display: flex;
    gap: 4px;
}

.rack-server .led-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #334155;
}

.rack-server .led-dots .dot.active {
    background-color: #ef4444;
    animation: blinkLed 0.8s infinite alternate;
}

.rack-server:nth-child(even) .led-dots .dot.active {
    background-color: #10b981;
    animation-delay: 0.4s;
}

@keyframes blinkLed {
    from { opacity: 0.3 }
    to { opacity: 1 }
}

.rack-server .srv-label {
    opacity: 0.8;
}

.rack-legend {
    margin-top: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
}

.rack-legend .legend-header {
    display: block;
    color: var(--color-secondary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.rack-legend .legend-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* How We Help Section */
.infra-help-section {
    padding: 80px 0;
}

.infra-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.infra-help-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.infra-help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
}

.infra-help-card .card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.infra-help-card:hover .card-icon-wrapper {
    background: var(--color-primary);
    color: #ffffff;
}

.infra-help-card h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.infra-help-card p {
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Ecosystem Section */
.infra-eco-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
}

.infra-eco-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.infra-eco-tabs-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tabs-buttons-bar {
    display: flex;
    border-bottom: 1px solid var(--color-border-light);
    gap: 1.5rem;
}

.tab-toggle-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: rgba(15, 23, 42, 0.55);
    padding: 0.75rem 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-toggle-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-pane-content {
    display: none;
}

.tab-pane-content.active {
    display: block;
    animation: fadeInTab 0.4s ease;
}

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

.eco-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.eco-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.eco-checklist .check-icon {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tech-logo-cloud-wrapper {
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
    padding-top: 2rem;
}

.tech-logos-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-logos-flex .logo-tag {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-dark);
}

/* Where We Fit In Flowchart */
.where-fit-box {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.where-fit-box h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.flow-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-node {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.flow-node .node-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.flow-node .node-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.flow-node.highlight-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.flow-node.highlight-box .node-title {
    font-size: 1.05rem;
}

.flow-node.highlight-box .node-sub {
    color: rgba(255, 255, 255, 0.75);
}

.flow-connector {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
}

.flow-connector .connector-arrow {
    width: 16px;
    height: 16px;
}

.fit-footer-text {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Why Teams Partner & Models */
.infra-partner-models-section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border-light);
}

.partner-models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.partner-col h2, .models-col h2 {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
}

.partner-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.partner-checklist .icon-box-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.partner-checklist .chk-icon {
    width: 14px;
    height: 14px;
}

.partner-checklist .text-box {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.5;
}

.partner-checklist .text-box strong {
    color: var(--color-text-dark);
}

.models-list-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.model-row-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.model-row-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.model-row-card .model-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.model-row-card h3 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 2px;
}

.model-row-card p {
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Bottom CTA Banner */
.infra-bottom-cta {
    padding: 40px 0 80px;
}

.infra-bottom-cta .cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-box-content {
    background: radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.15), transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(109, 40, 217, 0.12), transparent 50%),
                var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-box-content .cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.headphones-glowing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

.cta-box-content .text h2 {
    color: #ffffff;
    font-size: 1.85rem;
    margin-bottom: 6px;
}

.cta-box-content .text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.cta-box-content .cta-right {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-box-content .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.cta-box-content .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   HOW WE WORK PAGE (.page-how-we-work)
   ========================================================================== */
.page-how-we-work {
    background-color: var(--color-bg-light);
}

.work-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.work-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.work-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.work-hero-content h1 .highlight-text {
    color: var(--color-secondary);
}

.work-hero-content .subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.work-hero-bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.bullet-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-stat-card .b-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.bullet-stat-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Orbit Graphic Scene */
.work-hero-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-diagram-scene {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, var(--color-primary), #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    z-index: 10;
}

.orbit-center .center-text {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.3;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(59, 130, 246, 0.2);
    border-radius: 50%;
}

.orbit-ring.ring-1 {
    width: 170px;
    height: 170px;
    animation: rotateOrbit 12s linear infinite;
}

.orbit-ring.ring-2 {
    width: 230px;
    height: 230px;
    animation: rotateOrbit 20s linear infinite reverse;
}

.orbit-ring.ring-3 {
    width: 290px;
    height: 290px;
    animation: rotateOrbit 28s linear infinite;
}

.orbit-node {
    position: absolute;
    background: #0f172a;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
    transition: var(--transition-smooth);
}

.orbit-node .node-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.65rem;
}

.node-people {
    top: -15px;
    left: 55px;
    width: 55px;
    height: 55px;
}

.node-process {
    top: 25px;
    left: -15px;
    width: 65px;
    height: 65px;
    border-color: var(--color-accent);
}

.node-tech {
    bottom: 25px;
    right: -15px;
    width: 75px;
    height: 75px;
    border-color: var(--color-primary);
}

.node-perf {
    bottom: -20px;
    left: 100px;
    width: 80px;
    height: 80px;
    border-color: var(--color-purple);
}

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Stop internal titles from spinning */
.orbit-node .node-title {
    display: inline-block;
    animation: counterRotate 12s linear infinite;
}
.orbit-ring.ring-1 .node-title { animation-duration: 12s; }
.orbit-ring.ring-2 .node-title { animation-duration: 20s; animation-direction: reverse; }
.orbit-ring.ring-3 .node-title { animation-duration: 28s; }

@keyframes counterRotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Proven Process Timeline */
.work-process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.work-process-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 0.5rem;
}

.process-node-card {
    flex: 1;
    text-align: left;
}

.process-node-card .node-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.process-node-card .step-num {
    font-family: var(--font-mono);
    color: rgba(15, 23, 42, 0.1);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.process-node-card .step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.process-node-card .step-title {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.process-node-card .step-desc {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.5;
}

.work-process-section .step-connector {
    flex-grow: 1;
    color: rgba(15, 23, 42, 0.15);
    margin-top: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.work-process-section .step-connector .connector-arrow {
    width: 20px;
    height: 20px;
}

/* Engagement Models Section */
.work-models-section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border-light);
}

.work-models-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 4rem;
    text-align: center;
}

.work-models-section .models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.work-models-section .model-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.work-models-section .model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.15);
}

.work-models-section .model-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.work-models-section .model-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.work-models-section .model-card:hover .model-icon-box {
    background: var(--color-primary);
    color: #ffffff;
}

.work-models-section .model-header h3 {
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.work-models-section .model-desc {
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.work-models-section .model-checklist {
    list-style: none;
    border-top: 1px solid var(--color-border-light);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.work-models-section .model-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.75);
}

.work-models-section .model-checklist .chk-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Tools Section */
.work-tools-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
}

.work-tools-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.work-tools-section .section-desc-center {
    text-align: center;
    color: rgba(15, 23, 42, 0.65);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.tools-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.tool-logo-item {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.tool-logo-item:hover {
    background: var(--color-bg-dark-accent);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: var(--color-bg-dark-accent);
}

.tool-logo-item .logo-icon {
    font-size: 1.75rem;
}

.tool-logo-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Trust section mini cards */
.work-trust-section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border-light);
}

.work-trust-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.trust-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-mini-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.03);
    border-color: rgba(59, 130, 246, 0.15);
}

.trust-mini-card .mini-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.trust-mini-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.trust-mini-card p {
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Bottom CTA work page */
.work-bottom-cta {
    padding: 40px 0 80px;
}

.work-bottom-cta .cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.glowing-gear-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.1);
    color: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.2);
    animation: rotateGear 10s linear infinite;
}

@keyframes rotateGear {
    from { transform: rotate(0deg) }
    to { transform: rotate(360deg) }
}

/* ==========================================================================
   INSIGHTS PAGE (.page-insights)
   ========================================================================== */
.page-insights {
    background-color: var(--color-bg-light);
}

.insights-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.insights-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.insights-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.insights-hero-content h1 .highlight-text {
    color: var(--color-secondary);
}

.insights-hero-content .subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.insights-hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-bullet-item .bullet-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.hero-bullet-item .bullet-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.4;
}

.hero-bullet-item .bullet-text strong {
    color: #ffffff;
}

/* Laptop Analytics display */
.laptop-mockup-analytics {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.laptop-mockup-analytics .laptop-screen {
    background: #090d16;
    border: 12px solid #1e293b;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(59, 130, 246, 0.15);
    padding: 1rem;
    font-family: var(--font-mono);
    height: 250px;
    display: flex;
    flex-direction: column;
}

.laptop-mockup-analytics .screen-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.laptop-mockup-analytics .screen-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.laptop-mockup-analytics .screen-header .dot.red { background-color: #ef4444; }
.laptop-mockup-analytics .screen-header .dot.yellow { background-color: #f59e0b; }
.laptop-mockup-analytics .screen-header .dot.green { background-color: #10b981; }

.laptop-mockup-analytics .screen-title {
    margin-left: 4px;
}

.laptop-mockup-analytics .screen-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.laptop-mockup-analytics .chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.laptop-mockup-analytics .chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.laptop-mockup-analytics .chart-status {
    color: var(--color-accent);
}

.laptop-mockup-analytics .chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 90px;
    padding-top: 10px;
}

.laptop-mockup-analytics .bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 15%;
}

.laptop-mockup-analytics .bar-fill {
    width: 100%;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    height: 0;
    transition: height 1s ease;
}

.laptop-mockup-analytics .bar-fill.active {
    background-color: var(--color-secondary);
}

.laptop-mockup-analytics .bar-col span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.laptop-mockup-analytics .laptop-base {
    background: #334155;
    height: 14px;
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.laptop-mockup-analytics .base-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1e293b;
    border-radius: 0 0 4px 4px;
}

/* Search and Filter Bar */
.insights-filter-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.insights-filter-section .section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.filter-search-box {
    position: relative;
    flex-grow: 1;
    max-width: 600px;
}

.filter-search-box .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(15, 23, 42, 0.4);
}

.filter-search-box input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.filter-search-box input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.filter-dropdown-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-dropdown-box label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.filter-dropdown-box select {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    padding: 0.75rem 2rem 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Featured Insights Section */
.insights-featured-section {
    padding: 80px 0;
}

.insights-featured-section .section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.insights-featured-section .section-title {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
}

.featured-insights-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.featured-card-left {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.featured-card-left:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.featured-image-box {
    position: relative;
    height: 320px;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.25), transparent 70%),
                #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder-graphic {
    color: rgba(59, 130, 246, 0.2);
    font-size: 4rem;
}

.img-placeholder-graphic .bg-graphic-icon {
    width: 80px;
    height: 80px;
}

.featured-image-box .cat-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.featured-image-box .cat-tag.featured-tag {
    background: var(--color-accent);
    left: auto;
    right: 1.5rem;
}

.featured-content {
    padding: 2.5rem;
}

.featured-content h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content h3 a {
    color: var(--color-text-dark);
}

.featured-content h3 a:hover {
    color: var(--color-primary);
}

.featured-content p {
    color: rgba(15, 23, 42, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.5);
    font-family: var(--font-heading);
    font-weight: 500;
}

.post-meta-row .author {
    color: var(--color-text-dark);
}

/* Sidebar List */
.sidebar-list-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-post-item {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.sidebar-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border-color: rgba(59, 130, 246, 0.1);
}

.cat-tag-small {
    display: inline-block;
    color: var(--color-secondary);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sidebar-post-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.sidebar-post-item h4 a {
    color: var(--color-text-dark);
}

.sidebar-post-item h4 a:hover {
    color: var(--color-primary);
}

.sidebar-post-item .meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(15, 23, 42, 0.5);
}

/* Latest Insights Section */
.insights-latest-section {
    padding: 60px 0 80px;
    border-top: 1px solid var(--color-border-light);
}

.insights-latest-section .section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.insights-latest-section .section-title {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
}

.latest-insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.insight-card-item {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.insight-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
}

.insight-card-item .card-image-box {
    position: relative;
    height: 160px;
    background: radial-gradient(circle at 50% 50%, rgba(109, 40, 217, 0.2), transparent 70%),
                #0f172a;
}

.insight-card-item:nth-child(even) .card-image-box {
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.2), transparent 70%),
                #0f172a;
}

.insight-card-item .card-image-box .cat-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}

.insight-card-item .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-card-item .card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-card-item .card-body h3 a {
    color: var(--color-text-dark);
}

.insight-card-item .card-body h3 a:hover {
    color: var(--color-primary);
}

.insight-card-item .card-body p {
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.insight-card-item .card-meta {
    font-size: 0.8rem;
    color: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Newsletter Subscription */
.insights-newsletter-section {
    padding: 40px 0 80px;
}

.insights-newsletter-section .section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-card {
    background: radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.15), transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(109, 40, 217, 0.12), transparent 50%),
                var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.envelope-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.15);
}

.newsletter-left .text h2 {
    color: #ffffff;
    font-size: 1.85rem;
    margin-bottom: 6px;
}

.newsletter-left .text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 450px;
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    flex-grow: 1;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-right .privacy-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   FOR HOSTING COMPANIES PAGE (.page-hosting-partners)
   ========================================================================== */
.page-hosting-partners {
    background-color: var(--color-bg-light);
}

.hosting-hero {
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1), transparent 55%),
                radial-gradient(circle at 10% 70%, rgba(14, 165, 233, 0.05), transparent 45%),
                var(--color-bg-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hosting-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hosting-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hosting-hero-content h1 .highlight-text {
    color: var(--color-accent);
}

.hosting-hero-content .subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Vertical checklist */
.hosting-hero-content .hosting-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.hosting-hero-content .hosting-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.hosting-hero-content .hosting-checklist .check-icon {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.hosting-hero-content .hero-actions {
    display: flex;
    gap: 1rem;
}

.hosting-hero-content .btn-secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.hosting-hero-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* NOC monitor console graphic */
.hosting-hero-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.noc-monitor-scene {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.monitor-screen {
    background: #090d16;
    border: 3px solid #1e293b;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(16, 185, 129, 0.1);
    padding: 1.25rem;
    font-family: var(--font-mono);
}

.monitor-screen.big-screen {
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

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

.pulse-status.active {
    animation: pulseGlow 1.2s infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0.4 }
    to { opacity: 1 }
}

.monitor-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
}

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

.uptime-stat .uptime-val {
    color: var(--color-accent);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.uptime-stat .uptime-lbl {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    margin-top: 4px;
}

.monitor-content .bar-chart-mini {
    display: flex;
    gap: 6px;
    height: 60px;
    align-items: flex-end;
    width: 100px;
}

.monitor-content .bar-chart-mini .bar {
    width: 14px;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 1px;
}

.monitor-content .bar-chart-mini .bar.active {
    background-color: var(--color-accent);
}

.monitor-bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.monitor-screen.small-screen {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.monitor-screen.small-screen .label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.monitor-screen.small-screen .value {
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.monitor-screen.small-screen .value.green { color: var(--color-accent); }
.monitor-screen.small-screen .value.blue { color: var(--color-secondary); }

.monitor-screen.small-screen .value .val-icon {
    width: 14px;
    height: 14px;
}

/* Challenges section */
.hosting-challenges-section {
    padding: 80px 0;
}

/* How We Help Section */
.hosting-help-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
}

.hosting-help-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.help-graphic-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-cloud-graphic {
    position: relative;
    width: 280px;
    height: 200px;
}

.server-cloud-graphic .cloud-glow {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.08);
}

.server-cloud-graphic .cloud-glow i {
    width: 140px;
    height: 140px;
}

.server-nodes {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.server-nodes .node {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #0f172a;
    border: 1px solid var(--color-border-dark);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.server-nodes .node:nth-child(2) {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.connecting-paths {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
}

.connecting-paths .path {
    position: absolute;
    height: 2px;
    background: dashed rgba(59, 130, 246, 0.25);
}

.connecting-paths .path-1 {
    top: 0;
    left: 50px;
    width: 100px;
    transform: rotate(35deg);
    transform-origin: 0 0;
}

.connecting-paths .path-2 {
    top: 0;
    right: 50px;
    width: 100px;
    transform: rotate(-35deg);
    transform-origin: 100% 0;
}

.help-content-col h2 {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.help-content-col .col-subtitle {
    font-size: 1.05rem;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.help-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.help-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.help-checklist .check-icon {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.help-checklist .text-box {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.5;
}

.help-checklist .text-box strong {
    color: var(--color-text-dark);
}

/* Services section */
.hosting-services-section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border-light);
}

.services-footer-link {
    margin-top: 3.5rem;
    text-align: center;
}

/* Stats Section */
.hosting-why-section {
    padding: 80px 0;
    background-color: var(--color-bg-dark-accent);
    color: #ffffff;
}

.hosting-why-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.hosting-why-section .stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    transition: var(--transition-smooth);
}

.hosting-why-section .stat-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hosting-why-section .stat-icon-wrapper {
    color: var(--color-accent);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.hosting-why-section .stat-box h3 {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.hosting-why-section .stat-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Models Section hosting */
.hosting-models-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.hosting-models-section .section-title-center {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 4rem;
    text-align: center;
}

.hosting-models-section .models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.model-column-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.model-column-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.15);
}

.model-column-card .model-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1.5rem;
}

.model-column-card h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.model-column-card p {
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hosting-models-section .models-subtext {
    text-align: center;
    margin-top: 3.5rem;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.5);
}

/* Logos Section */
.hosting-logos-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.hosting-logos-section .section-title-center {
    font-size: 1.25rem;
    color: rgba(15, 23, 42, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3rem;
}

.logo-cloud-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.25);
    transition: var(--transition-smooth);
    cursor: default;
}

.brand-item:hover {
    color: var(--color-text-dark);
}

/* Bottom CTA hosting */
.hosting-bottom-cta {
    padding: 40px 0 80px;
}

.hosting-bottom-cta .cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.handshake-glowing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN RULES FOR NEW PAGES
   ========================================================================== */
@media (max-width: 1024px) {
    .infra-help-grid,
    .tools-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hosting-why-section .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .featured-insights-layout {
        grid-template-columns: 1fr;
    }
    
    .latest-insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .infra-hero-container,
    .work-hero-container,
    .insights-hero-container,
    .hosting-hero-container,
    .infra-eco-layout,
    .partner-models-grid,
    .hosting-help-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .infra-hero-content .subheading,
    .work-hero-content .subheading,
    .insights-hero-content .subheading,
    .hosting-hero-content .subheading,
    .help-content-col .col-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .infra-hero-content h1,
    .work-hero-content h1,
    .insights-hero-content h1,
    .hosting-hero-content h1 {
        font-size: 2.75rem;
    }
    
    .infra-hero-content .hero-actions,
    .hosting-hero-content .hero-actions {
        justify-content: center;
    }
    
    .infra-hero-stats,
    .work-hero-bullets-grid,
    .insights-hero-bullets,
    .hosting-hero-content .hosting-checklist {
        justify-content: center;
        grid-template-columns: 1fr 1fr;
    }
    
    .eco-checklist {
        grid-template-columns: 1fr;
    }
    
    .cta-box-content,
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .cta-box-content .cta-left,
    .newsletter-left {
        flex-direction: column;
    }
    
    .cta-box-content .cta-right,
    .newsletter-right {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .infra-help-grid,
    .tools-logo-grid,
    .trust-cards-row,
    .hosting-why-section .stats-grid,
    .latest-insights-grid {
        grid-template-columns: 1fr;
    }
    
    .infra-hero-stats,
    .work-hero-bullets-grid,
    .insights-hero-bullets,
    .hosting-hero-content .hosting-checklist {
        grid-template-columns: 1fr;
    }
    
    .cta-box-content .cta-right,
    .newsletter-form,
    .detail-bottom-cta-section .cta-actions {
        flex-direction: column;
    }
    
    .cta-box-content .cta-right .btn,
    .newsletter-form .btn,
    .newsletter-form input {
        width: 100%;
    }
}

