:root {
    /* Premium Monochrome Palette */
    --c-bg: #ffffff;
    --c-fg: #000000;
    --c-sub: #0a0a0a;
    --c-muted: #555555;
    --c-border: #eeeeee;
    --c-ghost: #f9f9f9;
    
    /* Architectural Spacing */
    --s-base: 8px;
    --s-xs: 8px;
    --s-sm: 16px;
    --s-md: 32px;
    --s-lg: 64px;
    --s-xl: 96px;
    --s-2xl: 128px;
    
    /* Layout */
    --container-tight: 800px;
    --container-standard: 1200px;
    --container-wide: 1440px;
    
    /* Typography - Elite Range */
    --f-h: 'Poppins', sans-serif;
    --f-b: 'Inter', sans-serif;
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --c-success: #00ff41; 
    --c-accent-v: #fb00ff;
}

@property --num {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

@keyframes count-up {
  from { --num: 0; }
  to { --num: 99; }
}

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

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0px var(--c-success); }
    50% { transform: scale(1.5); opacity: 0.5; box-shadow: 0 0 20px var(--c-success); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0px var(--c-success); }
}

.counter-99::after {
  content: counter(num);
  counter-reset: num var(--num);
  animation: count-up 3s var(--ease) forwards;
}

.animate-growth {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash-grow 2.5s 0.5s var(--ease) forwards;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--c-success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,65,0.05), transparent);
    animation: scan 4s linear infinite;
    pointer-events: none;
}

.animate-dash-fast {
    stroke-dasharray: 20, 20;
    animation: dash-move 2s linear infinite;
}

@keyframes dash-move {
    from { stroke-dashoffset: 40; }
    to { stroke-dashoffset: 0; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--c-bg);
    color: var(--c-fg);
    font-family: var(--f-b);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Architectural Grid Lines */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 50%; width: 1px; height: 100%;
    background: var(--c-border);
    z-index: -1;
    transform: translateX(-50%);
}

.container { width: 100%; max-width: var(--container-standard); margin: 0 auto; padding: 0 40px; }
.container-tight { max-width: var(--container-tight); }
.container-wide { max-width: var(--container-wide); }

.section {
    padding: var(--s-2xl) 0;
    border-bottom: 1px solid var(--c-border);
    position: relative;
}

/* Typography Perfection */
h1, h2, h3, h4 { font-family: var(--f-h); text-align: left; line-height: 1; color: var(--c-sub); }
h1 { font-weight: 950 !important; font-size: clamp(2rem, 8vw, 4.5rem); letter-spacing: -3px; line-height: 0.85; }
h2 { font-weight: 800; font-size: clamp(1.75rem, 6vw, 3rem); letter-spacing: -1.5px; }
h3 { font-weight: 700; font-size: clamp(1.1rem, 4vw, 1.5rem); letter-spacing: -0.5px; }

p { font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem); color: var(--c-muted); max-width: 65ch; text-align: left; }
.label { font-size: 0.65rem; font-weight: 950; text-transform: uppercase; letter-spacing: 3px; color: var(--c-muted); margin-bottom: 24px; display: block; opacity: 0.6; }
.lead { font-size: clamp(1.1rem, 3vw, 1.4rem); color: var(--c-sub); font-weight: 500; line-height: 1.3; }

/* Grid Utilities */
.grid { display: grid; gap: var(--s-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Header Perfection */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
}

.header-inner {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-family: var(--f-h); font-size: 1.5rem; font-weight: 950; letter-spacing: -1px; text-decoration: none; color: var(--c-fg); }

.header-phone { font-family: var(--f-h); font-size: 1.2rem; font-weight: 700; text-decoration: none; color: var(--c-fg); }

@media (max-width: 768px) {
    .header-phone { font-size: 0.9rem; }
    .logo { font-size: 1.25rem; }
}

/* Navigation */
.nav-list { display: flex; gap: 40px; }
.nav-link { 
    text-decoration: none; 
    color: var(--c-fg); 
    font-weight: 600; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.nav-link:hover { border-bottom-color: var(--c-fg); }

/* Buttons */
.btn {
    display: inline-flex;
    padding: 20px 56px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--ease);
    cursor: pointer;
    border: none;
}

.btn-black { background: var(--c-sub); color: var(--c-bg); }
.btn-black:hover { opacity: 0.8; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--c-sub); border: 2px solid var(--c-sub); }
.btn-outline:hover { background: var(--c-sub); color: var(--c-bg); }

