/* DS Systems - Modern Corporate Design System
   Inspired by Web-Crafter aesthetics, adapted for Fortune 500 Enterprise look
   Primary: Deep Corporate Navy #003365
   Author: DS Systems 2025
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ================================
   CSS Variables & Reset
================================ */
:root {
    /* Corporate Navy Brand Colors */
    --primary: #003365;
    --primary-light: #004d99;
    --primary-dark: #002244;
    --primary-foreground: #ffffff;
    
    /* Backgrounds */
    --background: #f8fafc;
    --background-alt: #f3f4f6;
    --white: #ffffff;
    
    /* Text Colors */
    --foreground: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* UI Elements */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    /* Softer, more diffused shadows for elegant look */
    --card-shadow: 0 1px 3px rgba(0, 51, 101, 0.03), 0 4px 12px rgba(0, 51, 101, 0.04), 0 8px 24px rgba(0, 51, 101, 0.03);
    --card-shadow-hover: 0 4px 12px rgba(0, 51, 101, 0.04), 0 12px 32px rgba(0, 51, 101, 0.06), 0 24px 48px rgba(0, 51, 101, 0.04);
    
    /* Status Colors */
    --success: #16a34a;
    --success-bg: #dcfce7;
    --warning: #ca8a04;
    --warning-bg: #fef9c3;
    
    /* Spacing */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Noise texture as data URI for premium grain effect */
    --noise-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* ================================
   Navigation - Modern Glassmorphism
================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: var(--card-shadow);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(0, 51, 101, 0.05);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(0, 51, 101, 0.05);
}

.nav-links a.active {
    color: var(--primary);
    background: rgba(0, 51, 101, 0.08);
}

.nav-links .btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-left: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 51, 101, 0.2);
}

.nav-links .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 101, 0.25);
}

/* ================================
   Hero Section - Premium Mesh Gradient with Noise
================================ */
.hero {
    /* Layered radial gradients for mesh/depth effect */
    background: 
        /* Subtle cyan glow in top-right corner */
        radial-gradient(ellipse 80% 60% at 90% 10%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
        /* Deep blue glow in bottom-left */
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(0, 77, 153, 0.25) 0%, transparent 50%),
        /* Central depth glow */
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0, 77, 153, 0.2) 0%, transparent 60%),
        /* Base gradient */
        linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 40%, #001a33 100%);
    color: var(--white);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Noise texture overlay for premium grain effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--noise-texture);
    opacity: 0.035;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Secondary subtle pattern layer */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
    line-height: 1.7;
}

.hero-sm {
    padding: 3.5rem 5%;
}

.hero-sm h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.hero-sm p {
    margin-bottom: 0;
}

/* Hero Buttons - Premium Micro-Interactions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ================================
   Metrics Bar
================================ */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.metric-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.metric-item:last-child {
    border-right: none;
}

.metric-item:hover {
    background: rgba(0, 51, 101, 0.02);
}

.metric-item h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.metric-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ================================
   Page Sections
================================ */
.section {
    padding: 5rem 5%;
}

.section-alt {
    background: var(--background);
}

.section-white {
    background: var(--white);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Headers (for subpages) */
.page-header {
    background: var(--white);
    padding: 3rem 5%;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
}

/* ================================
   Cards - Modern Glassmorphism
================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: rgba(0, 51, 101, 0.2);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 51, 101, 0.1) 0%, rgba(0, 51, 101, 0.05) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    stroke-width: 1.5;
}

.card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Project Cards (Solutions Page) */
.project-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
}

.project-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-8px);
    border-color: rgba(0, 51, 101, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--background) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.75rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-title {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    min-height: 80px;
}

.tech-specs {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(0, 51, 101, 0.08);
    color: var(--primary);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-tag:hover {
    background: rgba(0, 51, 101, 0.12);
    transform: translateY(-1px);
}

.project-url {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Consolas', 'Monaco', monospace;
    display: block;
    text-align: right;
    user-select: all;
}

/* ================================
   Tables
================================ */
.table-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--background);
    color: var(--foreground);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.95rem;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(0, 51, 101, 0.02);
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
}

.badge-neutral {
    background: var(--background);
    color: var(--text-muted);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
}

/* ================================
   Alert Boxes
================================ */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.alert-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.alert-success {
    background: var(--success-bg);
    border: 1px solid #86efac;
    color: #166534;
}

