/* ============================================
   TEJRIBA - CYBERSECURITY TALENT SOURCING
   Premium Dark Mode Design System
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-navy: #1A2332;
    --accent-cyan: #00D9FF;
    --accent-cyan-dark: #00B8D9;
    --accent-cyan-light: #33E0FF;
    
    /* Neutrals */
    --dark-bg: #0F1419;
    --dark-surface: #1A2332;
    --dark-surface-light: #252F3F;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --text-muted: #7A8FA3;
    
    /* Typography */
    --font-heading: 'Michroma', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-padding: 32px;
    
    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.3);
    --glow-cyan-strong: 0 0 40px rgba(0, 217, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    /* SVG logo is already white with cyan accents - no filter needed */
}

.logo-text {
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--accent-cyan);
    color: var(--primary-navy) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background: var(--accent-cyan-light);
    box-shadow: var(--glow-cyan);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 217, 255, 0.2);
}

.lang-switcher a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

.lang-switcher a.lang-active {
    color: var(--accent-cyan);
}

.lang-switcher a:hover {
    color: var(--accent-cyan);
}

.lang-divider {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lang-switcher a::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background: var(--accent-cyan-light);
    box-shadow: var(--glow-cyan-strong);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Roles Section */
.roles-section {
    background: var(--dark-surface);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.role-card {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.role-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.role-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.role-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.role-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background: var(--dark-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
}

/* Why Section */
.why-section {
    background: var(--dark-surface);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-weight: bold;
    flex-shrink: 0;
}

.why-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--text-secondary);
    margin: 0;
}

.cyber-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-visual svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.glow-box-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.glow-box-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

/* About page image container */
.about-image-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
    background: #0f1419;
}

.about-office-svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-surface) 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    /* SVG logo is already white with cyan accents - no filter needed */
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg) 100%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* About Page */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values-section {
    background: var(--dark-surface);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--dark-surface-light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.value-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
    font-size: 1.3rem;
    max-width: 100%;
}

.value-card p {
    line-height: 1.6;
    flex-grow: 1;
}

.expertise-section {
    padding: 80px 0;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.expertise-text h2 {
    margin-bottom: 2rem;
}

.expertise-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Services Page */
.services-overview {
    padding: 80px 0 40px;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    margin-bottom: 1.5rem;
}

.main-services {
    padding: 40px 0 80px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card-large {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card-large:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.service-icon-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.service-card-large h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card-large p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-process {
    background: var(--dark-surface);
    padding: 80px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.approach-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.approach-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
}

.approach-item h4 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.approach-item p {
    color: var(--text-secondary);
    margin: 0;
}

.why-choose-section {
    padding: 80px 0;
}

.why-choose-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Talent Network Page */
.network-overview {
    padding: 80px 0 40px;
}

.network-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.network-intro h2 {
    margin-bottom: 1.5rem;
}

.network-stats-section {
    background: var(--dark-surface);
    padding: 60px 0;
}

.network-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.network-stat {
    text-align: center;
}

.network-stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.network-stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.vetting-section {
    padding: 80px 0;
}

.vetting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vetting-step {
    text-align: center;
}

.vetting-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.vetting-step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.vetting-step p {
    color: var(--text-secondary);
}

.talent-categories {
    background: var(--dark-surface);
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.category-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.category-card ul {
    list-style: none;
}

.category-card ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.category-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

.category-card ul li:last-child {
    border-bottom: none;
}

.join-network-section {
    padding: 80px 0;
    text-align: center;
}

.join-network-content h2 {
    margin-bottom: 1rem;
}

.join-network-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-detail-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-benefits {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.contact-benefits h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.contact-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.contact-benefits ul li:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    background: var(--dark-surface-light);
    padding: var(--card-padding);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 217, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .why-content,
    .about-content,
    .expertise-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --card-padding: 24px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .vetting-steps {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .network-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .network-stat-number {
        font-size: 2.5rem;
    }

    .network-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent-cyan);
    color: var(--primary-navy);
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

