/* ==========================================================
   SPOTBRIDGE MATRXX // CRAZY EDITORIAL COLLAGE CSS
   Color Palette:
   - Bubblegum Pink: #FF70A6 / #FF5493
   - Electric Lime:  #A7F432 / #70E000
   - Tangerine:      #FF9F1C / #FF7900
   - Cobalt:         #1F51FF / #0E38B1
   - Cream:          #FFFDF0 / #FAF5E4
   - Black / Dark:   #111111 / #1A1A1A
   ========================================================== */

:root {
  --pink: #FF70A6;
  --pink-dark: #FF4288;
  --pink-light: #FFEBF2;
  --lime: #A7F432;
  --lime-dark: #64C200;
  --lime-light: #F2FDE0;
  --tangerine: #FF9F1C;
  --tangerine-dark: #E07E00;
  --tangerine-light: #FFF4E5;
  --cobalt: #1F51FF;
  --cobalt-dark: #0D35C7;
  --cobalt-light: #EBF0FF;
  --cream: #FFFDF0;
  --cream-dark: #F0EAD6;
  --black: #111111;
  --white: #FFFFFF;
  --border-thick: 3px solid #111111;
  --border-medium: 2px solid #111111;
  --shadow-hard: 5px 5px 0px #111111;
  --shadow-hard-lg: 8px 8px 0px #111111;
  --shadow-hard-sm: 3px 3px 0px #111111;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: 'Cabinet Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.font-mono {
  font-family: var(--font-mono);
}