/* Elite Studio Cards */
.card-studio {
    padding: var(--s-lg);
    border: 1px solid var(--c-border);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-studio:hover {
    border-color: var(--c-sub);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

/* Background Utility */
.bg-sub { background: var(--c-sub); color: var(--c-bg); }
.bg-sub h1, .bg-sub h2, .bg-sub h3, .bg-sub p { color: white !important; }
.bg-sub .lead, .bg-sub .lead-muted { color: white !important; opacity: 0.9; }

/* Separator */
.sep { height: 1px; background: var(--c-border); margin: var(--s-lg) 0; }

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s var(--ease);
}

[data-aos].active {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    background: #000;
    padding: 32px 0;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 64px;
    align-items: center;
}

.marquee-item {
    font-family: var(--f-h);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item span {
    color: #FFD700; /* Yellow accent */
}

/* Mobile Adjustments - Professional Scaling */
@media (max-width: 1200px) {
    .container { max-width: 100%; }
    .grid-2 { gap: 64px; }
}

@media (max-width: 1024px) {
    :root {
        --s-2xl: 80px;
        --s-xl: 64px;
        --s-lg: 48px;
    }
    .container { padding: 0 32px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
    .header-inner { height: 72px; }
    .nav-list { display: none; }
}

@media (max-width: 768px) {
    .section { padding: var(--s-xl) 0; }
    .btn { width: 100%; justify-content: center; padding: 18px 32px; }
    .hero { text-align: left; }
    .hero .grid-2 { gap: 48px; }
}

@media (max-width: 480px) {
    :root {
        --s-2xl: 64px;
        --s-xl: 48px;
        --s-lg: 32px;
    }
    .container { padding: 0 20px; }
    h1 { font-size: 2.25rem; }
    .header-inner { height: 64px; }
}
/* Solutions Section Elite Styling */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--c-border);
}

.solution-column {
    padding: var(--s-lg);
    border-right: 1px solid var(--c-border);
    transition: var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.solution-column:last-child {
    border-right: none;
}

.solution-column:hover {
    background: var(--c-ghost);
}

.solution-column h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -4px;
    line-height: 1;
}

.solution-column .solution-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.solution-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
}

.solution-column:hover .solution-arrow {
    background: var(--c-fg);
    color: var(--c-bg);
}

@media (max-width: 768px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-column { border-right: none; border-bottom: 1px solid var(--c-border); min-height: 300px; }
}
/* Standardized Typography Scale */
h2.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 32px;
    font-weight: 800;
}

h2.section-title.light { color: #fff; }

.lead-muted { opacity: 0.8; margin-bottom: 40px; color: #0a0a0a; }

/* Dashboard & Engineering Visuals */
.dash-container {
    background: #000;
    color: white;
    padding: clamp(32px, 6vw, 64px);
    position: relative;
    overflow: hidden;
    min-height: 580px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 60px 120px rgba(0,0,0,0.6);
    width: 100%;
    box-sizing: border-box;
}

.dash-container-compact {
    background: #000;
    color: white;
    padding: clamp(32px, 5vw, 48px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    width: 100%;
    box-sizing: border-box;
}

.dash-container-compact .dash-header {
    margin-bottom: 40px;
}

.dash-container-compact .dash-counter-container {
    margin-bottom: 40px;
}

.dash-container-compact .dash-counter-value {
    font-size: clamp(3rem, 8vw, 5rem);
}

.cluster-visual {
    background: #000;
    color: #fff;
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.node-card {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    text-align: center;
    position: relative;
}

.node-label {
    display: block;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 900;
}

.progress-bar-bg {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--c-success);
}

/* Philosophy Watermark */
.philosophy-section {
    background: var(--c-sub);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.watermark-08 {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40rem;
    font-weight: 950;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

/* Expert Grid */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expert-card {
    padding: 32px;
    background: var(--c-ghost);
    border: 1px solid var(--c-border);
}

.expert-card h4 {
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.expert-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--c-muted);
}

/* Performance Card - Modern Speedometer Design */
.performance-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    background: var(--c-fg);
    border: 1px solid var(--c-border);
    width: 100%;
}

/* Map & Presence */
.perf-metrics-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.metric-item {
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
}

.metric-item.highlight {
    background: rgba(0,255,65,0.15);
    position: relative;
    border: 1px solid rgba(0,255,65,0.3);
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--c-white);
    line-height: 1;
}

.metric-item.highlight .metric-value {
    color: var(--c-success);
}

.metric-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
}

/* Footer Loading Simulation */
.perf-footer {
    position: relative;
    z-index: 1;
}

.loading-simulation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid rgba(0,255,65,0.2);
}

