/* ===============================
   BOREDMOOD STUDIO — V3 DESIGN SYSTEM
   White Brutalist Swiss — Black borders, uppercase, Helvetica + Courier
   =============================== */

/* --- Reset & Tokens --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color System — White Brutalist */
  --bg: #ffffff;
  --fg: #000000;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Border */
  --border: 1px solid #000000;
  --border-light: 1px solid #e5e5e5;

  /* Typography */
  --font-main: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  /* Spacing */
  --grid-pad: 12px;
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 16px;
  --gap-xl: 24px;
  --gap-2xl: 32px;
  --gap-3xl: 48px;

  /* Animation */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --transition-base: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--fg);
  text-decoration: none;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
.h1 {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: -0.05em;
}

/* ========================================
   UTILITY — Pill badge (black circle with white text)
   ======================================== */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   STATUS DOT  — Green pulsing
   ======================================== */
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00cc00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ========================================
   CURSOR GLOW — Hidden in V3 (brutalist, no glow)
   ======================================== */
#cursor-glow {
  display: none;
}

/* ========================================
   NAVIGATION — Fixed top bar, black border bottom
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  border-bottom: var(--border);
  transition: none;
}

#navbar.scrolled {
  box-shadow: none;
  background: var(--bg);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--grid-pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--fg);
}

.logo-accent {
  font-weight: 700;
}

.logo-dot {
  color: var(--fg);
}

.nav-version {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-links li a:hover {
  text-decoration: line-through;
}

.nav-cta {
  background: var(--fg) !important;
  color: var(--bg) !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  transition: transform 0.2s !important;
}

.nav-cta:hover {
  text-decoration: none !important;
  transform: scale(1.02);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ========================================
   HERO SECTION — Brutalist grid, big title
   ======================================== */
#hero {
  margin-top: 42px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  border-bottom: var(--border);
  position: relative;
}

.hero-bg-grid,
.hero-glow {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero-tag {
  padding: var(--grid-pad);
  border-bottom: var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  padding: var(--grid-pad);
  font-family: var(--font-main);
  font-size: clamp(3rem, 9vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  border-bottom: var(--border);
}

.hero-title br {
  display: block;
}

.gradient-text {
  color: var(--fg);
  -webkit-text-fill-color: var(--fg);
  background: none;
  -webkit-background-clip: unset;
}

.hero-sub {
  padding: var(--grid-pad);
  border-bottom: var(--border);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 50ch;
}

.hide-mobile {
  display: inline;
}

.hero-actions {
  padding: var(--grid-pad);
  display: flex;
  gap: var(--gap-md);
  border-bottom: var(--border);
}

/* Buttons — Brutalist style */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: var(--border);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--bg);
  color: var(--fg);
}

.btn-arrow {
  font-size: 1.1em;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* Hero Stats — 4-column row with borders */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: none;
}

.stat {
  padding: var(--grid-pad);
  border-right: var(--border);
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-scroll-indicator {
  display: none;
}

/* ========================================
   SECTION HEADER — Sticky label bar
   ======================================== */
.section-inner {
  width: 100%;
}

.section-header {
  position: sticky;
  top: 42px;
  z-index: 50;
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--grid-pad);
  border-bottom: var(--border);
}

.section-title {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
}

/* ========================================
   SERVICES — Feature sections with 12-col grid
   ======================================== */
#services {
  border-bottom: var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.service-card {
  grid-column: span 3;
  border-right: var(--border);
  padding: 2rem var(--grid-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  background: var(--bg);
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  background: var(--fg);
  color: var(--bg);
}

.service-card:hover .service-icon svg {
  stroke: var(--bg);
}

.service-card:hover .service-index {
  background: var(--bg);
  color: var(--fg);
}

.service-card:hover .service-arrow {
  color: var(--bg);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--fg);
  transition: stroke 0.2s;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  transition: all 0.2s;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  color: inherit;
  opacity: 0.7;
  flex-grow: 1;
}

.service-arrow {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  display: block;
  transition: color 0.2s;
}

/* ========================================
   PORTFOLIO — Grid with live iframe cards
   ======================================== */
