/* ============================================
   BASE STYLES - SHARED ACROSS ALL PAGES
   ============================================ */
html, body {
    margin: 0;
    padding: 0;
    background: #F5F5F7;
    color: #111;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

/* Apple-style hero section for top area readability */
.hero-section {
    background: var(--gradient-hero) !important;
    color: #1a1a1a !important;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}
 .hero-section h1,
 .hero-section h2,
 .hero-section h3,
 .hero-section h4,
 .hero-section h5,
 .hero-section h6 {
    color: #1a1a1a !important;
    text-shadow: none;
}
.hero-section .btn,
.hero-section .btn-apple {
    color: #fff !important;
    font-weight: 600;
    background: var(--accent-color) !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,102,0,0.15);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-align: center;
    display: inline-block;
    transition: all 0.2s ease;
}
 .hero-section .btn:hover,
 .hero-section .btn-apple:hover,
 .hero-section .btn:focus,
 .hero-section .btn-apple:focus {
    background: #e65c00 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,102,0,0.3);
    outline: none;
}
 .hero-section p,
 .hero-section .lead,
 .hero-section .h5 {
    color: #525252 !important;
    text-shadow: none;
}
/* Apple-style button for strict UI compliance */
/* Apple-style button refined for strict UI compliance */
.btn-apple {
    background: #000 !important;
    color: #fff !important;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: none;
    padding: 1em 2.5em;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    text-align: center;
    display: inline-block;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-apple:hover, .btn-apple:focus {
    background: #222 !important;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.16);
    outline: none;
}
/* Keep labels light on dark call-to-action buttons */
.btn-primary,
.btn-dark,
.btn-apple {
    color: #fff !important;
}
/* ============================================
   SecureInfra Staff - Custom Styles
   ============================================ */

:root {
    --primary-color: #1a1a1a;
    --accent-color: #ff6600;
    --secondary-color: #f97316;
    --light-bg: #fafafa;
    --dark-bg: #1a1a1a;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
    --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
    --card-bg: #ffffff;
    --card-bg-dark: #1a1a1a;
    --gradient-hero: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    --gradient-section: linear-gradient(120deg, #fafafa 0%, #ffffff 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', sans-serif;
    color: #1a1a1a;
    line-height: 1.65;
    background: #fafafa;
    font-size: 16px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a !important;
    letter-spacing: -0.02em;
    text-shadow: none;
    margin-bottom: 0.6em;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }


.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.6;
}

p {
    color: #525252;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
}

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

a:hover {
    color: #e65c00;
}

/* Ensure proper contrast on all backgrounds */
.bg-dark, .bg-dark * {
    color: #ffffff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-dark p, .bg-dark a, .bg-dark span {
    color: #ffffff !important;
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-light p, .bg-light span {
    color: #000000 !important;
}

/* Green Section - ENSURE BRIGHT WHITE TEXT */
.bg-success {
    background-color: #28A745 !important;
}

.bg-success, .bg-success * {
    color: #ffffff !important;
}

.bg-success h1, .bg-success h2, .bg-success h3, .bg-success h4, .bg-success h5, .bg-success h6,
.bg-success p, .bg-success a, .bg-success span, .bg-success .lead, .bg-success button, .bg-success .btn {
    color: #ffffff !important;
}

.bg-success .btn, .bg-success .btn:hover, .bg-success .btn:focus {
    color: #ffffff !important;
}

.bg-success .btn-light {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.bg-success .btn-light:hover {
    background-color: #f0f0f0 !important;
    color: #000000 !important;
}

/* Default white background with dark text */
/* Apple-style section backgrounds and text */
section:not([class*="bg-"]) {
    color: #222;
    background: #fff;
    border-radius: 18px;
    box-shadow: none;
    padding: 2.5rem 0;
}
section:not([class*="bg-"]) h1,
section:not([class*="bg-"]) h2,
section:not([class*="bg-"]) h3,
section:not([class*="bg-"]) h4,
section:not([class*="bg-"]) h5,
section:not([class*="bg-"]) h6 {
    color: #111 !important;
    font-weight: 800;
    text-shadow: none;
    background: none;
    margin-bottom: 0.7em;
}
section:not([class*="bg-"]) p {
    color: #222;
    font-weight: 500;
    font-size: 1.08rem;
    margin-bottom: 0.5em;
}
section:not([class*="bg-"]) strong {
    color: #111 !important;
    font-weight: 700;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Logo */
.logo {
    height: 56px;
    margin-right: 10px;
}

.logo-sm {
    height: 48px;
}
/* Ensure navbar brand images are consistently sized across pages */
.navbar-brand img {
    height: 56px !important;
    width: auto;
    margin-right: 8px;
}
@media (max-width: 576px) {
    .navbar-brand img {
        height: 48px !important;
    }
}

/* Content containers with card styling */
.content-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
}

.content-card-compact {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem;
}

/* Hero text shadows */
.hero-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}

.hero-subtitle {
    color: #f5f5f7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.22);
}

.hero-text {
    color: #f5f5f7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* Buttons */
.btn-cta {
    color: #222 !important;
    font-weight: 700;
}

/* Icon colors */
.icon-accent { color: #28A745; }

/* Navbar container spacing */
.navbar > .container,
.navbar > .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}
@media (min-width: 992px) {
    .navbar > .container,
    .navbar > .container-fluid {
        padding-left: 4rem;
        padding-right: 3rem;
    }
}
@media (min-width: 1400px) {
    .navbar > .container,
    .navbar > .container-fluid {
        padding-left: 5rem;
        padding-right: 4rem;
    }
}
.resource-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid #eef2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    border-color: #dce6f2;
}
.resource-card .card-title {
    color: #001F3F;
    font-weight: 700;
}
.resource-card .card-text {
    color: #333;
}
.resource-card .btn {
    margin-top: 0.5rem;
}

/* Ensure cards use white background */
.card, .card-body { background-color: #fff !important; }

/* Global card styling for consistency */
.card {
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    border-color: #dce6f2;
}
.card .card-title { color: #001F3F; font-weight: 700; }
.card .card-text { color: #333; }
.card .btn { margin-top: 0.5rem; }

/* ============================================
   CONTAINER - ENSURE HIGH CONTRAST TEXT
   ============================================ */

/* Default container text colors */
.container, .container-fluid {
    color: #000000 !important;
}

.container h1, .container h2, .container h3, .container h4, .container h5, .container h6,
.container-fluid h1, .container-fluid h2, .container-fluid h3, .container-fluid h4, 
.container-fluid h5, .container-fluid h6 {
    color: #000000 !important;
}

.container p, .container-fluid p,
.container span, .container-fluid span,
.container a, .container-fluid a {
    color: #000000 !important;
}

/* Container in dark backgrounds */
.bg-dark .container, .bg-dark .container-fluid {
    color: #ffffff !important;
}

.bg-dark .container h1, .bg-dark .container h2, .bg-dark .container h3, 
.bg-dark .container h4, .bg-dark .container h5, .bg-dark .container h6,
.bg-dark .container-fluid h1, .bg-dark .container-fluid h2, .bg-dark .container-fluid h3,
.bg-dark .container-fluid h4, .bg-dark .container-fluid h5, .bg-dark .container-fluid h6 {
    color: #ffffff !important;
}

.bg-dark .container p, .bg-dark .container-fluid p,
.bg-dark .container span, .bg-dark .container-fluid span,
.bg-dark .container a, .bg-dark .container-fluid a {
    color: #ffffff !important;
}

/* Container in light backgrounds */
.bg-light .container, .bg-light .container-fluid {
    color: #000000 !important;
}

.bg-light .container h1, .bg-light .container h2, .bg-light .container h3,
.bg-light .container h4, .bg-light .container h5, .bg-light .container h6,
.bg-light .container-fluid h1, .bg-light .container-fluid h2, .bg-light .container-fluid h3,
.bg-light .container-fluid h4, .bg-light .container-fluid h5, .bg-light .container-fluid h6 {
    color: #000000 !important;
}

.bg-light .container p, .bg-light .container-fluid p,
.bg-light .container span, .bg-light .container-fluid span,
.bg-light .container a, .bg-light .container-fluid a {
    color: #000000 !important;
}

/* Container in green backgrounds */
.bg-success .container, .bg-success .container-fluid {
    color: #ffffff !important;
}

.bg-success .container h1, .bg-success .container h2, .bg-success .container h3,
.bg-success .container h4, .bg-success .container h5, .bg-success .container h6,
.bg-success .container-fluid h1, .bg-success .container-fluid h2, .bg-success .container-fluid h3,
.bg-success .container-fluid h4, .bg-success .container-fluid h5, .bg-success .container-fluid h6 {
    color: #ffffff !important;
}

.bg-success .container p, .bg-success .container-fluid p,
.bg-success .container span, .bg-success .container-fluid span,
.bg-success .container a, .bg-success .container-fluid a {
    color: #ffffff !important;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background-color: #0d0d0d;
    border-color: #0d0d0d;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-success {
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    color: #1a1a1a;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-success:hover {
    background-color: #fafafa;
    border-color: var(--accent-color);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 6px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: #fafafa;
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* High-specificity override: ensure primary buttons always have light labels */
a.btn.btn-primary,
button.btn.btn-primary,
.btn.btn-primary {
    color: #ffffff !important;
}

/* Also ensure any .btn-primary with custom link text remains visible */
.btn-primary:not([disabled]) { color: #ffffff !important; }

/* Ensure small buttons on dark backgrounds remain readable */
a.btn.btn-sm.btn-primary,
button.btn.btn-sm.btn-primary,
.btn.btn-sm.btn-primary,
a.btn.btn-sm.btn-apple,
button.btn.btn-sm.btn-apple,
.btn.btn-sm.btn-apple,
.btn-sm.btn-dark,
.btn-sm.btn-primary {
    color: #ffffff !important;
}

/* If a .btn-sm is used standalone alongside .btn-apple or .btn-primary, keep label visible */
.btn-sm:not([disabled]) { color: inherit; }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--accent-color);
    color: #0b1021;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */

.card {
    transition: var(--transition);
    border: none;
    background: var(--card-bg);
    color: #111111 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hover-card {
    transition: var(--transition);
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: #111111 !important;
    font-weight: 700;
    font-size: 1.35rem;
    text-shadow: none;
    margin-bottom: 0.5em;
}

.card-text {
    color: #222222 !important;
    font-weight: 500;
    font-size: 1.08rem;
    margin-bottom: 0.5em;
}

/* High contrast for muted text in cards */
.card-text .text-muted,
.card .text-muted,
.text-muted {
    color: #444444 !important;
    font-weight: 500;
}

.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.badge.text-bg-dark {
    background-color: #0d0d0d !important;
    color: #ffffff !important;
}

/* Dark section text readability */
.bg-dark p,
.bg-dark .h6 {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Testimonials Section */
.bg-light h2 {
    color: #000000 !important;
    font-weight: 800;
}

.bg-light .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.bg-light .card-body {
    display: flex;
    flex-direction: column;
}

.bg-light .card-title {
    color: #000000 !important;
    font-weight: 800;
    font-size: 1.35rem;
}

.bg-light .card-text {
    color: #000000 !important;
    font-weight: 600;
    font-size: 1.08rem;
    flex-grow: 1;
}

.bg-light .card-text strong {
    color: #000000 !important;
    font-weight: 700;
}

.bg-light .card p:last-child {
    color: #444444 !important;
    font-weight: 600;
    margin-top: 1rem;
}

/* Section heading styles for high contrast */
section h2 {
    color: #000000 !important;
    font-weight: 800;
    font-size: 2.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    border-bottom: 1px solid var(--border-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 102, 0, 0.03) 0%, 
        rgba(255, 102, 0, 0.01) 50%,
        transparent 100%);
    opacity: 1;
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--text-primary) !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    font-size: 4rem;
}

.hero-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-section .lead {
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.375rem;
}

.hero-badge {
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: var(--transition);
}

.hero-badge:hover {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Value Props in Hero Section */
.value-props-row {
    max-width: 1100px;
    margin: 3rem auto 2rem !important;
}

.value-prop {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 2rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.value-prop:hover {
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-prop i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.value-prop h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    margin-bottom: 0;
    line-height: 1.55;
}

/* Metrics Section Styling */
.metrics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.metrics-section h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 800;
}

.metrics-section .lead {
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);\n    border-top: 1px solid #e5e5e5;
}

.cta-section h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: #4a4a4a;
    font-size: 1.25rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--card-bg);
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    color: #1a1a1a;
    box-shadow: var(--card-shadow);
}

.service-card h5 {
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    color: #525252;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.sector-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sector-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.15);
    transform: translateY(-4px);
}

.sector-card h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sector-card p {
    color: #525252;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-detailed {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    background: var(--card-bg);
    margin-bottom: 2rem;
    color: #1a1a1a;
    box-shadow: var(--card-shadow);
}

.service-detailed h3 {
    color: #1a1a1a;
}

.service-detailed p {
    color: #525252;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #525252;
}

.feature-list i {
    color: var(--accent-color);
    margin-right: 0.8rem;
}

/* ============================================
   STEP CARDS
   ============================================ */

.step-card {
    background: var(--card-bg);
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    color: #1a1a1a;
    box-shadow: var(--card-shadow);
}

.step-card h5 {
    color: #1a1a1a;
}

.step-card p {
    color: #525252;
}

.step-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fff5f0;
    color: var(--accent-color);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #ffe6d9;
}

/* ============================================
   ENGINEER CARDS
   ============================================ */

.engineer-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.engineer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.engineer-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    filter: none; /* removed blur for clearer engineer images */
}

.engineer-info {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.engineer-name {
    color: #000000;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.engineer-title {
    color: #28A745;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.engineer-location {
    color: #555555;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.engineer-specialization,
.engineer-experience {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #222222;
    font-weight: 500;
}

.engineer-specialization strong,
.engineer-experience strong {
    color: #000000;
    font-weight: 700;
}

.engineer-bio {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: #222222;
    line-height: 1.6;
    font-weight: 500;
}

.engineer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.engineer-certifications .badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
    font-weight: 600;
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-date,
.blog-reading-time {
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
}

.blog-title {
    color: #000000 !important;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.4;
}

.blog-content h6 {
    color: #000000 !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Make blog content explicitly high-contrast and readable */
.blog-content,
.blog-content p,
.blog-content ul,
.blog-content li,
.blog-excerpt,
.blog-title {
    color: #111111 !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

.blog-content ul.small li {
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.blog-content strong {
    color: #001F3F;
    font-weight: 700;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-excerpt {
    color: #222222;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-card {
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card-bg);
    color: #1a1a1a;
    box-shadow: var(--card-shadow);
}

.pricing-card p {
    color: #525252;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255,102,0,0.15);
}

.pricing-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card h4 {
    color: #1a1a1a !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff5f0;
    color: var(--accent-color) !important;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--accent-color);
}

.price {
    font-size: 2rem;
    color: var(--accent-color) !important;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #525252 !important;
    font-weight: 500;
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-color) !important;
    margin-right: 0.8rem;
}

.pricing-card .btn {
    margin-top: auto;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    background: #fff;
}

.contact-form h2 {
    color: #000000;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-form > div > div:first-child h2 {
    color: #000000;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    color: #000000 !important;
    font-weight: 500;
    font-size: 1rem;
    background-color: #ffffff !important;
}

.form-control::placeholder {
    color: #888;
    font-weight: 400;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
    outline: none;
}

.form-check-input {
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 0.25rem;
    background-color: #ffffff !important;
}

.form-check-input:checked {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.form-check-label {
    color: #000000 !important;
    font-weight: 500 !important;
    margin-left: 0.5rem;
    display: block;
}

.contact-info {
    background: #fff;
}

.contact-info h2 {
    color: #000000;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info h6 {
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* New Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #f0f1f3;
    transform: translateX(4px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--accent-color);
    border-radius: 0;
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.contact-content h5 {
    color: #000000 !important;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #222222 !important;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-content a {
    color: var(--accent-color) !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #ff7f1a;
    text-decoration: underline;
}

/* Guarantee Box */
.guarantee-box {
    background: #fff;
    color: #111;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f7;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.guarantee-header i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.guarantee-header h6 {
    color: #001F3F;
    font-weight: 800;
    margin-bottom: 0;
    font-size: 1.15rem;
}

.guarantee-box p {
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SKILLS MATRIX
   ============================================ */

.skills-matrix {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.skill-row {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-label {
    min-width: 200px;
    font-weight: 600;
    color: var(--primary-color);
}

/* High-specificity overrides for .btn-apple to ensure readability */
/* Force dark background and white text for all .btn-apple variants */
a.btn.btn-apple,
button.btn.btn-apple,
.btn.btn-apple,
a.btn.btn-apple:focus,
button.btn.btn-apple:focus,
.btn.btn-apple:focus {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Small variant readability */
a.btn.btn-sm.btn-apple,
button.btn.btn-sm.btn-apple,
.btn.btn-sm.btn-apple {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Ensure .btn-apple on green (.bg-success) stays readable if used */
.bg-success a.btn-apple,
.bg-success .btn-apple {
    background-color: rgba(0,0,0,0.12) !important;
    color: #fff !important;
    border-color: rgba(0,0,0,0.12) !important;
}

.skill-bar {
    flex: 1;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #ff914d);
    border-radius: 15px;
    transition: var(--transition);
}

.skill-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   VETTING PROCESS
   ============================================ */

.vetting-step {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.vetting-step:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #e9ecef;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    padding-right: 2rem;
    width: 48%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: 2rem;
    width: 48%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: var(--accent-color);
    top: 0;
}

.timeline-content h5 {
    margin-top: 0;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    margin-top: 4rem;
    border-top: 1px solid #333;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: var(--accent-color);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   NEW SERVICES PAGE ELEMENTS
   ============================================ */

.trust-badge {
    border: 2px solid #ffe6d9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    background: #fff5f0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

.audience-card {
    border-radius: 12px;
}

.roadmap-step {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e5e5;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.stack-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-weight: 600;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.stack-item i {
    color: var(--accent-color);
}

/* YC-inspired utilities */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #fff5f0;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 2px solid #ffe6d9;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #737373;
    font-size: 0.875rem;
}

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

.metric-card {
    background: var(--card-bg);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
}

.metric-label {
    color: #525252;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.bg-light {
    background-color: var(--light-bg) !important;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.slide-in {
    animation: slideInUp 0.6s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .hero-section {
        min-height: 400px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Contact & Privacy Page Styling */
.contact-form h2,
.privacy-policy h1,
.privacy-policy h2 {
    color: #000000 !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-form p,
.privacy-policy p {
    color: #000000 !important;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.contact-form ul,
.privacy-policy ul {
    color: #000000;
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-form ul li,
.privacy-policy ul li {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-form strong,
.privacy-policy strong {
    color: #001F3F;
    font-weight: 700;
}

.contact-info {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: var(--border-radius);
    color: #000000;
}

.contact-info p {
    color: #000000;
    font-weight: 500;
}

.contact-info strong {
    color: #001F3F;
    font-weight: 700;
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #f0f0f0;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #fff;
    }

    .card {
        background-color: #2a2a2a;
        border-color: #3a3a3a;
    }

    .form-control,
    .form-select {
        background-color: #2a2a2a;
        color: #f0f0f0;
        border-color: #3a3a3a;
    }
}
/* ============================================
   YC-Inspired Professional Design System
   CodeXY - Security Engineering
   ============================================ */

:root {
    /* Colors */
    --primary: #ff6600;
    --text-primary: #0d0d0d;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border: #e6e6e6;
    --border-light: #f0f0f0;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --success: #10b981;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    border-bottom: 1px solid var(--border-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 102, 0, 0.03) 0%, 
        rgba(255, 102, 0, 0.01) 50%,
        transparent 100%);
    opacity: 1;
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-section .lead {
    font-size: 1.375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.hero-badge {
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.hero-badge:hover {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--text-primary);
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   VALUE PROPS
   ============================================ */

.value-props-row {
    max-width: 1100px;
    margin: 3rem auto 2rem;
}

.value-prop {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 2rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    height: 100%;
}

.value-prop:hover {
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-prop i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.value-prop h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    margin-bottom: 0;
    line-height: 1.55;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: rgba(255, 102, 0, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* ============================================
   METRICS SECTION
   ============================================ */

.metrics-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 5rem 0;
}

.metrics-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.metrics-section .lead {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.938rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.125rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .value-props-row {
        margin: 2rem auto 1rem;
    }
}
/* ============================================
   YC-Inspired Professional Design System
   CodeXY - Security Engineering
   ============================================ */

:root {
    /* Colors */
    --primary: #ff6600;
    --text-primary: #0d0d0d;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border: #e6e6e6;
    --border-light: #f0f0f0;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --success: #10b981;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    border-bottom: 1px solid var(--border-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 102, 0, 0.03) 0%, 
        rgba(255, 102, 0, 0.01) 50%,
        transparent 100%);
    opacity: 1;
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-section .lead {
    font-size: 1.375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.hero-badge {
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.hero-badge:hover {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--text-primary);
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   VALUE PROPS
   ============================================ */

.value-props-row {
    max-width: 1100px;
    margin: 3rem auto 2rem;
}

.value-prop {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 2rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    height: 100%;
}

.value-prop:hover {
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-prop i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.value-prop h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    margin-bottom: 0;
    line-height: 1.55;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: rgba(255, 102, 0, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* ============================================
   METRICS SECTION
   ============================================ */

.metrics-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 5rem 0;
}

.metrics-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.metrics-section .lead {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.938rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.125rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .value-props-row {
        margin: 2rem auto 1rem;
    }
}

/* ============================================
   TEXT BG DARK FIX
   ============================================ */

.text-bg-dark {
    background-color: #0d0d0d !important;
    color: #ffffff !important;
}

.text-bg-dark a,
.text-bg-dark a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Badge with text-bg-dark */
/* Badge with text-bg-dark */
.badge.text-bg-dark {
    background-color: #0d0d0d !important;
    color: #ffffff !important;
    font-weight: 600;
}

.badge.text-bg-dark:hover {
    background-color: #1a1a1a !important;
}

/* ============================================
   CYBER-PREMIUM AESTHETIC
   ============================================ */

/* Subtle glowing accents for premium feel */
.pricing-card, .sector-card, .service-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    animation: subtle-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtle-glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Enhance button transitions for premium feel */
.btn-primary, .btn-success {
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
    position: relative;
}

.btn-primary:hover, .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 102, 0, 0.25);
}

/* Enhance cards with subtle border glow on hover */
.card {
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.card:hover {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.1), 0 8px 24px rgba(0,0,0,0.08);
}

/* Premium typography enhancements */
h1, h2 {
    letter-spacing: -0.025em;
    font-weight: 800;
}

h3, h4, h5 {
    letter-spacing: -0.015em;
}

/* Enhance section backgrounds for depth */
.bg-light {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%) !important;
}

/* Premium navbar styling */
.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background-color: #1a1a1a !important;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Inter font weights for premium feel */
body {
    font-feature-settings: "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CTA section premium styling */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0.02) 100%);
}

/* Accent color highlights */
.text-accent {
    color: var(--accent-color);
}

a.text-accent:hover {
    color: #e65c00;
    text-decoration: underline;
}
