/* NWOS Site Styles — matches helix homepage design */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #0a0812;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Back Bar */
.back-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: transparent;
    height: 38px;
    transition: background 0.4s ease;
}

.back-bar.scrolled {
    background: #0a0812;
}

/* Header */
.site-header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    background: rgba(10, 8, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(155, 124, 200, 0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { width: 180px; height: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #a0a0a0;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9B7CC8;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: #fff; }
.nav-links a.active::after { width: 100%; background: #9B7CC8; }
.nav-links a.nav-cta.active::after { display: none; }

.nav-cta {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #7E57C2, #9B7CC8);
    padding: 8px 20px;
    border-radius: 8px;
    transition: background 0.25s, box-shadow 0.25s !important;
    box-shadow: 0 0 20px rgba(126, 87, 194, 0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: linear-gradient(135deg, #9B7CC8, #B9A0D8) !important;
    box-shadow: 0 4px 24px rgba(126, 87, 194, 0.5);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 8, 18, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    color: #a0a0a0;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: #fff; }

.mobile-menu a.active { color: #9B7CC8; }

.mobile-menu-close {
    position: absolute;
    top: 52px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
}

/* Page Content */
.page-content {
    min-height: 80vh;
}

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

/* Page Hero — orbital rings background like homepage */
.page-hero {
    position: relative;
    padding: 140px 32px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .page-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 87, 194, 0.12) 0%, rgba(126, 87, 194, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-hero .orbital-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}

.page-hero .orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.page-hero .orbital-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    animation: orbitSpin 25s linear infinite;
    border-color: rgba(155, 124, 200, 0.1);
    border-top-color: rgba(155, 124, 200, 0.2);
}

.page-hero .orbital-ring:nth-child(2) {
    width: 440px;
    height: 440px;
    animation: orbitSpin 35s linear infinite reverse;
    border-color: rgba(232, 185, 49, 0.06);
    border-bottom-color: rgba(232, 185, 49, 0.12);
}

.page-hero .orbital-ring:nth-child(3) {
    width: 600px;
    height: 600px;
    animation: orbitSpin 50s linear infinite;
    border-color: rgba(155, 124, 200, 0.04);
    border-left-color: rgba(155, 124, 200, 0.1);
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* Page Header */
.page-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.page-header h1 .purple {
    color: #9B7CC8;
}

.page-header h1 .gold {
    color: #E8B931;
}

.page-header h1 .highlight {
    background: linear-gradient(135deg, #9B7CC8, #E8B931);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Section Styles */
section {
    padding: 50px 0;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 200;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

h2 .purple { color: #9B7CC8; }
h2 .gold { color: #E8B931; }

h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 12px;
}

/* Section Label — terminal style */
.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: #9B7CC8;
    margin-bottom: 40px;
    opacity: 0.8;
}

.section-label .prompt {
    color: #E8B931;
}

.section-description {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 600px;
    margin-top: 12px;
    font-weight: 300;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.card-grid.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 600px) {
    .card-grid.card-grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 12px;
    padding: 36px;
    padding-top: 48px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #27c93f;
    z-index: 1;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(155, 124, 200, 0.06);
    border-radius: 12px 12px 0 0;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #9B7CC8;
    box-shadow: 0 0 30px rgba(155, 124, 200, 0.1);
}

.card h3 { color: #fff; }

.card h3 .prompt-accent {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #9B7CC8;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

.card p {
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.card .card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #E8B931;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Buttons */
.btn-primary {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7E57C2, #9B7CC8);
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(126, 87, 194, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(126, 87, 194, 0.5);
}

.btn-outline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #B9A0D8;
    background: transparent;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid rgba(155, 124, 200, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    border-color: #9B7CC8;
    background: rgba(155, 124, 200, 0.08);
    transform: translateY(-2px);
}

/* Hosting Cards */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.hosting-card {
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 124, 200, 0.2);
}

.hosting-card.featured {
    border-color: #E8B931;
    box-shadow: 0 0 40px rgba(232, 185, 49, 0.1);
    position: relative;
}

.hosting-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E8B931;
    color: #000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hosting-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 24px;
}

.hosting-card .price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
}

.hosting-card .price strong {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 200;
    color: #E8B931;
}

.hosting-card .features {
    text-align: left;
    margin-bottom: 24px;
}

.hosting-card .features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #a0a0a0;
    font-size: 14px;
    border-bottom: 1px solid rgba(155, 124, 200, 0.05);
}

.hosting-card .features li svg {
    width: 16px;
    height: 16px;
    color: #E8B931;
    flex-shrink: 0;
}

/* Industry Cards */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.industry-card {
    display: block;
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(155, 124, 200, 0.2);
}

.industry-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .feature-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .feature-list { grid-template-columns: 1fr; }
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: #9B7CC8;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 300;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9B7CC8;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-submit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7E57C2, #9B7CC8);
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(126, 87, 194, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(126, 87, 194, 0.5);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    color: #a0a0a0;
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(155, 124, 200, 0.08);
    padding: 40px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-inner .footer-logo img {
    width: 100px;
    opacity: 0.5;
}

.footer-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #666;
}

.footer-text .loc { color: #9B7CC8; }

/* Fade animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Page-specific layout helpers ---- */

/* About grid */
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.about-content p, .about-content-full p {
    color: #a0a0a0;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Section header (used across many pages) */
.section-header {
    margin-bottom: 32px;
}

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

.section-header.center .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* Service cards (reused across many pages) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-card {
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 124, 200, 0.2);
    box-shadow: 0 0 30px rgba(155, 124, 200, 0.08);
}

.service-card h3 { color: #fff; }

.service-card p {
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.service-icon {
    color: #9B7CC8;
    margin-bottom: 20px;
}

/* Industries grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.industries-grid .industry-card {
    display: block;
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.industries-grid .industry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(155, 124, 200, 0.2);
}

.industry-icon {
    color: #9B7CC8;
    margin-bottom: 16px;
}

.industries-grid .industry-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 8px;
}

.industries-grid .industry-card p {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* Feature item icon */
.feature-item-icon {
    color: #9B7CC8;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 300;
    line-height: 1.7;
}

/* Tech categories */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.tech-category h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 16px;
    color: #9B7CC8;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 300;
}

.tech-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E8B931;
    flex-shrink: 0;
}

/* Client grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.client-card {
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: rgba(155, 124, 200, 0.2);
}

.client-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 4px;
}

.client-industry {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #E8B931;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.client-desc {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 300;
    line-height: 1.7;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(155, 124, 200, 0.08);
    font-size: 14px;
    font-weight: 300;
    color: #a0a0a0;
}

.comparison-table th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #9B7CC8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td:first-child {
    color: #fff;
    font-weight: 400;
}

.comparison-table .check {
    color: #E8B931;
    font-size: 18px;
    text-align: center;
}

/* Spec cards */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.spec-card {
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.spec-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: 32px;
    color: #E8B931;
    margin-bottom: 4px;
}

.spec-card p {
    font-size: 13px;
    color: #a0a0a0;
    font-weight: 300;
}

/* Data centers */
.data-centers {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.data-center {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #12101a;
    border: 1px solid rgba(155, 124, 200, 0.08);
    border-radius: 12px;
}

.data-center-icon {
    color: #9B7CC8;
    flex-shrink: 0;
}

.data-center-info h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 2px;
}

.data-center-info p {
    font-size: 13px;
    color: #a0a0a0;
    font-weight: 300;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    color: #a0a0a0;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method-icon {
    color: #9B7CC8;
    flex-shrink: 0;
}

.contact-method-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-method-value {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
}

.contact-method-value a {
    color: #fff;
    transition: color 0.2s;
}

.contact-method-value a:hover {
    color: #9B7CC8;
}

/* Form row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .page-hero { padding: 140px 20px 60px; }
    .page-header h1 { font-size: 28px; }
    .page-hero .orbital-rings { width: 350px; height: 350px; }
    .page-hero .orbital-ring:nth-child(1) { width: 180px; height: 180px; }
    .page-hero .orbital-ring:nth-child(2) { width: 270px; height: 270px; }
    .page-hero .orbital-ring:nth-child(3) { width: 350px; height: 350px; }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
