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

:root {
    --primary-color: #22d3ee;
    --primary-dark: #06b6d4;
    --primary-glow: rgba(34, 211, 238, 0.5);
    --secondary-color: #7b2cbf;
    --secondary-dark: #5a189a;
    --accent-color: #34d399;
    --dark-bg: #0c0f1a;
    --dark-surface: #111827;
    --dark-surface-light: #1a2234;
    --dark-card: rgba(26, 34, 52, 0.6);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(148, 163, 184, 0.12);
    --border-light: rgba(148, 163, 184, 0.08);
    --success-color: #34d399;
    --error-color: #f87171;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.12);
    --transition: 0.25s ease;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection in form fields */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: rgba(12, 15, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.875rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.nav-btn-client-portal {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-bg) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    font-size: 0.9375rem;
    transition: all var(--transition);
    margin-left: 0.5rem;
    box-shadow: 0 2px 12px rgba(34, 211, 238, 0.35);
}

.nav-btn-client-portal:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--primary-glow);
    color: var(--dark-bg) !important;
}

.nav-btn-client-portal::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(34, 211, 238, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 50%, rgba(52, 211, 153, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(34, 211, 238, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
}

@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 36ch;
}

.hero-buttons {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-trust-value {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-trust-divider {
    width: 1px;
    height: 1.75rem;
    background: var(--border-color);
}

/* Animated Servers */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
    position: relative;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.servers-grid {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: nowrap !important;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem;
    min-width: 0;
}

.server-container {
    position: relative;
    width: 160px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.server-container.server-1 {
    animation: float 3s ease-in-out infinite;
}

.server-container.server-2 {
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.server-container.server-3 {
    animation: float 3.2s ease-in-out infinite;
    animation-delay: 1s;
}

.server-rack {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.server-unit {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.server-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark-surface-light) 0%, var(--dark-surface) 100%);
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: var(--radius-sm);
    position: relative;
    box-shadow: 
        0 0 24px rgba(34, 211, 238, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-panel {
    padding: 18px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.led-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    position: relative;
}

.led-indicator.led-active {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

.led-indicator.led-active:nth-child(2) {
    animation-delay: 0.3s;
}

.led-indicator.led-active:nth-child(3) {
    animation-delay: 0.6s;
}

.server-slots {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.slot {
    height: 36px;
    background: var(--dark-surface);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.2), transparent);
    animation: scan 2s ease-in-out infinite;
}

.slot:nth-child(2)::before {
    animation-delay: 0.3s;
}

.slot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.slot:nth-child(4)::before {
    animation-delay: 0.9s;
}

.slot:nth-child(5)::before {
    animation-delay: 1.2s;
}

.slot:nth-child(6)::before {
    animation-delay: 1.5s;
}

.server-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 200px;
    height: 2px;
    transform: translateY(-50%);
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
    animation: stream 2s linear infinite;
}

.data-particle:nth-child(1) {
    animation-delay: 0s;
}

.data-particle:nth-child(2) {
    animation-delay: 0.5s;
}

.data-particle:nth-child(3) {
    animation-delay: 1s;
}

.data-particle:nth-child(4) {
    animation-delay: 1.5s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-bg);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-secondary {
    background: rgba(34, 211, 238, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(34, 211, 238, 0.4);
}

.btn-secondary:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(88, 101, 242, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord svg {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* Sections */
section {
    padding: 5.5rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.75rem;
}

/* Features Section */
.features {
    background: var(--dark-surface);
}

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

.feature-card {
    background: var(--dark-card);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-card);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.25);
    box-shadow: 0 0 32px rgba(52, 211, 153, 0.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: var(--accent-color);
    font-weight: 600;
}

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

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
}

/* Testimonial / Social proof */
.testimonial-section {
    padding: 4.5rem 0;
    background: var(--dark-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonial {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.testimonial-author {
    font-style: normal;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-surface-light) 100%);
    text-align: center;
    padding: 5.5rem 0;
    border-top: 1px solid var(--border-light);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.cta-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    box-shadow: 0 4px 24px var(--primary-glow);
}

/* Page Header (shared: pricing, contact) */
.page-header {
    background: var(--dark-surface);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* About Page - Hero */
.about-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-light);
}

.about-hero .container {
    text-align: center;
}

.about-hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 40ch;
    margin: 0 auto;
}

/* About hero stats (optional, kept for reuse) */
.about-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.about-stat-value { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary-color); }
.about-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.about-stat-divider { width: 1px; height: 1.5rem; background: var(--border-color); }

/* About Page - Content */
.about-content {
    padding: 3.5rem 0 2rem;
}

.about-content .container {
    max-width: 720px;
}

.about-section {
    margin-bottom: 3.5rem;
}

.about-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.about-prose {
    max-width: 65ch;
}

.about-prose p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.leader-card {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: border-color var(--transition);
}

.leader-card:last-child {
    border-bottom: none;
}

.leader-card:hover {
    border-color: var(--border-color);
}

.leader-card-icon {
    display: none;
}

.leader-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.leader-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.leader-card p:not(.leader-role) {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.leader-card-center {
    grid-column: 1 / -1;
    max-width: 100%;
}

@media (min-width: 768px) {
    .leader-card {
        padding: 1.75rem 1.25rem 1.75rem 0;
    }

    .leader-card-center {
        grid-column: span 1;
    }
}

/* Commitment grid (legacy / other pages) */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.commitment-card {
    background: var(--dark-card);
    backdrop-filter: blur(8px);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.commitment-card:hover {
    border-color: rgba(52, 211, 153, 0.2);
}

.commitment-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.commitment-icon svg {
    width: 100%;
    height: 100%;
}

.commitment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.commitment-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
    margin: 0;
}

/* Clean commitment list (About page) */
.commitment-list-clean {
    list-style: none;
    margin: 0;
    padding: 0;
}

.commitment-list-clean li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    border-left: none;
    background: none;
    border-radius: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.commitment-list-clean li:last-child {
    border-bottom: none;
}

.commitment-list-clean strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Legacy commitment list (if used elsewhere) */
.commitment-list {
    list-style: none;
    margin-top: 1.5rem;
}

.commitment-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    background: var(--dark-card);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.cta-about {
    margin-top: 3rem;
    margin-bottom: 0;
}

.about-content .section-eyebrow {
    text-align: left;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.about-content .about-section-title {
    text-align: left;
}

/* Pricing Page */
.pricing-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-hero .container {
    text-align: center;
}

.pricing-hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.pricing-hero-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.pricing-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 40ch;
    margin: 0 auto;
}

.pricing-content {
    padding: 3.5rem 0 4rem;
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section:last-of-type {
    margin-bottom: 0;
}

.pricing-category-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1400px) {
    .pricing-grid-4 {
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--dark-card);
    backdrop-filter: blur(8px);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(52, 211, 153, 0.04);
}

#vps-hosting .pricing-card {
    padding: 1.75rem 1.5rem;
}

#vps-hosting .pricing-card h3 {
    font-size: 1.125rem;
    margin-top: 0 !important;
    margin-bottom: 0.75rem;
}

/* First month discount */
.first-month-price {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.first-month-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.first-month-amount {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

#vps-hosting .pricing-card .price {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

#vps-hosting .pricing-card .pricing-features {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

#vps-hosting .pricing-card .pricing-features li {
    padding: 0.35rem 0 0.35rem 1.5rem;
}

#vps-hosting .pricing-card .pricing-features li::before {
    left: 0;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0.2rem;
}

.period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    font-size: 0.9375rem;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.pricing-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-surface);
    color: var(--accent-color);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 1;
    white-space: nowrap;
    border: 1px solid var(--border-light);
}

#vps-hosting .popular-badge {
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-surface);
    color: var(--accent-color);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    border: 1px solid var(--border-light);
    box-shadow: none;
}

