/* ════════════════════════════════════════════════════
   NIMBROFLASH — BRUTALIST/EDITORIAL CSS
   Fonts: Righteous (Display), DM Sans (Body)
   Colors: #000 (Black), #FFF (White), #FF4500 (Orange), #5A00FF (Purple), #FFD000 (Yellow)
   ════════════════════════════════════════════════════ */

:root {
  --black: #080808;
  --white: #F8F8F2;
  --orange: #FF4500;
  --purple: #5A00FF;
  --yellow: #FFD000;
  --green: #00FF3E;
  --border-width: 3px;
  --shadow-offset: 6px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: clip;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .pt-title, .section-title, .nav-logo, .card-title, .faq-q {
  font-family: 'Righteous', display;
  text-transform: uppercase;
  line-height: 1;
}

.massive {
  font-size: clamp(3rem, 8vw, 6rem) !important;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple-light); }
.text-black { color: var(--black); }
.text-white { color: var(--white); }
.bg-orange { background-color: var(--orange); }
.bg-purple { background-color: var(--purple); }
.bg-yellow { background-color: var(--yellow); }
.bg-black { background-color: var(--black); }
.bg-white { background-color: var(--white); }
.bg-green { background-color: var(--green); }
.stroke-text { color: transparent; -webkit-text-stroke: 1.5px var(--black); }
.p-0 { padding: 0 !important; }
.mock-img-full { width: 100%; display: block; }

/* ── BORDERS & UTILS ── */
.border-bottom { border-bottom: var(--border-width) solid var(--black); }
.border-right { border-right: var(--border-width) solid var(--black); }
.border-left { border-left: var(--border-width) solid var(--black); }
.border-top { border-top: var(--border-width) solid var(--black); }
.border-full { border: var(--border-width) solid var(--black); }

.shadow-solid {
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
}

.p-6 { padding: 1.5rem; }
.p-8 { padding: 3rem; }
.p-12 { padding: 5rem 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.inline-block { display: inline-block; }
.inline-block.px-4 { padding: 0.5rem 1.5rem; }
.absolute-top { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); }
.max-w-1000 { max-width: 1000px; margin-left: auto; margin-right: auto; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; }
.gap-6 { gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .nav-grid { display: grid; grid-template-columns: auto 1fr auto; }
}

/* ── BG PATTERNS ── */
.bg-grid {
  background-image: 
    linear-gradient(var(--black) 1px, transparent 1px),
    linear-gradient(90deg, var(--black) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
}

.bg-grid-light {
  background-color: var(--white);
  background-image: 
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.stroke-text {
  -webkit-text-stroke: 2px var(--black);
  color: transparent !important;
}

/* ── BUTTONS ── */
a { text-decoration: none; color: inherit; }

.btn-neo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Righteous', display;
  font-size: 1.1rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--white);
  color: var(--black);
  border: var(--border-width) solid var(--black);
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 4px 4px 0 var(--black);
}

.btn-neo:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.btn-neo:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn-huge {
  font-size: 1.5rem;
  padding: 1.25rem 2.5rem;
}

.btn-block {
  width: 100%;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.nav-brand-img {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  padding: 1rem 1.5rem;
  font-weight: 700;
  border-left: var(--border-width) solid var(--black);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:first-child { border-left: none; }
.nav-links a:hover { background: var(--black); color: var(--white); }

.nav-cta {
  padding: 0.75rem 1.5rem;
}

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 65px);
  background: var(--white);
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: 1.2fr 1fr; }
}

.hero-content {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-content { padding: 4rem 3rem; }
}

.marquee-small {
  overflow: hidden;
  border: var(--border-width) solid var(--black);
  background: var(--purple);
  color: var(--white);
  padding: 0.5rem;
  display: flex;
  margin-bottom: 2rem;
  width: fit-content;
  max-width: 100%;
  font-family: 'Righteous', display;
  font-size: 0.8rem;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scrollLeft 15s linear infinite;
}

.marquee-track span {
  padding-right: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── BROWSER MOCK (BRUTALIST) ── */
.hero-visual {
  background: var(--grid);
  position: relative;
  background-color: var(--yellow);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(var(--black) 2px, transparent 2px), linear-gradient(90deg, var(--black) 2px, transparent 2px);
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .hero-visual { border-top: var(--border-width) solid var(--black); border-left: none; padding: 2rem 1rem; }
}

.browser-mock {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
}

.browser-bar {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--white);
  gap: 1rem;
}

