/* ════════════════════════════════════════════════════
   ACHIFY — 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: clip;
}

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); }
.text-black { color: var(--black); }
.text-white { color: var(--white); }
.text-green { color: var(--green); }
.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: 2px var(--black); }
.p-0 { padding: 0 !important; }
.mock-img-full { width: 100%; display: block; }
.font-bold { font-weight: 700; }
.text-lg { font-size: 1.1rem; }
.text-sm { font-size: 0.875rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── 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; }
.max-w-1200 { max-width: 1200px; 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;
}

/* ── 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: 120px;
  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; }
  .hide-mobile-inline { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: var(--border-width) solid var(--black);
  overflow: hidden;
}

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

.mobile-menu a {
  padding: 1rem 1.5rem;
  font-family: 'Righteous', display;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #eee;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--black);
  color: var(--white);
}

.mobile-menu-cta {
  margin: 1rem;
  text-align: center;
}

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

@media (min-width: 1024px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-content { min-width: 0; overflow: hidden; }
}

.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 20s 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: 2rem;
}

.hero-proof {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.proof-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--black);
  background: var(--white);
}

/* ── BROWSER MOCK ── */
.hero-visual {
  position: relative;
  background-color: var(--yellow);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  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; overflow: visible; }
}

.browser-mock {
  width: calc(100% - 16px); /* Espaço para a sombra não cortar */
  max-width: 540px;
  background: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
}

.browser-mock img.mock-img-full {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: top;
}

.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; }

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

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

/* ── INTEGRAÇÕES ── */
.integrations {
  padding: 3rem 1.5rem;
  background-image: radial-gradient(var(--black) 1px, transparent 1px);
  background-size: 20px 20px;
}
.integrations-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.int-logo {
  font-family: 'Righteous', sans-serif;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.int-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.int-logo:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

/* ── BETA BADGE ── */
.beta-badge {
  display: inline-block;
  font-size: 0.875rem;
  background-color: var(--black);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
}

/* ── 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; }

/* ══════════════════════════════════════════
   SHOWCASE SECTIONS (Instagram & Analytics)
   ══════════════════════════════════════════ */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-reverse .showcase-grid { direction: rtl; }
  .showcase-reverse .showcase-grid > * { direction: ltr; }
}

.showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 500px;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 500px;
}

.showcase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.sf-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: var(--border-width) solid var(--black);
  border-radius: 12px;
}

.showcase-features li strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.15rem;
}

.showcase-features li p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
}

/* ── INSTAGRAM MOCK ── */
.ig-mock {
  width: 320px;
  background: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
  border-radius: 12px;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ig-mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--black);
}

.ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  border: 2px solid var(--black);
}

.ig-username {
  font-weight: 700;
  font-size: 0.9rem;
}

.ig-mock-image {
  background: linear-gradient(135deg, #EE4D2D, #FF6633);
  padding: 1.5rem;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ig-template-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
}

.ig-product-mock {
  text-align: center;
  color: white;
}

.ig-product-img {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 3px solid rgba(255,255,255,0.3);
}

.ig-discount {
  font-family: 'Righteous';
  font-size: 2rem;
  color: var(--orange);
}

.ig-product-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.ig-product-old {
  font-size: 0.85rem;
  opacity: 0.7;
}

.ig-product-old s {
  text-decoration: line-through;
}

.ig-product-price {
  font-family: 'Righteous';
  font-size: 1.8rem;
}

.ig-mock-actions {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.ig-mock-copy {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ig-mock-copy p { margin-bottom: 0.25rem; }
.ig-hashtags { color: #3897f0; font-size: 0.75rem; }

/* ── ANALYTICS MOCK ── */
.analytics-mock {
  width: 380px;
  max-width: 100%;
  background: #1a1a2e;
  border: var(--border-width) solid var(--green);
  border-radius: 12px;
  overflow: hidden;
  color: white;
  box-shadow: 8px 8px 0 rgba(0,255,62,0.2);
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}

.am-header {
  padding: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.am-header h4 {
  font-size: 0.95rem;
  text-transform: none;
  font-family: 'DM Sans';
  font-weight: 700;
}

.am-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 1rem 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.am-stat-value {
  font-family: 'Righteous';
  font-size: 1.5rem;
  display: block;
}

.am-stat-label {
  font-size: 0.7rem;
  opacity: 0.6;
  text-transform: uppercase;
}

.am-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  height: 120px;
}

.am-bar {
  flex: 1;
  background: linear-gradient(to top, var(--purple), var(--green));
  height: var(--h);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  transition: height 1s ease;
  animation: barGrow 1.5s ease forwards;
}

.am-bar-highlight {
  background: linear-gradient(to top, var(--orange), var(--yellow));
}

@keyframes barGrow {
  from { height: 0; }
  to { height: var(--h); }
}

.am-bar span {
  position: absolute;
  bottom: -1.25rem;
  font-size: 0.6rem;
  opacity: 0.5;
}

.am-top-products {
  padding: 1rem;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.am-top-products h5 {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-transform: none;
  font-family: 'DM Sans';
  font-weight: 700;
}

.am-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.am-product:last-child { border-bottom: none; }

.am-rank {
  font-family: 'Righteous';
  font-size: 0.9rem;
  color: var(--yellow);
  min-width: 25px;
}

.am-clicks {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ── SOCIAL PROOF ── */
.proof-grid {
  gap: 1.5rem;
}

.proof-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proof-avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--black);
  object-fit: cover;
  box-shadow: 3px 3px 0 var(--black);
}

.proof-author-name {
  font-family: 'Righteous', display;
  font-size: 1rem;
  line-height: 1.2;
}

.proof-author-role {
  font-size: 0.8rem;
  opacity: 0.6;
}

.proof-stars {
  font-size: 1.25rem;
}

.proof-text {
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}

.proof-author {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── FOOTER LINKS ── */
.footer-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}

/* ── 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: 1rem 0; flex-wrap: wrap; }
.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;
  width: 100%;
}
.original-price s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-equiv {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(90, 0, 255, 0.08);
  border-radius: 4px;
  display: inline-block;
}

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

.feat-check { color: inherit; }
.feat-lock { opacity: 0.4; }

.plan-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

/* ── ENTERPRISE CARD ── */
.enterprise-section { margin-top: 2rem; }

.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .enterprise-grid { grid-template-columns: 1.5fr 1fr; }
}

.enterprise-info p {
  font-size: 1rem;
  line-height: 1.7;
}

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

/* ── GUARANTEE V2 ── */
.guarantee-card-v2 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--green), #a0ffc0);
  position: relative;
  overflow: hidden;
}

.guarantee-card-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.guarantee-seal {
  flex-shrink: 0;
}

.guarantee-seal-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--black);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 0 var(--black);
  animation: sealPulse 3s ease-in-out infinite;
}

