/* =========================================================================
   Moon Webdesign - Editorial Navy & Electric Spice
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    /* Brand Navy */
    --c-navy: #071f4b;
    --c-navy-light: #0a2453;
    
    /* Light Theme Basics */
    --c-bg: #fcfcfd;
    --c-bg-panel: #f4f6fa;
    --c-bg-lighter: #e8ebf2;
    
    --c-text-main: #071f4b;
    --c-text-muted: #5e6d8a;
    --c-border: #d7dce6;
    
    /* Spice Accent – subtle steel blue (no orange) */
    --c-accent-spice: #7ea8d8;

    /* Typography */
    --f-heading: 'Outfit', sans-serif;
    --f-body: 'Space Grotesk', sans-serif;

    /* Spacing & Layout */
    --radius: 0px; 
    --trans-fast: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    --trans-reveal: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--c-bg);
    color: var(--c-text-main);
    font-family: var(--f-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Sections with Navy Background */
.bg-navy {
    background-color: var(--c-navy);
    color: #ffffff;
}
.bg-navy .text-muted { color: #aab8d1; }
.bg-navy .section-desc { color: #aab8d1; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy h5, .bg-navy h6, .bg-navy .nav-link { color: #ffffff; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 800;
    color: var(--c-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.text-muted { color: var(--c-text-muted); }

/* Containers & Sections */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; }
.border-top { border-top: 1px solid var(--c-border); }
.bg-darker { background-color: var(--c-bg-panel); }

.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; }
.section-desc { font-size: 1.5rem; color: var(--c-text-muted); max-width: 700px; }

h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; letter-spacing: 0; }

a { text-decoration: none; color: inherit; transition: var(--trans-fast); }
.hover-underline { position: relative; }
.hover-underline::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0%; height: 2px;
    background: var(--c-accent-spice); transition: var(--trans-fast);
}
.bg-navy .hover-underline::after { background: var(--c-accent-spice); }
.hover-underline:hover::after { width: 100%; }

/* Navigation */
.nav-container { position: relative; }

