:root {
  --ink: #061012;
  --ink-2: #0c1a1f;
  --ink-3: #12272d;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --soft-2: #e7eef0;
  --muted: #627176;
  --line: rgba(10, 28, 32, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --teal: #00d6c9;
  --teal-2: #17f1b6;
  --blue: #3185ff;
  --lime: #c7f66a;
  --shadow: 0 22px 70px rgba(2, 16, 20, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: calc(100vw - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 15, 18, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 15, 18, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.brand img {
  width: 158px;
  max-height: 46px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 27px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: width 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: #021315;
  background: linear-gradient(135deg, var(--teal-2), var(--teal) 52%, var(--blue));
  box-shadow: 0 16px 42px rgba(0, 214, 201, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(6, 16, 18, 0.2);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 15, 18, 0.2), rgba(5, 15, 18, 0.94)),
    radial-gradient(circle at 18% 12%, rgba(0, 214, 201, 0.16), transparent 34%),
    linear-gradient(135deg, #061012, #0c1b22 50%, #081316);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 86%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding: 92px 0 80px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 950px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.brand-visual {
  position: absolute;
  inset: 6% 2% auto auto;
  width: min(72%, 430px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.growth-panel {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: min(86%, 460px);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 15, 18, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.growth-panel h2 {
  margin: 0 0 12px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.metric {
  min-height: 92px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric strong {
  display: block;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.35;
}

.trust-bar {
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 22px 20px;
  border-left: 1px solid var(--line-dark);
}

.trust-item:last-child {
  border-right: 1px solid var(--line-dark);
}

.trust-item strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 214, 201, 0.08), transparent 38%),
    var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head h2,
.content-block h2,
.cta-panel h2,
.quote-panel h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head p,
.content-block p,
.cta-panel p,
.quote-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p,
.section-dark .content-block p,
.section-dark .cta-panel p,
.section-dark .quote-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.testimonial-card,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(6, 16, 18, 0.06);
}

.contact-grid {
  margin-top: 24px;
}

.section-dark .card,
.section-dark .service-card,
.section-dark .testimonial-card,
.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
  box-shadow: none;
}

.service-card,
.card {
  padding: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #031315;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  font-weight: 900;
  font-size: 13px;
}

.service-card h3,
.testimonial-card h3,
.card h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.service-card p,
.testimonial-card p,
.card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.section-dark .service-card p,
.section-dark .testimonial-card p,
.section-dark .card p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.section-dark .service-card li,
.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-weight: 850;
}

.section-dark .card-link {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.feature-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.feature-panel.light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.feature-panel .panel-line {
  height: 10px;
  margin: 22px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--lime));
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mini-stat {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-panel.light .mini-stat {
  background: var(--soft);
  border-color: var(--line);
}

.mini-stat strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.feature-panel.light .mini-stat span {
  color: var(--muted);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 16px;
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.section-dark .process-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: #031315;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
}

.process-step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.testimonial-card {
  padding: 26px;
}

.stars {
  color: #08a99f;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.testimonial-author {
  margin-top: 20px;
  color: var(--ink);
  font-weight: 850;
}

.section-dark .testimonial-author {
  color: #fff;
}

.page-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 214, 201, 0.09), transparent 44%),
    linear-gradient(180deg, #071114, #0b1a20);
}

.page-hero-inner {
  padding: 82px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
}

.service-nav {
  position: relative;
  z-index: 3;
  margin-top: -26px;
}

.service-nav-inner {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.service-nav-inner a {
  white-space: nowrap;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.service-nav-inner a.active,
.service-nav-inner a:hover,
.service-nav-inner a:focus {
  color: var(--ink);
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.section-dark .faq-question {
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.section-dark .faq-answer p {
  color: rgba(255, 255, 255, 0.68);
}

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.quote-panel,
.form-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: 34px;
}

.form-card {
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fafdfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 214, 201, 0.78);
  box-shadow: 0 0 0 4px rgba(0, 214, 201, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #087c74;
  font-weight: 800;
  font-size: 14px;
}

.cta {
  padding: 82px 0;
  color: #fff;
  background: var(--ink);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(0, 214, 201, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.045);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #050d0f;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 58px 0 38px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
}

.footer-col p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #051315;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  box-shadow: 0 16px 46px rgba(0, 214, 201, 0.34);
  font-size: 14px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.privacy-content {
  max-width: 860px;
}

.privacy-content h2 {
  margin-top: 42px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-inner,
  .split,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: calc(100vw - 28px);
    max-width: var(--max);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(5, 15, 18, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
    border-radius: var(--radius);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus,
  .main-nav a.active {
    background: rgba(255, 255, 255, 0.07);
  }

  .hero-inner {
    padding: 70px 0 60px;
    gap: 34px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .brand-visual {
    width: 72%;
  }

  .growth-panel {
    width: 90%;
    padding: 18px;
  }

  .metric-grid,
  .trust-inner,
  .section-head,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 70px 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

@media (max-width: 620px) {
  .hero-copy h1,
  .page-hero h1 {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-copy p,
  .page-hero p {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 16px;
  }

  .hero-copy,
  .hero-actions,
  .hero-points,
  .hero-visual,
  .growth-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-actions,
  .section-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .brand-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    right: auto;
  }

  .growth-panel {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    overflow: hidden;
  }

  .growth-panel h2 {
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  .pill {
    max-width: 100%;
    white-space: normal;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .metric-grid,
  .mini-stats,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  body {
    padding-bottom: 76px;
  }
}