.guarantee-seal-icon { font-size: 1.5rem; line-height: 1; }
.guarantee-seal-days { font-family: 'Righteous'; font-size: 2.5rem; line-height: 1; color: var(--black); }
.guarantee-seal-label { font-family: 'Righteous'; font-size: 0.9rem; color: var(--black); letter-spacing: 0.1em; }

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

.guarantee-content { flex: 1; }

.guarantee-title {
  font-family: 'Righteous', display;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--black);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.guarantee-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--black);
  max-width: 550px;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.guarantee-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border: 2px solid var(--black);
  background: var(--white);
  border-radius: 4px;
}

@media (max-width: 767px) {
  .guarantee-card-v2 {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .guarantee-badges { justify-content: center; }
  .guarantee-text { margin: 0 auto; }
}

/* ── HERO PROOF BADGES (urgency) ── */
.proof-badge--guarantee {
  background: var(--green) !important;
  border-color: var(--black) !important;
  font-weight: 700;
}

.proof-badge--urgency {
  background: var(--orange) !important;
  color: var(--black) !important;
  border-color: var(--black) !important;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 12px rgba(255,69,0,0.4); }
}

/* ── VAGAS BOX (CTA section) ── */
.vagas-box {
  display: flex;
  justify-content: center;
}

.vagas-box-inner {
  border: 3px solid var(--orange);
  border-radius: 16px;
  padding: 2rem 3rem;
  background: rgba(255,69,0,0.08);
  max-width: 500px;
  width: 100%;
}

.vagas-box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.vagas-pulse {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.vagas-box-title {
  font-family: 'Righteous';
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.vagas-number-big {
  text-align: center;
  margin-bottom: 1rem;
}

.vagas-num {
  font-family: 'Righteous';
  font-size: 4.5rem;
  line-height: 1;
  color: var(--orange);
}

.vagas-of {
  font-family: 'Righteous';
  font-size: 2rem;
  opacity: 0.4;
  color: var(--white);
}

.vagas-progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,69,0,0.3);
  overflow: hidden;
  margin-bottom: 1rem;
}

.vagas-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 10px;
  transition: width 1.5s ease-out;
  width: 27%; /* default: 27% used (73 of 100 remaining) */
}

.vagas-warning {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 500;
  text-align: center;
}

.cta-guarantee-reminder {
  font-size: 1rem;
  opacity: 0.7;
  color: var(--white);
}

@media (max-width: 767px) {
  .vagas-box-inner { padding: 1.5rem; }
  .vagas-num { font-size: 3.5rem; }
}

/* ── 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;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--black);
}

.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.85rem; }
.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.4s; }
.flow-step--3 .flow-icon { animation-delay: 0.8s; }
.flow-step--4 .flow-icon { animation-delay: 1.2s; }
.flow-step--5 .flow-icon { animation-delay: 1.6s; }

@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.05rem;
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.85rem;
  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); }
}

/* ── SECTION ANIMATIONS ── */
.anim-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FAB WHATSAPP ── */
.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 64px;
  height: 64px;
  background-color: var(--green);
  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);
}