.text-cobalt { color: var(--cobalt); }
.text-pink { color: var(--pink); }
.text-lime { color: var(--lime); }
.text-tangerine { color: var(--tangerine); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.highlight-pink {
  background: var(--pink);
  color: var(--black);
  padding: 2px 10px;
  border: 2px solid #111;
  box-shadow: 3px 3px 0 #111;
  display: inline-block;
  transform: rotate(-1deg);
}

.highlight-lime {
  background: var(--lime);
  color: var(--black);
  padding: 2px 10px;
  border: 2px solid #111;
  box-shadow: 3px 3px 0 #111;
  display: inline-block;
  transform: rotate(1.5deg);
}

.highlight-cobalt {
  background: var(--cobalt);
  color: #fff;
  padding: 2px 10px;
  border: 2px solid #111;
  box-shadow: 3px 3px 0 #111;
  display: inline-block;
}

/* Background Patterns */
.pattern-dots {
  background-image: radial-gradient(#111 1px, transparent 1px);
  background-size: 16px 16px;
}

.pattern-grid {
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pattern-cross {
  background-color: var(--white);
  background-image: radial-gradient(var(--pink) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

/* ==========================================================
   HEADER (SLIM, PROPER, NON-STICKY)
   ========================================================== */
.site-header {
  width: 100%;
  height: 52px;
  background-color: var(--white);
  border-bottom: var(--border-medium);
  position: relative; /* Scrolls away naturally */
  z-index: 100;
}

.header-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-icon {
  display: block;
  flex-shrink: 0;
}

.brand-text {
  font-weight: 900;
  line-height: 1;
}

.main-nav .nav-links {
  display: flex;
  list-style: none;
  gap: 16px;
  align-items: center;
}

.main-nav .nav-links a {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
  line-height: 1.2;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
  background-color: var(--lime);
  border-color: var(--black);
  box-shadow: 2px 2px 0 #111;
  transform: translate(-1px, -1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 #111;
  line-height: 1.2;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 34px;
  height: 34px;
  background: var(--pink);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 #111;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--black);
  border-radius: 2px;
}

/* Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mobile-menu-overlay.active {
  display: flex;
}

.overlay-card {
  width: 100%;
  max-width: 480px;
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  padding: 24px;
  animation: popIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 2px dashed #111;
  padding-bottom: 12px;
}

.close-overlay {
  font-size: 2rem;
  background: var(--pink);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-hard-sm);
}

.overlay-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overlay-nav a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  display: block;
  padding: 10px 16px;
  background: var(--white);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard-sm);
  transition: 0.15s;
}

.overlay-nav a:hover {
  background: var(--lime);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard);
}

.overlay-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px dashed #111;
  text-align: center;
}

/* ==========================================================
   BUTTONS & STICKERS & BADGES
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  padding: 14px 24px;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard-lg);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-hard-sm);
}

.btn-sm {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  padding: 8px 16px;
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s;
}

.btn-sm:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard);
}

.btn-huge {
  font-size: 1.15rem;
  padding: 18px 32px;
}

.btn-block {
  width: 100%;
}

.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { background: var(--lime-dark); color: #fff; }

.btn-pink { background: var(--pink); color: var(--black); }
.btn-pink:hover { background: var(--pink-dark); color: #fff; }

.btn-cobalt { background: var(--cobalt); color: #fff; }
.btn-cobalt:hover { background: var(--cobalt-dark); }

.btn-tangerine { background: var(--tangerine); color: var(--black); }
.btn-tangerine:hover { background: var(--tangerine-dark); color: #fff; }

.btn-cream { background: var(--cream); color: var(--black); }
.btn-cream:hover { background: #fff; }

/* Stickers & Tags */
.sticker-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border: var(--border-medium);
  border-radius: 50px;
  box-shadow: var(--shadow-hard-sm);
  text-transform: uppercase;
}

.badge-lime { background: var(--lime); color: #111; }
.badge-pink { background: var(--pink); color: #111; }
.badge-cobalt { background: var(--cobalt); color: #fff; }
.badge-tangerine { background: var(--tangerine); color: #111; }

.sticker-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 #111;
  text-transform: uppercase;
}

.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }

/* Ticker Banner */
.hero-ticker {
  background: var(--black);
  color: var(--lime);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: var(--border-thick);
}

.ticker-track {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  animation: tickerScroll 25s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================
   HERO SECTION (Crazy Editorial Collage)
   ========================================================== */
.hero-collage {
  padding-bottom: 60px;
  background: var(--cream);
  border-bottom: var(--border-thick);
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding-top: 50px;
  align-items: center;
}

.badge-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 24px;
  color: var(--black);
}

.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 32px;
  max-width: 580px;
}

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

.quick-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-pill {
  background: var(--white);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  box-shadow: var(--shadow-hard-sm);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  display: block;
  line-height: 1;
  color: var(--cobalt);
}

.stat-desc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #444;
}

/* Hero Collage Visual Art */
.hero-visual-collage {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-card {
  position: relative;
  background: var(--white);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.main-art-card {
  width: 100%;
  max-width: 420px;
  transform: rotate(-2deg);
  z-index: 2;
  background: #fff;
  padding: 12px 12px 16px 12px;
}

.collage-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: var(--border-medium);
}

.art-overlay-label {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.card-pin {
  width: 16px;
  height: 16px;
  background: var(--pink);
  border: 2px solid #111;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sub-art-badge {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: var(--lime);
  padding: 16px;
  z-index: 4;
  transform: rotate(4deg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}

.comic-burst {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #111;
  box-shadow: 2px 2px 0 #111;
  text-align: center;
  line-height: 1;
}

.polaroid-caption strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.polaroid-caption p {
  font-size: 0.75rem;
  margin: 0;
  color: #222;
}

.floating-tape {
  position: absolute;
  top: -15px;
  right: 10px;
  background: var(--tangerine);
  color: #111;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 6px 18px;
  border: var(--border-medium);
  transform: rotate(6deg);
  box-shadow: var(--shadow-hard-sm);
  z-index: 5;
}

.floating-sticker {
  position: absolute;
  top: 15px;
  left: -25px;
  z-index: 6;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================
   SECTION BLOCKS & HEADINGS
   ========================================================== */
.section-block {
  padding: 80px 0;
  border-bottom: var(--border-thick);
}

.section-head-editorial {
  margin-bottom: 50px;
}

.section-head-editorial .tag-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.title-display {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 12px 0 16px 0;
}

.lead-paragraph {
  font-size: 1.15rem;
  max-width: 800px;
  color: #333;
}

.subtitle-center {
  font-size: 1.15rem;
  color: #444;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-15 { margin-top: 15px; }

/* ==========================================================
   CHAOS PROBLEM GRID
   ========================================================== */
.chaos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.chaos-item {
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.2s ease;
}

.chaos-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hard-lg);
}

.bg-pink-light { background-color: var(--pink-light); }
.bg-lime-light { background-color: var(--lime-light); }
.bg-tangerine-light { background-color: var(--tangerine-light); }

.chaos-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.chaos-item h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.chaos-item p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.fix-box {
  background: var(--white);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.875rem;
  box-shadow: 2px 2px 0 #111;
}

/* ==========================================================
   NOVEL CARD ARCHITECTURE: FRAMED CANVAS CARDS
   ========================================================== */
.canvas-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.framed-canvas-card {
  position: relative;
  padding-top: 12px;
  padding-left: 12px;
}

.canvas-frame-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  z-index: 1;
}

.frame-cobalt .canvas-frame-bg { background-color: var(--cobalt); }
.frame-pink .canvas-frame-bg { background-color: var(--pink); }
.frame-lime .canvas-frame-bg { background-color: var(--lime); }
.frame-tangerine .canvas-frame-bg { background-color: var(--tangerine); }

.canvas-card-inner {
  position: relative;
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-hard);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.framed-canvas-card:hover .canvas-card-inner {
  transform: translate(-6px, -6px);
  box-shadow: 12px 12px 0 #111;
}

.card-media {
  position: relative;
  height: 220px;
  border-bottom: var(--border-thick);
  overflow: hidden;
  background: #eee;
}

.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.framed-canvas-card:hover .card-thumb {
  transform: scale(1.06);
}

.card-badge-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border: var(--border-medium);
  border-radius: 50px;
  box-shadow: 2px 2px 0 #111;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.meta-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--cream);
  border: 1.5px solid #111;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-summary {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-specs-list {
  background: var(--cream);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed #ccc;
}

.spec-row:last-child {
  border-bottom: none;
}

.card-action {
  margin-top: auto;
}

.center-cta-wrap {
  text-align: center;
}

/* ==========================================================
   CALCULATOR TEASER SECTION & APP INTERACTIVE STYLES
   ========================================================== */
.calculator-teaser-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.widget-window {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  color: var(--black);
  overflow: hidden;
}

.widget-topbar {
  background: var(--black);
  color: var(--lime);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-left: 6px;
  font-weight: 700;
}

.widget-body {
  padding: 24px;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 6px;
}

.mockup-val {
  font-weight: 700;
  color: var(--cobalt);
}

.mockup-divider {
  height: 2px;
  background: var(--black);
  margin: 16px 0;
}

.mockup-total {
  background: var(--lime-light);
  border: var(--border-medium);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.mockup-total span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.total-big {
  font-family: var(--font-display) !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  color: var(--black);
  margin-top: 4px;
}

/* ==========================================================
   COMPARISON TABLE
   ========================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  background: var(--white);
}

.editorial-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.editorial-table th {
  background: var(--black);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 16px 20px;
  border-right: 2px solid #333;
}

.editorial-table th:last-child {
  border-right: none;
}

.editorial-table th.col-highlight {
  background: var(--cobalt);
}

.editorial-table td {
  padding: 18px 20px;
  border-bottom: 2px solid #111;
  border-right: 2px solid #eee;
  font-size: 0.95rem;
}

.editorial-table td:last-child {
  border-right: none;
}

.editorial-table tr:last-child td {
  border-bottom: none;
}

.editorial-table td.col-highlight {
  background: var(--lime-light);
  border-left: 2px solid #111;
  border-right: 2px solid #111;
}

/* ==========================================================
   TESTIMONIALS STICKER BOARD
   ========================================================== */
.testimonial-sticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-sticker {
  border: var(--border-thick);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-hard);
  position: relative;
}

.card-tilt-1 { transform: rotate(-1.5deg); }
.card-tilt-2 { transform: rotate(1.2deg); }
.card-tilt-3 { transform: rotate(-1deg); }

.tape-corner {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 80px;
  height: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #111;
  transform: rotate(-5deg);
}

.stars {
  color: var(--tangerine);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #222;
}

.reviewer-info strong {
  display: block;
  font-size: 1rem;
}

.reviewer-info span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #555;
}

/* Blog Preview Grid */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* CTA Banner Collage */
.section-cta-banner {
  background: var(--pink);
  padding: 90px 0;
  border-bottom: var(--border-thick);
  position: relative;
  text-align: center;
}

.cta-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.cta-comic-tag {
  background: var(--black);
  color: var(--lime);
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  transform: rotate(-2deg);
}

.cta-heading {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.2rem;
  margin-bottom: 36px;
  color: #111;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* ==========================================================
   COOKIE CONSENT BANNER (PERSISTENT LOGIC)
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  padding: 22px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.cookie-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-icon {
  font-size: 1.4rem;
}

.cookie-header h4 {
  font-size: 1.1rem;
}

.cookie-text {
  font-size: 0.875rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-link-pref {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  margin-left: auto;
}

/* ==========================================================
   FOOTER (MANDATORY ON ALL PAGES)
   ========================================================== */
.site-footer {
  background: var(--black);
  color: #fff;
  padding: 70px 0 30px 0;
  border-top: var(--border-thick);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-bio {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-card {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.85rem;
  color: #ddd;
}

.footer-contact-card p {
  margin-bottom: 6px;
}

.footer-contact-card a {
  color: var(--lime);
  text-decoration: underline;
}

.footer-heading {
  font-size: 1.1rem;
  color: var(--lime);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-links a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.footer-tax-badge {
  margin-top: 20px;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #fff;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 26px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #888;
  max-width: 680px;
}

.footer-badge-list {
  display: flex;
  gap: 10px;
}

.mono-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: #222;
  color: #bbb;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #444;
}

/* ==========================================================
   PAGE HERO / SUBPAGE HEADER STYLES
   ========================================================== */
.page-hero {
  padding: 60px 0 50px 0;
  background: var(--cream);
  border-bottom: var(--border-thick);
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 16px 0;
}

.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 16px;
  color: #666;
}

.breadcrumbs a {
  color: var(--cobalt);
  text-decoration: underline;
}

/* ==========================================================
   INTERACTIVE CALCULATOR PAGE STYLES
   ========================================================== */
.calc-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

.calc-control-panel {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  padding: 32px;
}

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

.calc-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-slider {
  flex-grow: 1;
  height: 12px;
  border-radius: 6px;
  background: #ddd;
  outline: none;
  accent-color: var(--cobalt);
}

.calc-slider-val {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--lime);
  border: var(--border-medium);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  min-width: 80px;
  text-align: center;
}

.calc-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card label {
  display: block;
  padding: 12px;
  background: var(--cream);
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.15s;
}

.radio-card input:checked + label {
  background: var(--pink);
  box-shadow: var(--shadow-hard-sm);
  transform: translate(-2px, -2px);
}

.calc-summary-card {
  background: var(--black);
  color: #fff;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  padding: 32px;
  position: sticky;
  top: 20px;
}

.summary-header {
  border-bottom: 2px dashed #444;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.summary-table {
  width: 100%;
  margin-bottom: 24px;
}

.summary-table td {
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border-bottom: 1px solid #222;
}

.summary-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--lime);
}

.summary-final-box {
  background: #1a1a1a;
  border: 2px solid var(--lime);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.final-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--lime);
}

/* ==========================================================
   LEGAL PAGES & CONTACT FORM STYLES
   ========================================================== */
.legal-content-card {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  padding: 40px;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--cobalt);
}

.legal-section p, .legal-section ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

.legal-section ul {
  padding-left: 24px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-table th, .legal-table td {
  border: var(--border-medium);
  padding: 12px 16px;
  font-size: 0.875rem;
}

.legal-table th {
  background: var(--lime);
  font-family: var(--font-display);
}

/* Contact Form Grid */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.contact-form-box {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  padding: 36px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--cream);
  outline: none;
}

.form-control:focus {
  border-color: var(--cobalt);
  background: #fff;
  box-shadow: var(--shadow-hard-sm);
}

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

.map-mockup-frame {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  overflow: hidden;
}

.map-header {
  background: var(--black);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.map-embed-placeholder {
  height: 260px;
  background: url('images/photo-1526778548025-fa2f459cd5c1.png') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-badge {
  background: var(--pink);
  border: var(--border-medium);
  box-shadow: var(--shadow-hard-sm);
  padding: 8px 14px;
  font-weight: 800;
  border-radius: 50px;
}

.map-info-body {
  padding: 24px;
  background: var(--cream);
}

/* ==========================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================== */
@media (max-width: 1024px) {
  .hero-layout,
  .calc-grid-layout,
  .contact-grid-layout,
  .calculator-teaser-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .site-header {
    height: 48px;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-visual-collage {
    min-height: 380px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .legal-content-card,
  .contact-form-box,
  .calc-control-panel {
    padding: 20px;
  }
}