.alert-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* ================================
   Clause Boxes (Compliance/Legal)
================================ */
.clause-box {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.clause-box:hover {
    border-color: var(--primary);
}

.clause-title {
    font-family: 'Consolas', 'Monaco', monospace;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.clause-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

/* ================================
   Tech Stack / Highlight Boxes
================================ */
.stack-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stack-item {
    background: var(--background);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: all 0.2s ease;
}

.stack-item:hover {
    background: var(--white);
    box-shadow: var(--card-shadow);
}

.stack-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.stack-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 51, 101, 0.05) 0%, rgba(0, 51, 101, 0.02) 100%);
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    margin-top: 1.5rem;
    border: 1px solid rgba(0, 51, 101, 0.1);
}

.highlight-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.highlight-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ================================
   Status Page Components
================================ */
.status-hero {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--success);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    box-shadow: var(--card-shadow);
}

.status-hero h2 {
    font-size: 1.3rem;
    color: var(--success);
    margin-bottom: 0.25rem;
}

.status-hero span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.status-check {
    font-size: 2.5rem;
    color: var(--success);
}

.empty-state {
    background: var(--white);
    padding: 3rem;
    text-align: center;
    color: var(--text-muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
}

/* ================================
   Job Cards (Careers)
================================ */
.job-card {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    border-left: 5px solid var(--text-light);
    opacity: 0.85;
    transition: all 0.2s ease;
}

.job-card:hover {
    opacity: 1;
    box-shadow: var(--card-shadow);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-title {
    color: var(--foreground);
    font-size: 1.3rem;
    font-weight: 700;
}

.job-meta {
    font-family: 'Consolas', 'Monaco', monospace;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.job-desc {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.requirements {
    background: var(--background);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
}

.requirements ul {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
    color: var(--text-muted);
}

.requirements li {
    margin-bottom: 0.5rem;
}

/* ================================
   Split Screen Layout (Partners)
================================ */
.split-screen {
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
}

.info-side {
    flex: 1;
    padding: 4rem 5%;
    background: var(--white);
    min-width: 300px;
}

.info-side h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-side h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.info-side p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-side ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.info-side li {
    margin-bottom: 0.75rem;
}

.contact-side {
    flex: 0 0 420px;
    /* Premium mesh gradient with depth */
    background: 
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(0, 180, 216, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 77, 153, 0.2) 0%, transparent 50%),
        linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Noise texture for contact-side */
.contact-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--noise-texture);
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.contact-box h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.contact-step {
    margin-bottom: 2rem;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.25rem;
}

.contact-step strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-step span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.email-link {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ================================
   Stats Grid (Sustainability)
================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
}

.stat-box:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(0, 51, 101, 0.15);
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--success);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

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

/* ================================
   Content Blocks
================================ */
.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--primary);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Tech Section Styles */
.tech-section {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    margin-bottom: 2rem;
    transition: all 0.2s ease;
}

.tech-section:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}

.tech-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.tech-section h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 28px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    margin-right: 14px;
    border-radius: 3px;
}

.tech-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ================================
   Security Grid
================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.2s ease;
}

.sec-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.sec-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sec-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

/* ================================
   Document Header (SLA, etc.)
================================ */
.doc-header {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}

.doc-header span {
    font-family: 'Consolas', 'Monaco', monospace;
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.doc-header h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.doc-header p {
    color: var(--text-muted);
}

.doc-section h2 {
    font-size: 1.1rem;
    color: var(--foreground);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

/* ================================
   Compliance Bar
================================ */
.compliance-bar {
    background: var(--background);
    padding: 2.5rem 5%;
    text-align: center;
    border-top: 1px solid var(--border);
}

.compliance-bar p {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.compliance-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.compliance-logos span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.compliance-logos span svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    stroke-width: 2;
}

/* ================================
   Footer - Modern Dark
================================ */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 5% 2rem 5%;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.7;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
        margin-top: 1rem;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        text-align: center;
        border-radius: var(--radius-lg);
    }
    
    .nav-links .btn-primary {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 5%;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .split-screen {
        flex-direction: column;
    }
    
    .contact-side {
        flex: 1;
        min-height: auto;
        padding: 3rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compliance-logos {
        gap: 1rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Utility Classes
================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
