/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f07900;
  --orange-dk: #d46b00;
  --orange-lt: #fff3e0;
  --dark: #1a1a2e;
  --dark-2: #2d2d44;
  --gray: #64748b;
  --gray-lt: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── Utilities ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--gray {
  background: var(--gray-lt);
}

.tag {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.section-sub {
  font-size: 18px;
  color: var(--gray);
  margin-top: 12px;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub {
  margin: 12px auto 0;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 14px 30px;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 17px;
  border-radius: 10px;
}
.btn-full {
  width: 100%;
}

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.navbar__logo span {
  color: var(--dark);
}
.navbar__logo img {
  height: 54px;
}

.navbar__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s;
}
.navbar__links a:hover {
  color: var(--orange);
}

.navbar__cta {
  display: flex;
  gap: 12px;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 60%, #f07900 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Orange glow blobs */
.hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(240, 121, 0, 0.25) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 121, 0, 0.2);
  border: 1px solid rgba(240, 121, 0, 0.4);
  color: #ffc078;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: #ffc078;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  color: var(--orange);
  font-style: normal;
}

.hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.hero__proof-avatars {
  display: flex;
}
.hero__proof-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.hero__proof-avatars span:first-child {
  margin-left: 0;
  background: #ff8c42;
}
.hero__proof-avatars span:nth-child(2) {
  background: #e07000;
}
.hero__proof-avatars span:nth-child(3) {
  background: #c85e00;
}

.hero__proof-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.hero__proof-text strong {
  color: white;
  display: block;
}

/* Hero Form Card */
.hero__form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.hero__form-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero__form-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: var(--gray-lt);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--orange);
  background: white;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray);
}
.form-trust svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 36px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item__number {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-item__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ─── Problem Section ───────────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e53);
}
.problem-card__icon {
  width: 44px;
  height: 44px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Features Grid ─────────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--orange);
  box-shadow:
    0 0 0 4px rgba(240, 121, 0, 0.08),
    var(--shadow-md);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--orange-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.feature-card__tag {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 14px;
}

/* ─── How it Works ──────────────────────────────────────────── */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how__steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dk));
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(240, 121, 0, 0.4);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── Benefits Split ────────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-item__icon {
  width: 40px;
  height: 40px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.benefit-item__text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit-item__text p {
  font-size: 14px;
  color: var(--gray);
}

.benefits__visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.benefits__visual::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(240, 121, 0, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.mock-ui {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}
.mock-ui__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-ui__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 6px;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}
.mock-row__name {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.mock-row__status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.status-ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.status-pnd {
  background: rgba(240, 121, 0, 0.15);
  color: #fba94c;
}

.mock-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.mock-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.mock-stat__num {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}
.mock-stat__lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ─── Integrations ──────────────────────────────────────────── */
.integrations__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.integration-badge {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.integration-badge:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 121, 0, 0.1);
}
.integration-badge span {
  font-size: 20px;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 72px;
  color: var(--orange-lt);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 16px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-2);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 15px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-role {
  font-size: 12px;
  color: var(--gray);
}

/* ─── Clients ───────────────────────────────────────────────── */
.clients__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(1);
}
.client-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark-2);
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 8px;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}
.faq-item__q {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.15s;
}
.faq-item__q:hover {
  color: var(--orange);
}
.faq-item__q .faq-arrow {
  font-size: 20px;
  transition: transform 0.25s;
  color: var(--gray);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.open .faq-item__a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 60%, #f07900 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section__inner {
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-section__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section__trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 60px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 14px;
}
.footer__brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer__links a:hover {
  color: var(--orange);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Floating WhatsApp ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ─── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__form-card {
    max-width: 480px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .navbar__links {
    display: none;
  }
  .navbar__cta a:first-child {
    display: none;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem__grid,
  .features__grid,
  .how__steps,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .how__steps::before {
    display: none;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.efeitoBrilho {
  animation: piscar 2s ease;
}

@keyframes piscar {
  0% {
    box-shadow: 0 0 0px transparent;
  }
  25% {
    box-shadow: 0 8px 24px rgba(240, 121, 0, 0.9);
  }
  50% {
    box-shadow: 0 0 0px transparent;
  }
  75% {
    box-shadow: 0 8px 24px rgba(240, 121, 0, 0.9);
  }
  100% {
    box-shadow: 0 0 0px transparent;
  }
}
