/* ─────────────────────────────────────────
   GROWBERRY — style.css
   ───────────────────────────────────────── */

/* ── Variables ── */
:root {
  --bg:        #0D0D0D;
  --bg-2:      #141414;
  --bg-3:      #1C1C1C;
  --accent:    #00C87A;
  --accent-dk: #009F62;
  --text:      #F0F0F0;
  --muted:     #7A7A7A;
  --border:    rgba(0,200,122,.12);
  --border-h:  rgba(0,200,122,.3);
  --card-bg:   rgba(255,255,255,.03);
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 0 40px rgba(0,200,122,.06);
  --red:       #C83428;
  --red-dk:    #A02822;
  --red-lt:    #E04A44;
  --border-r:  rgba(200,52,40,.12);
  --border-rh: rgba(200,52,40,.3);
  --shadow-r:  0 0 40px rgba(200,52,40,.06);
  --font:      'Inter', system-ui, sans-serif;
  --transition: .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  width: 100%;
  cursor: url('../img/cursor.svg') 18 16, auto;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Custom cursor — interactive elements ── */
a,
button,
select,
label,
.btn,
.faq__q,
.hamburger,
[role="button"],
input[type="submit"],
input[type="button"] {
  cursor: url('../img/cursor.svg') 18 16, pointer;
}

/* ── Container ── */
.container {
  width: min(1600px, calc(100% - clamp(3rem, 5vw, 8rem)));
  margin: 0 auto;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
.text--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #00e099 0%, #e04444 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,52,40,.35), 0 4px 16px rgba(0,200,122,.2);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.15);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Badge / Tag ── */
.badge {
  display: inline-block;
  padding: .4rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  background:
    rgba(0,200,122,.06) padding-box,
    linear-gradient(135deg, var(--accent), var(--red)) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
}
.section__tag {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid transparent;
  margin-bottom: 1.2rem;
  background:
    rgba(0,200,122,.08) padding-box,
    linear-gradient(135deg, var(--accent), var(--red)) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.25rem;
}
.logo__icon { width: 32px; height: 32px; flex-shrink: 0; }
.logo__text { color: var(--text); }
.logo__img { height: 48px; width: auto; object-fit: contain; display: block; }
.logo__icon-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.logo__grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
}

/* ────────────────────────────────────────
   HEADER
──────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .85rem 0;
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text); }
.header__cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,122,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,122,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,122,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,52,40,.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(240,240,240,.75);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__slogan {
  font-size: 1rem;
  font-style: italic;
  color: rgba(240,240,240,.6);
  margin-bottom: 2.2rem;
  margin-top: -.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
  line-height: 1.5;
}
.hero__slogan em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.stat__val {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .1rem;
}
.stat__sep {
  width: 1px;
  height: 40px;
  background: var(--border-h);
}

/* ── Dashboard Mockup ── */
.mockup {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 60px rgba(0,200,122,.06);
  position: relative;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #FF5F57; }
.dot--y { background: #FFBD2E; }
.dot--g { background: #28CA41; }
.mockup__url {
  margin-left: .5rem;
  font-size: .72rem;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  padding: .2rem .7rem;
  border-radius: 999px;
}
.mockup__body {
  display: flex;
  height: 340px;
}
.mockup__sidebar {
  width: 110px;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  padding: .8rem .6rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex-shrink: 0;
}
.mock-nav {
  padding: .45rem .7rem;
  border-radius: 8px;
  font-size: .72rem;
  color: var(--muted);
  cursor: default;
  transition: background var(--transition);
}
.mock-nav--active {
  background: rgba(0,200,122,.1);
  color: var(--accent);
  font-weight: 600;
}
.mockup__main {
  flex: 1;
  padding: .9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.mock-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem;
}
.mock-card__label { font-size: .65rem; color: var(--muted); margin-bottom: .3rem; }
.mock-card__value { font-size: 1.1rem; font-weight: 800; }
.mock-card__value--accent { color: var(--accent); }
.mock-card__delta { font-size: .65rem; margin-top: .25rem; }
.mock-card__delta--up { color: var(--accent); }
.mock-card__delta--down { color: #FF5F57; }
.mock-chart {
  flex: 1;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mock-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
}
.bar {
  flex: 1;
  background: rgba(0,200,122,.2);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  transition: height .6s ease;
}
.bar--hl { background: var(--accent); }
.mock-chart__label { font-size: .62rem; color: var(--muted); text-align: center; }
.mock-table {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mock-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: .45rem .75rem;
  font-size: .68rem;
  color: var(--muted);
  gap: .5rem;
  align-items: center;
}
.mock-row + .mock-row { border-top: 1px solid rgba(255,255,255,.04); }
.mock-row--head { background: rgba(255,255,255,.03); font-weight: 600; font-size: .65rem; text-transform: uppercase; letter-spacing: .05em; }
.mock-dot-text { display: flex; align-items: center; gap: .4rem; color: var(--text); }
.online { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.pending { width: 6px; height: 6px; border-radius: 50%; background: #FFBD2E; display: inline-block; }
.tag-ok  { background: rgba(0,200,122,.15); color: var(--accent); padding: .15rem .5rem; border-radius: 999px; font-size: .62rem; font-weight: 600; }
.tag-warn { background: rgba(255,189,46,.15); color: #FFBD2E; padding: .15rem .5rem; border-radius: 999px; font-size: .62rem; font-weight: 600; }

/* ────────────────────────────────────────
   SECTIONS — generic
──────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section--alt {
  background: var(--bg-2);
}
.section--cta {
  background: linear-gradient(135deg, #100d0d 0%, var(--bg-2) 40%, #0d1a13 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,52,40,.05) 0%, transparent 70%);
  pointer-events: none;
}
.section--cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,122,.05) 0%, transparent 70%);
  pointer-events: none;
}
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section__title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
}
.section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ────────────────────────────────────────
   ABOUT
──────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__text p {
  color: rgba(240,240,240,.75);
  margin-bottom: 1rem;
}
.about__text h2 { margin-bottom: 1.5rem; }
.about__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.num-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.num-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.num-card__value {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.num-card__label { font-size: .85rem; color: var(--muted); }

/* ────────────────────────────────────────
   STEPS
──────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-h), var(--border-h), transparent);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}
.step + .step { border-top: 1px solid rgba(255,255,255,.04); }
.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, var(--accent) 0%, var(--red) 100%) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step__title {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  font-weight: 700;
}
.step__text { color: var(--muted); }

/* ────────────────────────────────────────
   SERVICES
──────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,200,122,.1);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.service-card__text { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ────────────────────────────────────────
   BENEFITS
──────────────────────────────────────── */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.benefits__col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.benefits__col--after { border-color: var(--border-h); }
.benefits__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.benefits__col--after .benefits__head { background: rgba(0,200,122,.06); }
.benefits__icon { font-size: 1.1rem; }
.benefits__icon--bad { color: #FF5F57; }
.benefits__icon--good {
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.benefit-item {
  padding: .95rem 1.5rem;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.benefit-item + .benefit-item { border-top: 1px solid rgba(255,255,255,.04); }
.benefit-item--bad { color: var(--muted); }
.benefit-item--bad::before { content: '✗'; color: #FF5F57; font-size: .8rem; }
.benefit-item--good { color: var(--text); }
.benefit-item--good::before {
  content: '✓';
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .8rem;
  font-weight: 700;
}
.quote {
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(240,240,240,.7);
  border-left: none;
  padding: 1.5rem 2rem 1.5rem 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(135deg, rgba(0,200,122,.05), rgba(200,52,40,.04));
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--red) 100%);
  border-radius: 999px;
}

/* ────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial:hover { border-color: var(--border-h); transform: translateY(-3px); }
.testimonial__stars {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial__text {
  font-size: .9rem;
  color: rgba(240,240,240,.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial__author { display: flex; align-items: center; gap: 1rem; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,200,122,.15);
  border: 1.5px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial__name { font-weight: 700; font-size: .9rem; }
.testimonial__role { font-size: .78rem; color: var(--muted); }

/* ────────────────────────────────────────
   OBJECTIONS
──────────────────────────────────────── */
.objections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.objection {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.objection:hover { border-color: var(--border-h); transform: translateY(-3px); }
.objection__icon { font-size: 2rem; margin-bottom: 1rem; }
.objection__q { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.objection__a { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ────────────────────────────────────────
   CTA / CONTATO
──────────────────────────────────────── */
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cta__left p { color: rgba(240,240,240,.75); margin-bottom: 1.5rem; }
.cta__offer {
  background: rgba(0,200,122,.05);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.cta__offer-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .75rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta__offer-desc { font-size: .9rem; color: rgba(240,240,240,.75); margin-bottom: 1.25rem; }
.cta__list { display: flex; flex-direction: column; gap: .5rem; }
.cta__list li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.check {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.urgency {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: var(--muted);
}
.urgency__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,200,122,.4); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(0,200,122,0); }
}

/* ── Form ── */
.form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form__group { display: flex; flex-direction: column; gap: .5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__label { font-size: .82rem; font-weight: 600; color: rgba(240,240,240,.7); }
.form__input {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--text);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}
.form__input:focus { border-color: var(--accent); }
.form__input::placeholder { color: var(--muted); }
option { background: var(--bg-3); color: var(--text); }
.form__textarea { resize: vertical; min-height: 90px; }
.form__note { text-align: center; font-size: .78rem; color: var(--muted); }
.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-h);
  border-radius: var(--radius-lg);
  background: rgba(0,200,122,.05);
}
.form__success.visible { display: block; }
.success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,200,122,.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}
.success__title { font-size: 1.4rem; margin-bottom: .75rem; }
.success__text { color: var(--muted); }

/* ────────────────────────────────────────
   FAQ
──────────────────────────────────────── */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq__item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.open { border-color: var(--border-h); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  background: transparent;
}
.faq__q:hover { color: var(--accent); }
.faq__ico {
  font-size: 1.4rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.open .faq__ico { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq__a p { color: var(--muted); font-size: .9rem; padding-bottom: 1.25rem; }
.faq__item.open .faq__a { max-height: 300px; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__tag {
  color: var(--muted);
  font-size: .85rem;
  margin: .6rem 0 .6rem;
}
.footer__social { display: flex; gap: 1rem; }
.social__link {
  font-size: .85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.social__link:hover { color: var(--accent); }
.footer__social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer__social-link--wa:hover { color: #25d366; }
.footer__title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__link {
  font-size: .88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--text); }
.footer__location { display: flex; align-items: center; gap: .3rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal-link {
  font-size: .8rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__legal-link:hover { color: var(--text); }

/* ────────────────────────────────────────
   WHATSAPP FLOAT
──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn .8s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: .1s; }
.fade-in:nth-child(2) { animation-delay: .25s; }
.fade-in:nth-child(3) { animation-delay: .4s; }
.fade-in:nth-child(4) { animation-delay: .55s; }
.fade-in:nth-child(5) { animation-delay: .7s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────
   PILLARS
──────────────────────────────────────── */
.section--pillars { background: var(--bg); }

.pillars {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
}
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pillar--tech {
  border-color: rgba(0,200,122,.2);
}
.pillar--tech:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,200,122,.07);
}
.pillar--mkt {
  border-color: rgba(200,52,40,.2);
}
.pillar--mkt:hover {
  border-color: rgba(200,52,40,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(200,52,40,.08);
}
.pillar__badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(0,200,122,.1);
  border: 1px solid rgba(0,200,122,.3);
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.pillar__badge--mkt {
  background: rgba(200,52,40,.1);
  border-color: rgba(200,52,40,.3);
  color: var(--red);
}
.pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,200,122,.1);
  border: 1px solid rgba(0,200,122,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.pillar__icon--mkt {
  background: rgba(200,52,40,.1);
  border-color: rgba(200,52,40,.25);
  color: var(--red);
}
.pillar__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.pillar__title--mkt { color: var(--red); }
.pillar__text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.pillar__list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pillar__list li {
  font-size: .87rem;
  color: rgba(240,240,240,.8);
  padding-left: 1.2rem;
  position: relative;
}
.pillar--tech .pillar__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: .78rem;
}
.pillar--mkt .pillar__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: .78rem;
}
.pillar__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
}
.pillars__result {
  text-align: center;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, rgba(0,200,122,.06), rgba(200,52,40,.06));
  border: 1px solid rgba(0,200,122,.15);
  border-radius: var(--radius-lg);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(240,240,240,.85);
}
.pillars__eq {
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ────────────────────────────────────────
   SERVICES — categories
──────────────────────────────────────── */
.services__block { margin-bottom: 3rem; }
.services__block:last-child { margin-bottom: 0; }

.services__cat-header {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.services__cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,200,122,.1);
  border: 1px solid rgba(0,200,122,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.services__cat-icon svg { width: 18px; height: 18px; }
.services__cat-icon--mkt {
  background: rgba(200,52,40,.1);
  border-color: rgba(200,52,40,.3);
  color: var(--red);
}
.services__cat-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.services__cat-name--mkt { color: var(--red); }
.services__cat-header--mkt { border-bottom-color: rgba(200,52,40,.2); }

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

.service-card--mkt {
  border-color: rgba(200,52,40,.2);
}
.service-card--mkt:hover {
  border-color: rgba(200,52,40,.4);
  box-shadow: 0 0 40px rgba(200,52,40,.08);
}
.service-card__icon--mkt {
  background: rgba(200,52,40,.1);
  border-color: rgba(200,52,40,.3);
  color: var(--red);
}
.service-card__features {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.service-card__features li {
  font-size: .8rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.service-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: .72rem;
  color: var(--accent);
}
.service-card--mkt .service-card__features li::before { color: var(--red); }

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .services--2col { grid-template-columns: repeat(2, 1fr); }
  .objections { grid-template-columns: repeat(2, 1fr); }
  .hero__wrapper { gap: 2.5rem; }
  .pillars { grid-template-columns: 1fr 48px 1fr; }
}

@media (max-width: 768px) {
  /* Container — tighter padding on small screens */
  .container { width: calc(100% - 2rem); }

  /* Global text overflow prevention */
  h1, h2, h3, h4, p, li, span,
  .benefit-item, .service-card__desc, .testimonial__text,
  .objection__body, .faq__a, .step__body, .about__lead,
  .pillar__desc, .hero__sub { word-break: break-word; overflow-wrap: break-word; }

  /* Buttons — allow wrapping and center on mobile */
  .btn { white-space: normal; text-align: center; justify-content: center; }

  /* Section CTA (the long button) */
  .section__cta { display: flex; justify-content: center; }
  .section__cta .btn { width: 100%; max-width: 420px; }

  /* Header */
  .nav { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,13,13,.98); backdrop-filter: blur(20px); z-index: 99; padding: 6rem 2rem 2rem; align-items: center; justify-content: center; }
  .nav.open { display: flex; }
  .nav__link { font-size: 1.5rem; color: var(--text); padding: .75rem 0; }
  .header__cta { display: none; }
  .hamburger { display: flex; z-index: 101; }

  /* Hero */
  .hero { padding: 7rem 0 4rem; }
  .hero__wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { order: -1; }
  .hero__stats { gap: 1.2rem; }
  .stat__val { font-size: 1.4rem; }
  .mockup__body { height: 280px; }
  .mockup__sidebar { display: none; }
  .mock-table { display: none; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__numbers { grid-template-columns: 1fr 1fr; }

  /* Steps */
  .steps::before { display: none; }
  .step { grid-template-columns: 1fr; gap: .75rem; padding: 1.5rem 0; }
  .step__num { width: 48px; height: 48px; font-size: .85rem; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; gap: 1rem; }
  .pillar__sep { font-size: 1.8rem; padding: .25rem 0; }

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

  /* Benefits — ensure full width columns and wrapped text */
  .benefits { grid-template-columns: 1fr; }
  .benefits__col { width: 100%; max-width: 100%; overflow: hidden; }
  .benefit-item { max-width: 100%; }

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

  /* Objections */
  .objections { grid-template-columns: 1fr; }
  .objection { max-width: 100%; overflow: hidden; }

  /* CTA */
  .cta__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Hero CTA */
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Inline-block buttons (About, FAQ sections) */
  a.btn[style*="margin-top"] { display: flex; width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; }

  /* Sections — prevent any child from overflowing */
  section, .section { max-width: 100vw; overflow-x: hidden; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 1.5rem); }
  .section { padding: 4rem 0; }
  .hero__headline { font-size: 2rem; }
  .section__title { font-size: 1.6rem; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .stat__sep { display: none; }
  .num-card__value { font-size: 2rem; }
  .section__cta .btn { max-width: 100%; }
}