.load-dot {
    width: 6px;
    height: 6px;
    background: rgba(0,255,65,0.4);
    border-radius: 50%;
    animation: loadBounce 1.4s ease-in-out infinite;
}

.load-dot:nth-child(1) { animation-delay: 0s; }
.load-dot:nth-child(2) { animation-delay: 0.2s; }
.load-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; background: var(--c-success); }
}

.load-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    margin-left: 8px;
}

/* Map & Presence */
.map-visual {
    height: 400px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-label-group {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

/* Workflow Delivery Sidebar */
.delivery-sidebar {
    background: var(--c-sub);
    color: white;
    padding: 48px;
    border-radius: 4px;
    position: sticky;
    top: 120px;
}

.stage-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 24px;
}

.stage-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
}

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

.stage-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.stage-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

/* FAQ Details Refinement */
.faq-details {
    border: 1px solid var(--c-border);
    padding: 24px;
    cursor: pointer;
    transition: var(--ease);
}

.faq-details:hover {
    background: var(--c-ghost);
}

.bg-sub .faq-details:hover {
    background: rgba(255,255,255,0.05);
}

.bg-sub .faq-details summary {
    color: white;
}

.bg-sub .faq-details p {
    color: rgba(255,255,255,0.7);
}

.faq-details summary {
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-details p {
    margin-top: 16px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Global Grid Utilities */
.items-center { align-items: center; }
.items-start { align-items: start; }
.gap-120 { gap: 120px; }
.gap-100 { gap: 100px; }
.gap-80 { gap: 80px; }
.gap-64 { gap: 64px; }
.gap-40 { gap: 40px; }
.gap-32 { gap: 32px; }
.gap-24 { gap: 24px; }

/* Stats Reusable */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stats-card { text-align: center; padding: 32px; background: #ffffff; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.2); color: #0a0a0a; }
.stats-number { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1.2; color: #0a0a0a; }
.stats-label { font-size: 0.65rem; font-weight: 800; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; color: #0a0a0a; }

/* Geography & Cities */
.bg-dark { background: #000; color: #fff; border-bottom: none; }
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.city-item { display: flex; align-items: center; gap: 16px; }
.city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); }
.city-name { font-weight: 800; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

/* Branding Wall */
.branding-wall { padding: 80px 0; background: var(--c-ghost); border-bottom: none; }
.branding-flex { display: flex; justify-content: space-between; align-items: center; opacity: 0.25; filter: grayscale(1); flex-wrap: wrap; gap: 16px; }
.branding-item { font-weight: 950; letter-spacing: 8px; font-size: 0.9rem; }

/* Portfolio & Pricing Refinements */
.flex-between-end { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.portfolio-card { height: 550px; padding: 0; overflow: hidden; }
.portfolio-placeholder { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }
.pricing-card-dark { background: #000; color: #fff; }
.pricing-card-dark h3, .pricing-card-dark h2 { color: #fff; }
.pricing-card-dark p { color: rgba(255,255,255,0.5); }

/* Hero Refinements */
.hero-full { padding-top: clamp(120px, 15vh, 180px); min-height: 95vh; display: flex; align-items: center; border-top: none; }
.hero-desc { max-width: 650px; margin-bottom: 48px; }

/* Dashboard System */
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 64px; }
.dash-badge { border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 2px; font-size: 0.6rem; font-weight: 800; color: #fff; }
.dash-counter-container { margin-bottom: 60px; }
.dash-counter-label { color: rgba(255,255,255,0.6); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.dash-counter-value { font-size: clamp(5rem, 12vw, 8.5rem); font-weight: 900; line-height: 0.8; color: #fff; letter-spacing: -6px; }
.dash-counter-symbol { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; color: var(--c-success); }
.dash-stat-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 32px; backdrop-filter: blur(10px); }
.dash-stat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.dash-stat-label { display:block; font-size: 0.6rem; font-weight: 900; color: rgba(255,255,255,0.4); margin-bottom: 4px; text-transform: uppercase; }
.dash-stat-title { font-size: 1.1rem; color: #fff; margin:0; }
.dash-stat-grid { display: flex; justify-content: space-between; margin-top: 24px; }
.dash-stat-item { border-left: 2px solid var(--c-success); padding-left: 12px; }
.dash-stat-item.light { border-left-color: #fff; }
.dash-stat-item span:first-child { font-size: 0.55rem; color: rgba(255,255,255,0.5); display: block; text-transform: uppercase; }
.dash-stat-item span:last-child { font-size: 0.8rem; font-weight: 900; color: #fff; }

/* General Utilities */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.grid-flex { display: flex; gap: 24px; flex-wrap: wrap; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.z-2 { z-index: 2; }
.m-0 { margin: 0; }
.mb-32 { margin-bottom: 32px; }
.mt-48 { margin-top: 48px; }
.opacity-2 { opacity: 0.2; }

/* Final CTA Full-width */
.cta-section {
    background: #000;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.cta-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    line-height: 0.85;
    letter-spacing: -5px;
    margin: 32px 0 48px;
    font-weight: 950;
    text-transform: uppercase;
    color: #fff;
}

.cta-description {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 80px;
    line-height: 1.3;
}

.cta-contact-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: center;
}

.cta-phone {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 950;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.cta-phone:hover {
    color: var(--c-success);
    transform: translateX(20px);
}

.cta-location {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-success);
}

.cta-section .label.c-success {
    opacity: 1;
}

.cta-watermark {
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: 30vw;
    font-weight: 950;
    opacity: 0.05;
    pointer-events: none;
    line-height: 0.8;
}

/* Utility Classes */
.c-white-05 { color: rgba(255,255,255,0.5); }
.c-white { color: #fff; }
.c-success { color: var(--c-success); }
.c-white-005 { color: rgba(255,255,255,0.05); }

.uppercase { text-transform: uppercase; }
.d-block { display: block; }
.text-right { text-align: right; }
.text-center { text-align: center; }

.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.fw-950 { font-weight: 950; }

.fs-05 { font-size: 0.5rem; }
.fs-055 { font-size: 0.55rem; }
.fs-06 { font-size: 0.6rem; }
.fs-07 { font-size: 0.7rem; }
.fs-08 { font-size: 0.8rem; }
.fs-085 { font-size: 0.85rem; }
.fs-09 { font-size: 0.9rem; }
.fs-11 { font-size: 1.1rem; }
.fs-12 { font-size: 1.2rem; }
.fs-15 { font-size: 1.5rem; }
.fs-18 { font-size: 1.8rem; }

.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }
.ls-4 { letter-spacing: 4px; }
.ls-5 { letter-spacing: 5px; }
.ls-8 { letter-spacing: 8px; }

.mb-0 { margin-bottom: 0px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.mb-64 { margin-bottom: 64px; }
.mb-80 { margin-bottom: 80px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.p-0 { padding: 0 !important; }
.pt-32 { padding-top: 32px; }
.pb-16 { padding-bottom: 16px; }

.bt-1 { border-top: 1px solid var(--c-border); }
.bb-none { border-bottom: none !important; }

/* Animations */
@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-success), transparent);
    animation: scan 3s linear infinite;
    z-index: 5;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}
.pulse {
    transform-origin: center;
    animation: pulse 2s infinite;
}
.pulse-group circle:first-child {
    transform-origin: center;
}

/* Ukraine Map */
.ukraine-map-object {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0,255,65,0.15));
    display: block;
    object-fit: contain;
    object-position: center;
}

.ukraine-map-embed {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
}

.ukraine-map-embed svg {
    width: 100% !important;
    height: auto !important;
    max-height: 100%;
    display: block;
    color: rgba(0,255,65,0.55);
    filter: drop-shadow(0 0 24px rgba(0,255,65,0.12));
}

.ukraine-map-embed path {
    fill: rgba(255,255,255,0.03) !important;
    stroke: currentColor !important;
    transition: fill 800ms cubic-bezier(0.4, 0, 0.2, 1), stroke 800ms cubic-bezier(0.4, 0, 0.2, 1), opacity 600ms ease, filter 600ms ease;
    opacity: 0.75;
    cursor: pointer;
}

.ukraine-map-embed path:hover {
    opacity: 1;
    fill: rgba(0,255,65,0.12) !important;
    stroke: rgba(0,255,65,0.9) !important;
    filter: drop-shadow(0 0 20px rgba(0,255,65,0.35));
}

.ukraine-map-embed path.is-active {
    opacity: 1;
    fill: rgba(0,255,65,0.18) !important;
    stroke: rgba(0,255,65,0.95) !important;
    filter: drop-shadow(0 0 24px rgba(0,255,65,0.45));
}

/* Map Labels */
.map-label-group {
    position: absolute;
    bottom: 32px; right: 32px;
    text-align: right;
}
/* Performance & Security Dashboard Blocks */
.security-layers-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.sec-layer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
}

.sec-layer.active {
    background: rgba(0,255,65,0.1);
    border-color: rgba(0,255,65,0.3);
    color: rgba(255,255,255,0.9);
}

.sec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.sec-layer.active .sec-dot {
    background: var(--c-success);
    box-shadow: 0 0 8px var(--c-success);
}

.sec-name {
    font-size: 0.65rem;
}

.pt-16 { padding-top: 16px; }
.mt-16 { margin-top: 16px; }

/* Final Hero & Dash Utilities */
.gap-calc-hero { gap: clamp(40px, 8vw, 100px); }
.jc-start { justify-content: flex-start; }
.h-1px { height: 1px; }
.w-40 { width: 40px; }
.bg-fg { background: var(--c-fg); }
.hero-title { font-size: clamp(3.5rem, 9vw, 5.8rem); line-height: 0.85; margin-bottom: 32px; letter-spacing: -4px; }
.p-24-64 { padding: 24px 64px; }
.dash-accent { 
    position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; 
    background: radial-gradient(circle, rgba(0,255,65,0.15) 0%, transparent 70%); 
    pointer-events: none; 
}
.items-baseline { align-items: baseline; }
.ov-v { overflow: visible; }
.lh-1 { line-height: 1; }
.opacity-1 { opacity: 0.1; }
.mb-8 { margin-bottom: 8px; }
.flex { display: flex; }
/* Structural & Layout Utilities */
.border-left-dark { border-left: 2px solid #000; }
.p-48-0-48-48 { padding: 48px 0 48px 48px; }
.flex-gap-4 { display: flex; gap: 4px; }
.bg-light-border-bottom { background: #fafafa; border-bottom: 1px solid var(--c-border); }
.flex-between-center { display: flex; justify-content: space-between; align-items: center; }
.gap-20 { gap: 20px; }
.ov-h { overflow: hidden; }
.pos-r { position: relative; }
.z-5 { z-index: 5; }
.h-90vh { min-height: 90vh; }
.bt-rgba-white-01 { border-top: 1px solid rgba(255,255,255,0.1); }
.fs-20 { font-size: 2rem; }
.fs-065 { font-size: 0.65rem; }
.opacity-05 { opacity: 0.5; }
.mt-48 { margin-top: 48px; }
.faq-grid { display: grid; gap: 16px; }
.bg-white { background: #fff !important; color: var(--c-fg) !important; }
.bg-white .label { color: rgba(0,0,0,0.6) !important; opacity: 1; }
.bg-white p { color: rgba(0,0,0,0.7) !important; }
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4 { color: var(--c-fg) !important; }
.bg-ghost { background: var(--c-ghost) !important; }
.jc-sb { justify-content: space-between; }
.ai-c { align-items: center; }
.mt-64 { margin-top: 64px; }
.ov-v { overflow: visible; }
.p-24-0 { padding: 24px 0; }
.btn-p-24-64 { padding: 24px 64px; }
.gap-16 { gap: 16px; }
.gap-12 { gap: 12px; }
.jc-fs { justify-content: flex-start; }
.h-1 { height: 1px; }
.w-40 { width: 40px; }
.bg-black { background: #000 !important; }
.c-white-08 { color: rgba(255,255,255,0.8); }
.p-48-0 { padding: 48px 0; }
.bt-2-black { border-top: 2px solid #000; }
.mt-24 { margin-top: 24px; }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Grid 2 columns to 1 column */
    .grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 48px !important;
    }
    
    /* Hero grid adjustments */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Hide hero visual (dash dashboard) on mobile */
    .hero-visual {
        display: none;
    }
    
    /* Hero text full width */
    .hero-grid > div:first-child {
        max-width: 100%;
    }
    
    /* Dashboard containers */
    .dash-container,
    .dash-container-compact {
        padding: 24px;
        min-height: auto;
    }
    
    .dash-container-compact .dash-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 24px;
    }
    
    .dash-container-compact .dash-counter-value {
        font-size: 3rem;
        letter-spacing: -2px;
    }
    
    .dash-stat-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .dash-stat-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Security layers row */
    .security-layers-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .sec-layer {
        padding: 8px 10px;
        font-size: 0.6rem;
    }
    
    /* Performance metrics */
    .perf-metrics-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .metric-item {
        flex: 1;
        min-width: 80px;
    }
    
    /* Stats grid - 2 columns on mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stats-number {
        font-size: 1.8rem;
    }
    
    /* Grid 4 columns to 2x2 on mobile */
    .grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .grid.grid-4 .card-studio {
        padding: 24px 16px;
        text-align: center;
    }
    
    .grid.grid-4 .fs-18 {
        font-size: 1.5rem;
    }
    
    /* Node grid */
    .node-grid {
        grid-template-columns: 1fr;
    }
    
    /* City grid */
    .city-grid {
        grid-template-columns: 1fr;
    }
    
    /* Expert grid */
    .expert-grid {
        grid-template-columns: 1fr;
    }
    
    /* Typography adjustments */
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -2px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -2px;
    }
    
    /* Container padding */
    .container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* FAQ adjustments */
    .faq-grid {
        gap: 12px;
    }
    
    /* Process section */
    .grid.gap-40 {
        gap: 24px;
    }
    
    .flex.gap-32 {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    /* Smaller screens */
    .dash-container-compact {
        padding: 16px;
    }
    
    .dash-container-compact .dash-counter-value {
        font-size: 2.5rem;
    }
    
    .dash-badge {
        font-size: 0.5rem;
        padding: 2px 8px;
    }
    
    .sec-layer {
        flex: 1;
        min-width: calc(50% - 4px);
        justify-content: center;
    }
    
    .security-layers-row {
        gap: 8px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.55rem;
    }
    
    /* SVG charts responsive */
    svg[viewBox="0 0 400 100"] {
        max-width: 100%;
        height: auto;
    }
    
    /* Hero adjustments */
    .hero-full {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-desc {
        margin-bottom: 32px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    /* CTA section */
    .cta-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.5rem !important;
        letter-spacing: -0.5px !important;
        margin: 12px 0 20px !important;
        line-height: 1.1 !important;
    }
    
    .cta-description {
        font-size: 0.85rem !important;
        margin-bottom: 24px !important;
        line-height: 1.4 !important;
    }
    
    .cta-phone {
        font-size: 3.5vw !important;
        letter-spacing: -0.3px !important;
        white-space: nowrap !important;
    }
    
    .cta-contact-box {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-location {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }
    
    .cta-watermark {
        font-size: 12vw;
        opacity: 0.02;
    }
    
    .cta-grid {
        gap: 24px;
    }
    
    /* Branding wall - 2x2 grid on mobile */
    .branding-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: center;
    }
    
    .branding-item {
        font-size: 0.7rem;
        letter-spacing: 2px;
        word-break: break-word;
    }
    
    /* Philosophy section watermark */
    .watermark-08 {
        font-size: 20rem;
        right: -20%;
    }
    
    /* Section padding adjustments */
    .section {
        padding: 60px 0;
    }
    
    /* Map adjustments */
    .ukraine-map-embed {
        transform: scale(1);
        min-height: 300px;
    }
    
    /* Pricing cards */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio */
    .portfolio-card {
        height: 350px;
    }
    
    /* Delivery sidebar */
    .delivery-sidebar {
        position: relative;
        top: 0;
        padding: 32px;
    }
    
    /* Steps grid */
    .grid.grid-2.gap-100 > div:first-child {
        order: 1;
    }
}

@media (max-width: 360px) {
    /* Very small screens - 1 column branding */
    .branding-flex {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .branding-item {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}