/* ══════════════════════════════════════════
   CAPTURE PAGE MOCK
   ══════════════════════════════════════════ */
.capture-mock {
  width: 340px;
  max-width: 100%;
  background: var(--white);
  border: var(--border-width) solid var(--black);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
  position: relative;
}

.cm-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 2px solid var(--black);
  background: var(--white);
}

.cm-shield {
  font-size: 1.5rem;
}

.cm-header h4 {
  font-family: 'Righteous';
  font-size: 1rem;
  text-transform: none;
}

.cm-body {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: var(--white);
}

.cm-title-mock {
  font-family: 'Righteous';
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cm-subtitle-mock {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.cm-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.cm-counter-num {
  font-family: 'Righteous';
  font-size: 2rem;
  color: var(--green);
  animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); color: var(--yellow); }
}

.cm-counter-label {
  font-size: 0.8rem;
  opacity: 0.6;
}

.cm-cta-mock {
  font-family: 'Righteous';
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: inline-block;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.cm-badges-mock {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cm-badges-mock span {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}

.cm-toast {
  padding: 0.75rem 1rem;
  background: var(--green);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  animation: toastSlide 3s ease-in-out infinite;
}

@keyframes toastSlide {
  0%, 100% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  60% { opacity: 1; }
}

/* ══════════════════════════════════════════
   AI AGENTS GRID
   ══════════════════════════════════════════ */
.ai-agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ai-agent-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ai-agent-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--black);
}

.ai-agent-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
}

.ai-agent-card strong {
  font-size: 0.85rem;
  display: block;
  line-height: 1.2;
}

.ai-agent-card p {
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 0;
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   AI CHAT MOCK
   ══════════════════════════════════════════ */
.ai-chat-mock {
  width: 380px;
  max-width: 100%;
  background: #1a1a2e;
  border: var(--border-width) solid var(--purple);
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 8px 8px 0 rgba(90,0,255,0.2);
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.ai-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid rgba(255,255,255,0.3);
}

.ai-chat-header h4 {
  font-family: 'DM Sans';
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: none;
  line-height: 1.2;
}

.ai-chat-status {
  font-size: 0.75rem;
  color: var(--green);
}

.ai-chat-messages {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-msg {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 90%;
}

.ai-msg-user {
  background: rgba(90,0,255,0.3);
  border: 1px solid rgba(90,0,255,0.5);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-msg-bot {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-chat-input {
  padding: 0.75rem 1rem;
  border-top: 2px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  opacity: 0.4;
}


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

  .shadow-solid,
  .btn-neo,
  .toggle-container,
  .browser-mock,
  .badge-neo,
  .ig-mock,
  .analytics-mock {
    box-shadow: none !important;
  }

  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; }
  .hide-mobile-inline { 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: 100px; 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; }
  .hero-proof { justify-content: center; }
  .marquee-small { margin: 0 auto 1.5rem; max-width: 90vw; font-size: 0.7rem; }

  /* ═══ HERO VISUAL ═══ */
  .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 ═══ */
  .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; }

  /* ═══ SHOWCASE ═══ */
  .showcase-grid { grid-template-columns: 1fr !important; }
  .showcase-visual {
    border-right: none !important;
    border-left: none !important;
    border-bottom: var(--border-width) solid var(--black);
    padding: 2rem 1rem;
    min-height: auto;
  }
  .showcase-reverse .showcase-grid { direction: ltr; }
  .ig-mock { width: 280px; }
  .ig-mock-image { min-height: 200px; }
  .ig-product-img { width: 100px; height: 100px; }
  .ig-discount { font-size: 1.5rem; }
  .ig-product-price { font-size: 1.4rem; }
  .analytics-mock { width: 100%; max-width: 340px; }
  .am-stat-value { font-size: 1.1rem; }
  .am-chart { height: 80px; }

  /* ═══ CAPTURE MOCK ═══ */
  .capture-mock { width: 100%; max-width: 300px; }
  .cm-title-mock { font-size: 1.1rem; }
  .cm-counter-num { font-size: 1.5rem; }
  .cm-cta-mock { font-size: 0.9rem; padding: 0.6rem 1rem; }

  /* ═══ AI AGENTS ═══ */
  .ai-agents-grid { grid-template-columns: 1fr !important; }
  .ai-agent-icon { width: 36px; height: 36px; min-width: 36px; font-size: 1.2rem; }

  /* ═══ AI CHAT MOCK ═══ */
  .ai-chat-mock { width: 100%; max-width: 340px; }
  .ai-msg { font-size: 0.75rem; }

  /* ═══ PRICING ═══ */
  .pricing-cards.grid-3 { 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; }
  .enterprise-grid { grid-template-columns: 1fr !important; }

  /* ═══ 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; }

  /* ═══ PROOF ═══ */
  .proof-grid { gap: 1.5rem; }

  /* ═══ 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) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards .price-card:last-child {
    grid-column: span 2;
    max-width: 60%;
    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); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-visual { min-height: 400px; padding: 2rem; }
}