/* Marquee */
.marquee-banner {
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 200;
    font-family: var(--f-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.marquee-content span { margin-right: 0; padding: 0 3rem; border-right: 1px solid rgba(255,255,255,0.2); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar – Navy */
.navbar {
    padding: 1.5rem 0;
    background: var(--c-navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 3rem; }
.nav-link { font-family: var(--f-heading); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.75); }
.nav-link:hover { color: #ffffff; }

/* Premium Dropdown */
.nav-dropdown { position: relative; display: inline-block; padding: 1rem 0; cursor: pointer; }
.dropdown-content {
    display: flex; flex-direction: column; opacity: 0; visibility: hidden;
    position: absolute; top: 100%; left: -30px; 
    background: rgba(3, 11, 26, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    min-width: 320px; box-shadow: 0px 20px 40px rgba(0,0,0,0.8); z-index: 300;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform: translateY(15px);
    padding: 1rem; gap: 0.3rem;
}
.nav-dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }

.dd-item {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; text-decoration: none; 
    border-radius: 8px; transition: all 0.2s ease; border: 1px solid transparent; text-align: left;
}
.dd-item:hover {
    background-color: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); transform: translateX(5px);
}
.dd-text { display: flex; flex-direction: column; gap: 0.2rem; }
.dd-text strong { font-family: var(--f-heading); font-size: 0.95rem; color: #ffffff; letter-spacing: 0.03em; }
.dd-text span { font-family: var(--f-body); font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.4; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--f-heading); font-weight: 800; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 0.1em; cursor: pointer; transition: all var(--trans-fast);
    padding: 1rem 2.5rem; border: none; border-radius: var(--radius);
}
.btn-sharp { border: 1px solid rgba(255,255,255,0.3); padding: 0.7rem 1.5rem; color: #ffffff; }
.btn-sharp:hover { background: #ffffff; color: var(--c-navy); }

.border-accent { border-color: rgba(255,255,255,0.5); color: #ffffff; }
.border-accent:hover { background: rgba(255,255,255,0.15); }

.btn-primary-hero { background: #ffffff; color: var(--c-navy); border: 1px solid #ffffff; }
.btn-primary-hero:hover { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.6); }

.btn-primary { background: var(--c-navy); color: #ffffff; border: 1px solid var(--c-navy); }
.btn-primary:hover {
    background: var(--c-navy-light);
    color: #ffffff;
    border-color: var(--c-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 31, 75, 0.15);
}

.btn-outline-hero { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-hero:hover { border-color: #ffffff; background: rgba(255,255,255,0.05); }

/* btn-sharp on light backgrounds */
.btn-sharp { background: transparent; color: var(--c-text-main); border: 1.5px solid var(--c-text-main); }
.btn-sharp:hover { background: var(--c-text-main); color: #fff; }

/* Portfolio / project cards – full card clickable */
.port-card { position: relative; }
.port-card-link {
    position: absolute; inset: 0;
    z-index: 2;
    display: block;
    cursor: pointer;
}
.port-card a.port-title-link { position: relative; z-index: 3; }


.block-btn { width: 100%; padding: 1.25rem; font-size: 1rem; }

/* Hero Tag */
.hero-tag {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--f-body); font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15); padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}
.hero-tag.hero-tag-dark {
    color: var(--c-navy) !important;
    border-color: rgba(7, 31, 75, 0.25) !important;
}
.hero-tag-dot {
    display: inline-block; width: 8px; height: 8px;
    background: var(--c-accent-spice); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Elite Hero */
.hero { 
    padding: 4rem 0 5rem; 
    min-height: 70vh; display: flex; align-items: flex-start; 
    position: relative; overflow: hidden;
    background: radial-gradient(circle at 80% 20%, var(--c-navy-light) 0%, var(--c-navy) 70%);
}
.elite-hero-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-title-elite {
    font-family: var(--f-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #ffffff;
}
.hero-title-elite em {
    font-style: normal;
    color: #ffffff;
    opacity: 0.6;
}
.elite-manifesto {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.15);
}
.elite-manifesto strong {
    color: #ffffff;
    font-weight: 700;
}
.hero-bg-mark {
    position: absolute;
    bottom: -15%; right: -5%;
    font-family: var(--f-heading);
    font-size: 28vw;
    font-weight: 900;
    color: #ffffff;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    line-height: 0.8;
}
.hero-actions { display: flex; gap: 1.5rem; }

/* Stats Bar */
.stats-bar {
    background: var(--c-bg-panel);
    border-bottom: 1px solid var(--c-border);
    border-top: 1px solid var(--c-border);
    padding: 3rem 0;
}
.stats-inner { display: flex; align-items: center; gap: 2rem; }
.stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-value {
    font-family: var(--f-heading); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--c-text-main); line-height: 1; margin-bottom: 0.4rem;
    letter-spacing: -0.04em;
}
.stat-label { font-family: var(--f-body); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted); }
.stat-divider { width: 1px; height: 50px; background: var(--c-border); flex-shrink: 0; }

/* Comparison Table Editorial */
.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; }
.split-table { width: 100%; font-family: var(--f-body); border-top: 1px solid var(--c-border); }
.table-row { display: flex; border-bottom: 1px solid var(--c-border); }
.table-header { font-family: var(--f-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; color: var(--c-text-muted); }
.col { flex: 1; padding: 1.5rem 1rem; }
.col.label { font-weight: 700; color: var(--c-text-main); }
.highlight-col { background: var(--c-bg-panel); color: var(--c-navy); font-weight: 800; border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); }

/* Editorial Grid for Services */
.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ed-card { padding: 3.5rem 2.5rem; border: 1px solid var(--c-border); transition: var(--trans-fast); background: var(--c-bg); }
.ed-card:hover { border-color: var(--c-text-main); box-shadow: 8px 8px 0 var(--c-text-main); transform: translate(-4px, -4px); }
.ed-number { font-family: var(--f-heading); font-size: 2rem; font-weight: 800; color: var(--c-border); margin-bottom: 1.5rem; line-height: 1; }
.ed-title { font-size: 1.4rem; margin-bottom: 1rem; text-transform: none; letter-spacing: -0.01em; }
.ed-text { color: var(--c-text-muted); font-size: 1.1rem; }

/* Portfolio Grid */
.portfolio-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5rem 3rem; }
.port-item { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.port-image { 
    position: relative; width: 100%; border: 1px solid var(--c-border); 
    background: var(--c-bg-lighter);
    box-shadow: 10px 10px 0 var(--c-bg-panel); transition: var(--trans-fast);
    overflow: visible;
    margin-bottom: 2rem;
}
.port-item:hover .port-image { transform: translate(-5px, -5px); box-shadow: 15px 15px 0 var(--c-navy); border-color: var(--c-navy); }
.port-image img { width: 100%; height: auto; display: block; filter: none; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.port-item:hover .port-image img { transform: scale(1.05); }

.img-placeholder { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-family: var(--f-heading); font-weight: 800; font-size: 2rem; color: var(--c-border); text-transform: uppercase; letter-spacing: 0.1em; background: repeating-linear-gradient( 45deg, var(--c-bg-lighter), var(--c-bg-lighter) 10px, var(--c-bg-panel) 10px, var(--c-bg-panel) 20px ); }

/* The brutalist metric block */
.metric-block {
    position: absolute; bottom: 1rem; right: 1rem;
    background: var(--c-navy); color: #ffffff;
    padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.2);
    display: flex; flex-direction: column; align-items: flex-start;
    z-index: 10;
}
.metric-value { font-family: var(--f-heading); font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.metric-label { font-family: var(--f-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.port-info { margin-top: 1.5rem; }
.port-meta { font-family: var(--f-body); font-weight: 700; color: var(--c-text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }

.breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--c-border);
  padding: 0.8rem 0;
}

.breadcrumb-bar--hero {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 2.25rem;
  position: relative;
  z-index: 11;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.85rem;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb-bar--hero .breadcrumb-list {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.breadcrumb-list a {
  color: var(--c-navy);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-bar--hero .breadcrumb-list a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.breadcrumb-bar--hero .breadcrumb-list a:hover {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-list a:hover { text-decoration: underline; }

.breadcrumb-sep {
  color: rgba(7, 31, 75, 0.35);
  user-select: none;
  font-weight: 400;
  flex-shrink: 0;
  padding: 0 0.15rem;
  opacity: 0.7;
}

.breadcrumb-bar--hero + .article-meta,
.breadcrumb-bar--hero + .port-meta.article-meta {
  display: none;
}

.breadcrumb-bar--hero + .hero-tag,
.breadcrumb-bar--hero + .article-meta + .hero-tag,
.breadcrumb-bar--hero + .port-meta + .hero-tag {
  margin-top: 0;
}

.breadcrumb-bar--hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: var(--c-text-muted);
  font-weight: 500;
}

.breadcrumb-bar--hero .breadcrumb-current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  max-width: min(100%, 28rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-meta time,
.article-updated time {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.port-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; text-transform: none; }
.port-info p { color: var(--c-text-muted); font-size: 1.1rem; }

/* Testimonials */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
}
.testi-card {
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-navy);
    padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between;
    gap: 2rem; transition: var(--trans-fast);
    font-style: normal;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(7,31,75,0.08); }
.testi-card p { font-size: 1.1rem; color: var(--c-text-main); line-height: 1.7; }
.testi-card footer { display: flex; flex-direction: column; gap: 0.2rem; }
.testi-card strong { font-family: var(--f-heading); font-weight: 700; font-size: 1rem; color: var(--c-text-main); }
.testi-card span { font-size: 0.85rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Comparison Table — Desktop */
.split-table { border: 1px solid var(--c-border); border-radius: 2px; overflow: hidden; }
.table-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--c-border); }
.table-row:last-child { border-bottom: none; }
.table-row.table-header { background: var(--c-bg-lighter); }
.table-row.table-header .col { font-family: var(--f-heading); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted); padding: 0.85rem 1.25rem; }
.col { padding: 1rem 1.25rem; font-size: 0.95rem; color: var(--c-text-main); border-right: 1px solid var(--c-border); display: flex; align-items: center; }
.col:last-child { border-right: none; }
.col.label { font-family: var(--f-heading); font-weight: 700; font-size: 0.82rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.col.text-muted { color: var(--c-text-muted); }
.col.highlight-col { background: var(--c-navy); color: #ffffff; font-weight: 700; }
.table-row.table-header .col.highlight-col { color: #fff; font-style: normal; font-size: 0.78rem; }

/* CTA Area */
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.urgency-banner {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.5rem; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
    font-family: var(--f-heading); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em;
    margin-top: 2rem;
}
.input-editorial {
    width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.2);
    color: #ffffff; font-family: var(--f-body); font-size: 1.25rem; padding: 1rem 0;
    margin-bottom: 2rem; transition: var(--trans-fast); border-radius: 0; outline: none;
}
.input-editorial:focus { border-bottom-color: var(--c-accent-spice); }
.input-editorial::placeholder { color: rgba(255,255,255,0.5); }

/* Footer */
.footer { padding: 5rem 0 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 48px; margin-bottom: 1.2rem; display: block; }
.footer-brand p { font-size: 0.95rem; color: #aab8d1; line-height: 1.6; max-width: 260px; }
.footer-col-title {
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.95rem; color: #aab8d1; transition: color 0.2s; }
.footer-links a:hover { color: #ffffff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-family: var(--f-heading);
}

/* Dual-row review carousel */
.reviews-track-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: reviewScroll 40s linear infinite;
    width: max-content;
}
.reviews-track.reverse { animation: reviewScrollReverse 45s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes reviewScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--c-bg-panel);
    border: 1px solid var(--c-border);
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-stars { color: #f0a500; font-size: 0.9rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.65; }
.review-author { font-family: var(--f-heading); font-weight: 700; font-size: 0.9rem; color: var(--c-text-main); }
.review-company { font-size: 0.8rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all var(--trans-reveal); }
.reveal-up.active { opacity: 1; transform: translateY(0); }
.reveal-side { opacity: 0; transform: translateX(30px); transition: all var(--trans-reveal); }
.reveal-side.active { opacity: 1; transform: translateX(0); }

#mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; }

@media (max-width: 992px) {
    .layout-split { grid-template-columns: 1fr; gap: 3rem; }
    .editorial-grid { grid-template-columns: 1fr; }
    .portfolio-list { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Hamburger Menu Navbar */
    .nav-container { flex-direction: row; align-items: center; justify-content: space-between; }
    #mobile-menu-btn { display: block; }
    .nav-links { 
        display: none !important; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--c-navy); border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 2rem 1.5rem; flex-direction: column !important; gap: 1.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 1000;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { display: flex !important; }
    .nav-links a { font-size: 1.25rem; }
    .nav-dropdown { pointer-events: auto; } /* Re-enable dropdown logic manually if needed, or hide */
    .dropdown-content { display: none !important; }
    
    .elite-hero-layout { grid-template-columns: 1fr; gap: 3rem; align-items: start; }
    .elite-manifesto { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; margin-top: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; margin: 0 !important; }
    .stats-inner { flex-wrap: wrap; flex-direction: column; gap: 2rem; }
    .stat-item { flex: 1 1 100%; text-align: center; }
    .stat-divider { display: none; }
}

@media (max-width: 768px) {
    /* ---- Mobile Comparison Table: Clean Stacked Feature List ---- */
    .split-table { 
        border: none; overflow: visible; width: 100%; 
        display: flex; flex-direction: column; gap: 0.5rem;
    }
    .table-row.table-header { display: none !important; }

    .table-row { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "lbl lbl"
            "bad good";
        border: 1px solid var(--c-border); border-radius: 10px;
        overflow: hidden; background: #fff; box-shadow: none;
    }

    .table-row .col.label {
        grid-area: lbl;
        display: block;
        font-family: var(--f-heading); font-weight: 800; font-size: 0.8rem;
        text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted);
        padding: 0.65rem 1rem;
        border-right: none; border-bottom: 1px solid var(--c-border);
        background: var(--c-bg-lighter);
    }

    .table-row .col.text-muted {
        grid-area: bad;
        display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
        font-size: 0.95rem; font-style: normal;
        color: var(--c-text-muted) !important;
        padding: 0.85rem 1rem; border-right: 1px solid var(--c-border); background: transparent;
    }
    .table-row .col.text-muted::before {
        content: "Legacy"; display: block;
        font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
        color: #f43f5e; margin-bottom: 0.3rem;
    }

    .table-row .col.highlight-col {
        grid-area: good;
        display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
        font-size: 0.95rem; font-weight: 700;
        color: #fff !important;
        padding: 0.85rem 1rem; border: none; background: var(--c-navy) !important; border-radius: 0;
    }
    .table-row .col.highlight-col::before {
        content: "Moon"; display: block;
        font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
        color: var(--c-accent-spice); margin-bottom: 0.3rem;
    }

    /* Typography scaling */
    .hero-title-elite { font-size: clamp(2.2rem, 10vw, 3rem) !important; line-height: 1.1; }
    .section-title { font-size: clamp(1.8rem, 8vw, 2.2rem) !important; }
    .hero { padding: 3rem 0; min-height: auto; text-align: center; }
    
    /* Force inline 3-grids to stack */
    div[style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
    div[style*="grid-template-columns: 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
    
    /* Form Stacking */
    .audit-form [style*="display: flex"] { flex-direction: column !important; gap: 1rem !important; }
    .audit-form input { margin-bottom: 0 !important; }
    
    .review-card { width: 280px; padding: 1.5rem; }
}

/* =========================================================================
   Website Hosting & Premium Onderhoud Layout
   ========================================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: #ffffff;
    border: 1px solid var(--c-border);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--trans-fast);
}

.price-card:hover {
    border-color: var(--c-text-main);
    box-shadow: 8px 8px 0 var(--c-text-main);
    transform: translate(-4px, -4px);
}

.price-card.popular {
    border-color: var(--c-navy);
    background: #ffffff;
    border-top: 5px solid var(--c-navy);
}

.price-card.popular::before {
    content: "MEEST GEKOZEN";
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    background: var(--c-accent-spice);
    color: var(--c-navy);
    padding: 0.25rem 0.6rem;
}

.price-header {
    margin-bottom: 2rem;
}

.price-title {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--c-navy);
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.4;
}

.price-value-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.price-currency {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--c-navy);
    align-self: flex-start;
    margin-top: 0.2rem;
}

.price-val {
    font-family: var(--f-heading);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--c-navy);
    line-height: 1;
}

.price-period {
    font-family: var(--f-body);
    font-size: 0.95rem;
    color: var(--c-text-muted);
    margin-left: 0.25rem;
}

.price-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 3rem;
}

.price-card .btn {
    margin-top: auto;
}

.price-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: var(--c-text-main);
    line-height: 1.4;
}

.price-feature-item i {
    font-size: 1.2rem;
    color: var(--c-accent-spice);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .price-card {
        padding: 2.5rem 2rem;
    }
}

/* Homepage ROI Calculator Input Styling */
.calc-input-homepage {
    transition: border-color var(--trans-fast);
}
.calc-input-homepage:focus {
    border-color: var(--c-navy) !important;
    box-shadow: 0 0 0 3px rgba(7, 31, 75, 0.08);
}