.browser-dots { display: flex; gap: 0.5rem; }
.browser-dots span { width: 12px; height: 12px; border: 2px solid var(--black); border-radius: 50%; }

.browser-url {
  flex: 1;
  text-align: center;
  font-family: 'DM Sans', monospace;
  font-weight: 700;
  border: 2px solid var(--black);
  padding: 0.25rem;
}

.browser-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mock-header { display: flex; justify-content: space-between; padding-bottom: 1rem; }
.mock-logo { font-family: 'Righteous'; font-size: 1.2rem; }
.mock-nav { width: 60px; height: 12px; background: var(--black); border-radius: 6px; }

.mock-hero {
  text-align: center;
  font-family: 'Righteous';
  font-size: 1.5rem;
  padding: 1rem 0;
}

.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--border-width) solid var(--black); }
.mock-card { padding: 0.5rem; }
.mock-img { aspect-ratio: 1; background: var(--black); margin-bottom: 0.5rem; }
.mock-line { height: 10px; background: #ddd; margin-bottom: 0.5rem; }
.mock-line:last-child { width: 60%; }
.mock-btn { height: 20px; width: 100%; border: 2px solid var(--black); }

/* ── TICKER ── */
.ticker { overflow: hidden; white-space: nowrap; padding: 1.5rem 0; font-family: 'Righteous'; font-size: 2vw;}
.ticker-track { display: inline-block; animation: scrollLeft 30s linear infinite; }
.separator { margin: 0 3rem; color: var(--orange); }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PAIN ── */
.pain-num { font-size: 4rem; margin-bottom: 1rem; line-height: 0.8;}
.pain-item h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ── FEATURES ── */
@media (max-width: 767px) {
  .features .feature:nth-child(even) { border-right: none; }
  .features .feature:nth-child(1), .features .feature:nth-child(2) { border-bottom: var(--border-width) solid var(--black); }
}
@media (min-width: 768px) {
  .features .feature:last-child { border-right: none; }
}

.feat-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: var(--border-width) solid var(--black); border-radius: 50%; box-shadow: 4px 4px 0 var(--black); margin-bottom: 2rem; }
.feature h4 { font-size: 1.5rem; margin-bottom: 1rem; }

/* ── PRICING ── */
.toggle-container { display: inline-flex; border: var(--border-width) solid var(--black); background: var(--white); box-shadow: 4px 4px 0 var(--black); }
.toggle-btn { padding: 0.75rem 2rem; font-family: 'Righteous'; font-size: 1.25rem; border: none; background: transparent; cursor: pointer; transition: background 0.2s; }
.toggle-btn.active { background: var(--orange); color: var(--black); }
.toggle-btn:not(.active):hover { background: #eee; }

.price-card { display: flex; flex-direction: column; position: relative; }
.pop-out { transform: scale(1.05); z-index: 10; }
@media (max-width: 1023px) { .pop-out { transform: none; } }

.badge-neo { padding: 0.5rem 1rem; font-family: 'Righteous'; border: var(--border-width) solid var(--black); }
.card-title { font-size: 2.5rem; margin-bottom: 0.5rem; border-bottom: var(--border-width) solid currentColor; padding-bottom: 1rem;}

.price { display: flex; align-items: flex-start; margin: 1.5rem 0;}
.currency { font-size: 2rem; font-family: 'Righteous'; margin-top: 0.5rem;}
.amount { font-size: 5rem; font-family: 'Righteous'; line-height: 0.8; letter-spacing: -3px;}
.cents, .period { font-size: 1.5rem; font-weight: 700; align-self: flex-end;}

.original-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c00;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}
.original-price s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.feat-list { list-style: none; margin-bottom: 2rem; flex: 1;}
.feat-list li { padding: 0.75rem 0; border-bottom: 2px solid #ccc; font-weight: 500;}
.feat-list li:last-child { border-bottom: none; }
.feat-list-black li { border-bottom-color: rgba(0,0,0,0.2); }
.feat-list-white li { border-bottom-color: rgba(255,255,255,0.2); }

/* ── FAQ ── */
.faq-row { cursor: pointer; transition: background 0.2s;}
.faq-row:hover { background: rgba(0,0,0,0.02); }
.faq-row[open] { background: var(--white); }
.faq-row.bg-yellow[open] { background: var(--yellow); }

.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '↓'; font-size: 1.5rem; transition: transform 0.2s; }
.faq-row[open] .faq-q::after { transform: rotate(180deg); }
.faq-a { font-size: 1.1rem; max-width: 800px; padding-right: 2rem; }

