/* === PROMPTISH.IO DESIGN SYSTEM === */
/* Hero: full cyberpunk. Inner pages: restrained professional. */

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

:root {
    --neon-pink: #FF006E;
    --neon-purple: #8B5CF6;
    --neon-cyan: #00F0FF;
    --neon-orange: #FF6B35;
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 20, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(0, 240, 255, 0.3);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== */
/* CYBERPUNK BACKGROUND */
/* Only on landing page */
/* ==================== */

body.page-home::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 0, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.neon-glow-1 {
    position: fixed;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15), transparent 70%);
    pointer-events: none; z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite;
}

.neon-glow-2 {
    position: fixed;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 70%);
    pointer-events: none; z-index: 0;
    animation: pulse-glow 10s ease-in-out infinite reverse;
}

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

/* ========== */
/* LAYOUT     */
/* ========== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ========== */
/* HEADER/NAV */
/* ========== */

header {
    padding: 20px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 110, 0.15);
}

/* On home page, header starts hidden and animates in */
body.page-home header { opacity: 0; }

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

.logo {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.logo::before {
    content: '> ';
    color: var(--neon-pink);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

nav a.nav-cta {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    transition: all 0.3s;
}

nav a.nav-cta:hover {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    transform: translateY(-1px);
    text-shadow: none;
}

/* Mobile menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 8, 0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

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

.mobile-menu a {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.mobile-menu a:hover { color: var(--neon-cyan); }

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

.btn {
    font-family: var(--font-mono);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
}

.btn-primary::before { content: '> '; }

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.btn-secondary::before { content: '> '; }

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ======================== */
/* HERO (Landing page only) */
/* ======================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-content { max-width: 900px; }

.terminal-window {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow:
        0 0 40px rgba(255, 0, 110, 0.2),
        inset 0 0 60px rgba(139, 92, 246, 0.05);
    opacity: 0;
    animation: pixelate-in 0.8s steps(10) forwards;
}

@keyframes pixelate-in {
    0% { opacity: 0; filter: blur(10px); transform: scale(0.95); }
    50% { filter: blur(5px); }
    100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

.terminal-header {
    background: rgba(10, 10, 15, 0.9);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) { background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); }
.terminal-dot:nth-child(2) { background: var(--neon-orange); box-shadow: 0 0 10px var(--neon-orange); }
.terminal-dot:nth-child(3) { background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }

.terminal-body {
    padding: 32px;
    font-family: var(--font-mono);
    font-size: 1rem;
    line-height: 1.9;
}

.terminal-line { display: flex; margin-bottom: 8px; }
.prompt { color: var(--neon-pink); margin-right: 12px; text-shadow: 0 0 10px rgba(255, 0, 110, 0.5); }
.command { color: rgba(255, 255, 255, 0.9); }
.typing-cursor {
    display: inline-block; width: 8px; height: 18px;
    background: var(--neon-cyan); margin-left: 2px;
    animation: blink 1s step-end infinite; opacity: 0;
}

@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.output { color: rgba(255, 255, 255, 0.6); margin-left: 24px; opacity: 0; }

.hero-text { opacity: 0; }

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.neon-text {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* ========================== */
/* INNER PAGE HERO (restrained) */
/* ========================== */

.page-hero {
    padding: 160px 0 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 240, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.page-hero .hero-sub {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* =================== */
/* SECTION STYLES      */
/* =================== */

.section {
    padding: 100px 0;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '// ';
    color: var(--text-muted);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

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

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 36px;
    transition: all 0.4s;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
    transition: height 0.4s;
}

.service-card:hover::before { height: 100%; }

.service-card:hover {
    background: rgba(15, 15, 20, 0.8);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    display: block;
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
    margin-top: 16px;
}

.service-list li {
    padding: 6px 0 6px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
}

.service-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    font-family: var(--font-mono);
    color: var(--neon-cyan);
}

/* Inner page uses mono list style */
.inner-page .service-list li::before {
    content: '\2014';
    color: var(--neon-cyan);
    opacity: 0.5;
}

/* ================ */
/* BEFORE / AFTER   */
/* ================ */

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.ba-box {
    background: var(--bg-darker);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.4s;
}

.ba-box:hover { border-color: var(--border-hover); }

.ba-box h3 { font-size: 1.15rem; margin-bottom: 24px; }
.ba-box.ba-before h3 { color: var(--text-muted); }
.ba-box.ba-after h3 { color: var(--neon-cyan); }

.ba-step {
    display: grid;
    grid-template-columns: 1.75rem 1fr;
    gap: 0.75rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: baseline;
}

.ba-step:last-child { border-bottom: none; }

.ba-step-n {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.ba-step p { font-size: 0.9rem; margin: 0; color: var(--text-secondary); }

/* ============== */
/* PROCESS STEPS  */
/* ============== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: border-color 0.4s, transform 0.4s;
}

.process-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.process-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.process-step h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* =============== */
/* PRINCIPLES      */
/* =============== */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.principle-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 28px;
    transition: border-color 0.4s, transform 0.4s;
}

.principle-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.principle-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.principle-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* =========== */
/* INDUSTRIES  */
/* =========== */

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.industry-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.industry-tag:hover {
    color: var(--neon-cyan);
    border-color: var(--border-hover);
}

/* ====== */
/* FAQ    */
/* ====== */

.faq-list { margin-top: 40px; }

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-q:hover { color: var(--neon-cyan); }

.faq-q h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--neon-cyan);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
    padding: 0 0 20px;
}

.faq-a-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ */
/* FORMS        */
/* ============ */

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

.form-group .field-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.form-input::placeholder { color: var(--text-muted); }

textarea.form-input { min-height: 100px; resize: vertical; }

select.form-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B0B0B0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

select.form-input option { background: var(--bg-dark); color: var(--text-primary); }

#form-message {
    min-height: 24px;
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* Intake form submit button */
.intake-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--neon-cyan);
    color: var(--bg-dark);
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-mono);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.intake-submit:hover { background: #00c4e6; transform: translateY(-1px); }
.intake-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.intake-success, .intake-error { display: none; text-align: center; padding: 32px 0; }

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

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.06);
}