#vps-hosting .pricing-card.featured {
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(52, 211, 153, 0.04);
}

.pricing-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem 2rem;
    background: transparent;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.pricing-cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-cta-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--dark-surface-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.dynamic-fields {
    margin-bottom: 1.5rem;
}

.dynamic-field-group {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-message.error {
    display: block;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 1.25rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

@keyframes scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes stream {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Security Badge */
.security-badge {
    position: relative;
    background: rgba(52, 211, 153, 0.06);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 260px;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(8px);
    z-index: 10;
    margin: 0 auto;
}

.badge-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: badgeGlow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.badge-icon {
    width: 44px;
    height: 44px;
    color: var(--accent-color);
    flex-shrink: 0;
    animation: badgeIconPulse 2s ease-in-out infinite;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.4));
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.badge-subtitle {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(52, 211, 153, 0);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 0 24px rgba(52, 211, 153, 0.15);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes badgeIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.5));
    }
}

/* Ensure servers stay horizontal on larger screens */
@media (min-width: 769px) {
    .servers-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        justify-content: center !important;
    }
    
    .server-container {
        flex-shrink: 0 !important;
        width: 160px !important;
        height: 320px !important;
    }
    
    .hero-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
    
    .hero-visual {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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 var(--border-color);
    }

    .nav-btn-client-portal {
        margin: 1rem auto 0;
        display: inline-block;
        width: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-trust-item {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .hero-trust-value {
        font-size: 1rem;
    }

    .section-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-section-title {
        font-size: 1.375rem;
    }

    .hero-visual {
        order: -1;
        width: 100%;
    }
    
    .servers-grid {
        max-width: 100%;
        overflow-x: auto;
        padding: 0 1rem;
        flex-wrap: wrap !important;
    }

    .servers-grid {
        gap: 1rem;
        flex-wrap: nowrap !important;
        justify-content: center;
    }

    .server-container {
        width: 100px;
        height: 200px;
        flex-shrink: 0;
    }

    .security-badge {
        min-width: 240px;
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .features-grid,
    .services-grid,
    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .pricing-hero-title {
        font-size: 1.875rem;
    }

    .pricing-category-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .pricing-hero-title {
        font-size: 1.625rem;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Promo Popup Styles */
.promo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.promo-popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.promo-popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease;
}

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

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.promo-popup-close:hover {
    color: #fff;
}

.promo-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.promo-popup-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promo-popup-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.promo-popup .promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    text-align: left;
}

.promo-popup .promo-features li {
    color: #ccc;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-bottom: none;
}

.promo-popup .promo-features li::before {
    display: none;
}

.promo-offer {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.promo-discount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.promo-text {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.promo-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.promo-dismiss {
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
}

.promo-dismiss:hover {
    color: #999;
}

@media (max-width: 500px) {
    .promo-popup-content {
        padding: 2rem 1.5rem;
    }
    
    .promo-popup-content h2 {
        font-size: 1.5rem;
    }
    
    .promo-popup .promo-features {
        grid-template-columns: 1fr;
    }
    
    .promo-discount {
        font-size: 2rem;
    }
}