/* ── FOOTER ── */
.footer { font-family: 'Righteous'; font-size: 1.25rem; }
.footer-stack { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer-legal { font-size: 0.9rem; margin-top: 0.5rem; opacity: 0.8; font-family: 'DM Sans', sans-serif; }
.btn-login { font-size: 0.9rem; padding: 0.4rem 1rem; }
.icon-inline { display: inline-block; vertical-align: text-bottom; margin-right: 4px; }

/* ── VIDEO SECTION ── */
.video-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.video-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: var(--black);
  padding-bottom: 1rem;
}

/* ── MISC UTILITIES ── */
.section-desc-narrow { max-width: 640px; margin: 0 auto; }
.badge-launch { font-size: 0.75rem; margin-bottom: 0.75rem; }
.badge-launch-pro { margin-top: 2.5rem; }
.badge-urgency { font-size: 0.8rem; }
.faq-hint { margin-top: 1.5rem; font-size: 1rem; opacity: 0.8; line-height: 1.6; font-family: 'DM Sans', sans-serif; }

/* ── FLOW DIAGRAM ── */
.flow-steps {
  display: flex;
  align-items: stretch;
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flow-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: iconPulse 2s ease-in-out infinite;
}

.flow-step--1 .flow-icon { animation-delay: 0s; }
.flow-step--2 .flow-icon { animation-delay: 0.5s; }
.flow-step--3 .flow-icon { animation-delay: 1s; }
.flow-step--4 .flow-icon { animation-delay: 1.5s; }

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.flow-number {
  font-family: 'Righteous';
  font-size: 2.5rem;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.flow-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
  color: var(--orange);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ── VIDEO SECTION ── */
.play-btn:hover {
  transform: scale(1.1);
  background: var(--black);
}

/* ── FAB WHATSAPP BRUTALIST ── */
.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 64px;
  height: 64px;
  background-color: var(--green); /* Verde neon brutalista já no token */
  color: var(--black);
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: transform 0.1s, box-shadow 0.1s;
}

.fab-wa:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--black);
}

.fab-wa:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