.blog-card .blog-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .read-more {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

/* ============ */
/* PROOF BAR    */
/* ============ */

.proof-bar {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.proof-bar p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
}

/* ============ */
/* PAIN CARDS   */
/* ============ */

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.4s, transform 0.4s;
}

.pain-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.pain-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.pain-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.pain-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* =============== */
/* OUTCOME CARDS   */
/* =============== */

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.outcome-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.4s, transform 0.4s;
}

.outcome-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.outcome-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 48px;
    padding-top: 2px;
}

.outcome-label.before { color: var(--text-muted); }
.outcome-label.after { color: var(--neon-cyan); }

.outcome-text h4 { font-size: 1rem; margin-bottom: 6px; }
.outcome-text p { font-size: 0.88rem; margin: 0; color: var(--text-secondary); }

/* =================== */
/* CROSS-LINK SECTION  */
/* =================== */

.cross-link {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
}

.cross-link h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cross-link p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 0, 110, 0.15);
}

.ft-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.ft-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 12px;
}

.ft-col h4 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.ft-col ul { list-style: none; }

.ft-col li { margin-bottom: 8px; }

.ft-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.ft-col a:hover { color: var(--neon-cyan); }

.ft-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.ft-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

.ft-bottom a:hover { color: var(--neon-cyan); }

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

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

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

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

@media (max-width: 768px) {
    .container, .container-narrow, .header-content { padding: 0 24px; }

    nav { display: none; }
    .hamburger { display: block; }

    .hero { padding: 120px 0 80px; }

    .terminal-body { padding: 20px; font-size: 0.85rem; }

    .cta-group { flex-direction: column; }
    .btn { width: 100%; text-align: center; }

    .section, .section-alt { padding: 60px 0; }

    .service-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .principles-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .outcome-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}