#portfolio {
  border-bottom: var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  transition: all 0.35s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-item:hover {
  background: var(--gray-200);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.portfolio-item.portfolio-large {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}

.portfolio-image {
  position: absolute;
  inset: 0;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.03);
  filter: brightness(0.4);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-slow);
  z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-category {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-overlay h3 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.portfolio-overlay p {
  font-size: 13px;
  text-transform: none;
  opacity: 0.6;
  max-width: 360px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  pointer-events: auto;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.portfolio-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateX(4px);
}

/* Portfolio fallback backgrounds */
.portfolio-item:nth-child(odd) {
  background: var(--gray-100);
}

.portfolio-item:nth-child(even) {
  background: var(--gray-50);
}

/* Live iframe portfolio cards */
.portfolio-live {
  overflow: hidden;
}

.portfolio-iframe-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portfolio-iframe-wrap iframe {
  width: 200%;
  height: 200%;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
  transition: filter 0.6s ease, opacity 0.6s ease;
}

.portfolio-live:hover .portfolio-iframe-wrap iframe {
  filter: brightness(0.3) blur(2px);
}

/* Interactive portfolio cards — allow users to touch buttons/faders inside */
.portfolio-interactive .portfolio-iframe-wrap iframe {
  pointer-events: auto;
}

.portfolio-interactive .portfolio-overlay-live {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-interactive:hover .portfolio-overlay-live {
  opacity: 1;
}

.portfolio-interactive:hover .portfolio-iframe-wrap iframe {
  filter: brightness(0.3) blur(2px);
  pointer-events: none;
}

.portfolio-interactive .portfolio-iframe-wrap iframe {
  filter: none;
}

.portfolio-overlay-live {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.portfolio-overlay-live>*:not(.portfolio-live-badge) {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}

.portfolio-live:hover .portfolio-overlay-live>* {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-overlay-live .portfolio-overlay h3,
.portfolio-overlay-live .portfolio-overlay p,
.portfolio-overlay-live .portfolio-category {
  color: #fff;
}

.portfolio-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  padding: 5px 12px;
  border: var(--border);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.portfolio-live-badge .status-dot {
  width: 6px;
  height: 6px;
}

/* ========================================
   PROCESS — 4-column grid panel
   ======================================== */
#process {
  border-bottom: var(--border);
}

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

.process-step {
  border-right: var(--border);
  padding: 2rem var(--grid-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background: var(--bg);
  transition: background 0.2s, color 0.2s;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--fg);
  color: var(--bg);
}

.process-step:hover .process-num {
  background: var(--bg);
  color: var(--fg);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 2rem;
  transition: all 0.2s;
}

.process-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.process-content p {
  font-size: 13px;
  line-height: 1.5;
  text-transform: none;
  opacity: 0.7;
}

/* ========================================
   TESTIMONIALS — Clean bordered cards
   ======================================== */
#testimonials {
  border-bottom: var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  border-right: var(--border);
  padding: 2rem var(--grid-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.testimonial-card:last-child {
  border-right: none;
}

.testimonial-stars {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: var(--border);
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--fg);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-author span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
}

/* ========================================
   CTA / CONTACT — Centered brutalist
   ======================================== */
#contact {
  border-bottom: var(--border);
}

.cta-wrapper {
  padding: 6rem var(--grid-pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-glow {
  display: none;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.cta-actions .btn {
  font-size: 16px;
  padding: 18px 36px;
}

.cta-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* ========================================
   FOOTER — 4-column grid, black border top
   ======================================== */
#footer {
  border-top: var(--border);
}

.footer-inner {
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}

.footer-brand {
  padding: var(--grid-pad);
  border-right: var(--border);
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 12px;
  text-transform: none;
  color: var(--gray-500);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.footer-col {
  padding: var(--grid-pad);
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col:last-child {
  border-right: none;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-col a:hover {
  text-decoration: line-through;
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--grid-pad);
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  text-transform: none;
}

.footer-status {
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — Mobile
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-column: span 1;
  }

  .service-card:nth-child(2) {
    border-right: none;
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    border-top: var(--border);
  }

  .service-card:nth-child(4) {
    border-right: none;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: var(--border);
  }

  .process-step:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: var(--border);
    flex-direction: column;
    padding: var(--grid-pad);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: var(--border);
    padding: var(--grid-pad) 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .hide-mobile {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: var(--border);
    height: auto;
    padding: var(--grid-pad);
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .stat:last-child {
    border-bottom: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none !important;
    border-bottom: var(--border);
    min-height: auto;
    padding: 1.5rem var(--grid-pad);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    border-right: none !important;
  }

  .portfolio-item.portfolio-large {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }

  /* Process */
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none !important;
    border-bottom: var(--border);
    min-height: auto;
    padding: 1.5rem var(--grid-pad);
  }

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

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    border-right: none !important;
    border-bottom: var(--border);
    min-height: auto;
    padding: 1.5rem var(--grid-pad);
  }

  .testimonial-card:last-child {
    border-bottom: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    border-right: none;
    border-bottom: var(--border);
  }

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

  .footer-col {
    border-right: none;
    border-bottom: var(--border);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* CTA */
  .cta-wrapper {
    padding: 3rem var(--grid-pad);
  }
}