/* ── RESPONSIVE / MOBILE FIXES ── */
@media (max-width: 767px) {
  /* ═══ ANTI-OVERFLOW NUCLEAR ═══ */
  html {
    overflow-x: hidden !important;
  }
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Remover box-shadow de TODOS os elementos no mobile (exceto FAB) */
  .shadow-solid,
  .btn-neo,
  .toggle-container,
  .browser-mock,
  .badge-neo {
    box-shadow: none !important;
  }

  /* Todas as seções: width forçada + overflow contido */
  section, header, nav, footer, .ticker, div[class*="border-"] {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* ═══ TIPOGRAFIA ═══ */
  .massive { font-size: 2rem !important; word-break: break-word; }
  .section-title { font-size: 1.6rem; word-break: break-word; }
  .hero-title { font-size: 1.8rem; line-height: 1.1; word-break: break-word; }
  .hero-subtitle { font-size: 0.95rem; }
  
  /* ═══ BOTÕES ═══ */
  .btn-neo {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
  }
  .btn-huge {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }

  /* ═══ PADDINGS ═══ */
  .p-12 { padding: 2.5rem 1rem; }
  .p-8 { padding: 1.5rem 1rem; }
  .p-6 { padding: 1rem 0.75rem; }

  /* ═══ TODOS OS GRIDS → 1 COLUNA ═══ */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }

  /* ═══ NAV ═══ */
  .hide-mobile { display: none !important; }
  .nav {
    width: 100% !important;
    overflow: hidden !important;
  }
  .nav-grid {
    width: 100% !important;
    overflow: hidden !important;
  }
  .nav-logo {
    padding: 0.5rem 0.75rem;
    border-right: none !important;
  }
  .nav-brand-img { width: 120px; height: auto; }
  .nav-cta { padding: 0.5rem 0.75rem; }

  /* ═══ HERO ═══ */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto;
    width: 100% !important;
  }
  .hero-content {
    padding: 1.5rem 1rem;
    text-align: center;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .marquee-small {
    margin: 0 auto 1.5rem;
    max-width: 90vw;
    font-size: 0.7rem;
  }

  /* ═══ HERO VISUAL (Browser Mock) ═══ */
  .hero-visual {
    padding: 1.5rem 1rem;
    border-top: var(--border-width) solid var(--black);
    border-left: none !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .browser-mock {
    max-width: 100%;
  }
  .browser-url {
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ═══ TICKER ═══ */
  .ticker {
    font-size: 3.5vw;
    padding: 1rem 0;
  }

  /* ═══ VIDEO ═══ */
  .video-container { padding: 0; }
  .video-placeholder .play-btn {
    width: 60px !important;
    height: 60px !important;
  }
  .video-label { font-size: 0.85rem; }

  /* ═══ PAIN SECTION ═══ */
  .pain.grid-2, .faq.grid-2 {
    grid-template-columns: 1fr !important;
  }
  .pain-header {
    border-right: none;
    border-bottom: var(--border-width) solid var(--black);
    text-align: center;
  }
  .pain-num { font-size: 2.5rem; }
  .pain-item h3 { font-size: 1.2rem; }

  /* ═══ FLOW DIAGRAM ═══ */
  .flow-steps {
    flex-direction: column;
  }
  .flow-step {
    border-right: none !important;
    border-bottom: var(--border-width) solid var(--black);
  }
  .flow-step h4 { font-size: 1rem; }
  .flow-step p { font-size: 0.85rem; }
  .flow-arrow {
    border-right: none !important;
    padding: 0.75rem 0;
    transform: rotate(90deg);
  }
  .flow-arrow svg {
    width: 24px;
    height: 24px;
  }

  /* ═══ FEATURES ═══ */
  .features.grid-4 {
    grid-template-columns: 1fr !important;
  }
  .features .feature {
    border-right: none !important;
    border-bottom: var(--border-width) solid var(--black);
  }
  .features .feature:last-child {
    border-bottom: none;
  }
  .feature h4 { font-size: 1.2rem; }
  .feat-icon { width: 48px; height: 48px; font-size: 1.5rem; margin-bottom: 1rem; }

  /* ═══ PRICING ═══ */
  .pricing-cards.grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  .price-card {
    overflow: visible !important;
  }
  .price-card.pop-out {
    transform: none;
  }
  .absolute-top {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    margin-bottom: -0.5rem;
    display: inline-block;
  }
  .toggle-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .toggle-btn {
    width: 100%;
    font-size: 1rem;
    border-bottom: var(--border-width) solid var(--black);
  }
  .toggle-btn:last-child {
    border-bottom: none;
  }
  .amount { font-size: 3.5rem; }
  .card-title { font-size: 2rem; }
  .badge-launch { font-size: 0.7rem; }
  .original-price { font-size: 0.95rem; }

  /* ═══ FAQ ═══ */
  .faq > div:first-child {
    border-right: none;
    border-bottom: var(--border-width) solid var(--black);
    text-align: center;
  }
  .faq-q {
    font-size: 0.9rem;
    padding-right: 1.5rem;
  }
  .faq-a { font-size: 0.95rem; padding-right: 0; }

  /* ═══ FINAL CTA ═══ */
  .badge-urgency { font-size: 0.7rem; }

  /* ═══ FOOTER ═══ */
  .footer { font-size: 1rem; }
  .footer-legal { font-size: 0.8rem; }

  /* ═══ FAB WA ═══ */
  .fab-wa {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 10px !important;
    z-index: 9999 !important;
    display: flex !important;
    position: fixed !important;
  }
  .fab-wa svg {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet intermediário */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards .price-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  .features.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .features .feature:nth-child(2) {
    border-right: none;
  }
  .features .feature:nth-child(1),
  .features .feature:nth-child(2) {
    border-bottom: var(--border-width) solid var(--black);
  }
}
