/* Dark Theme CSS - Copy this to replace your existing styles.css */

/* ===========================
   RESET & BASE STYLES
   =========================== */

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

:root {
    --primary-green: #0D3A2A;
    --accent-gold: #C9A961;
    --dark: #1A1A1A;
    --darker: #0F0F0F;
    --gray-dark: #999999;
    --gray: #AAAAAA;
    --gray-light: #333333;
    --cream: #2A2A2A;
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--light-gray);
    line-height: 1.6;
    background: var(--darker);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray);
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: #B89A50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-primary-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-nav {
    background: var(--accent-gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #B89A50;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    background: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--gray-light);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-j {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.trust-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid var(--accent-gold);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.status-text {
    font-weight: 600;
    color: var(--gray);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ===========================
   SECTION HEADERS
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gray-light);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.125rem;
    color: var(--gray);
}

/* ===========================
   PROBLEM SECTION
   =========================== */

.problem {
    padding: 100px 0;
    background: var(--darker);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.problem-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.1);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.problem-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===========================
   SOLUTION SECTION
   =========================== */

.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.solution-card {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.1);
    transform: translateY(-4px);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.solution-card h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.solution-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 100px 0;
    background: var(--darker);
}

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

.service-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-item h3 {
    margin-bottom: 16px;
    color: var(--white);
}

.service-item p {
    color: var(--gray);
    margin-bottom: 16px;
}

.service-details {
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
    margin-top: 16px;
}

.service-details p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.service-details strong {
    color: var(--accent-gold);
}

/* ===========================
   CLIENTS / PROJECTS SECTION
   =========================== */

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

.client-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.15);
}

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.client-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.client-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.automation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: var(--gray-light);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===========================
   PODCAST SECTION
   =========================== */

.podcast-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
    text-align: center;
}

.podcast-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-feature {
    padding: 100px 0;
    background: var(--darker);
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.podcast-text h2 {
    margin-bottom: 24px;
}

.podcast-text p {
    margin-bottom: 24px;
}

.podcast-logo-display {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0D3A2A 100%);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.podcast-logo-display .mic-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.podcast-logo-display h3 {
    margin-bottom: 8px;
    color: var(--white);
}

.podcast-logo-display p {
    color: rgba(255, 255, 255, 0.8);
}

.podcast-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* ===========================
   EPISODES SECTION
   =========================== */

.episodes-section {
    padding: 60px 0;
    background: var(--darker);
}

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

.episode-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.episode-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.1);
}

.episode-number {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-light);
    color: var(--accent-gold);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.episode-title {
    margin-bottom: 16px;
    color: var(--white);
}

.episode-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guest-info {
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.guest-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.guest-title {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h1 {
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
}

.story-section {
    padding: 100px 0;
    background: var(--darker);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    margin-bottom: 40px;
    text-align: center;
}

.story-content p {
    margin-bottom: 24px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===========================
   MISSION / VALUES SECTION
   =========================== */

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

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

.mission-card {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.1);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.mission-card h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.mission-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===========================
   PAGE HERO
   =========================== */

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

/* ===========================
   SERVICE DETAIL PAGES
   =========================== */

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: #1a1a1a;
}

.service-detail:not(.alt-bg) {
    background: var(--darker);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.service-main h2 {
    margin-bottom: 24px;
}

.service-main h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--white);
}

.service-main p {
    margin-bottom: 24px;
    color: var(--gray);
    line-height: 1.8;
}

.service-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-light);
    color: var(--accent-gold);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.service-intro {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 4px;
    color: var(--white);
}

.step-content p {
    color: var(--gray);
    font-size: 1rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.included-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray);
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.sidebar-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    margin-bottom: 24px;
}

.sidebar-card h4 {
    margin-bottom: 16px;
    color: var(--white);
}

.result-item {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}

.result-label {
    display: block;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.result-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.fit-list {
    list-style: none;
    padding: 0;
}

.fit-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.fit-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* ===========================
   RESULT LIST
   =========================== */

.result-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.result-list .result-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-left: 4px solid var(--accent-gold);
    border-radius: 6px;
    border-bottom: none;
}

.result-list .result-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.result-list .result-value {
    display: none;
}

.result-description {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.process-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.timeline-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 1px solid var(--gray-light);
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    color: var(--dark);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-item h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.timeline-item p {
    color: var(--gray);
    font-size: 1rem;
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0D3A2A 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
    font-size: 1.15rem;
}

/* ===========================
   BE A GUEST SECTION
   =========================== */

.be-guest-section {
    padding: 100px 0;
    background: var(--darker);
}

.be-guest-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.be-guest-content h2 {
    margin-bottom: 20px;
}

.be-guest-content p {
    margin-bottom: 32px;
    color: var(--gray);
}

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

.footer {
    background: var(--dark);
    padding: 60px 0 0;
    border-top: 1px solid var(--gray-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-logo .logo-j {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    color: var(--white);
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1rem;
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===========================
   LINK STYLING
   =========================== */

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B89A50;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #B89A50;
    transform: translateX(5px);
    display: inline-flex;
}

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-links.mobile-active {
        display: flex;
    }

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

    .hero-content,
    .about-hero-content,
    .podcast-content,
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cta,
    .podcast-cta {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .container {
        padding: 0 16px;
    }

    .problem-grid,
    .solution-grid,
    .services-grid,
    .clients-grid,
    .episodes-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        gap: 16px;
    }
}
