:root {
  --ink: #08111f;
  --ink-2: #101b2d;
  --brand: #ff3b00;
  --brand-2: #df2f00;
  --aqua: #22c7d8;
  --lime: #b8f05a;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --soft-2: #edf5f8;
  --line: #dfe7ef;
  --text: #182230;
  --muted: #667085;
  --max: 1180px;
  --shadow: 0 22px 70px rgba(8, 17, 31, .12);
  --shadow-soft: 0 14px 34px rgba(8, 17, 31, .08);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(8,17,31,.04) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0, #fff 420px);
  background-size: 72px 72px, auto;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 20px;
  top: 20px;
  z-index: 999;
  background: var(--paper);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff 0, #eef8fb 100%);
}

.section-gray {
  background: #f3f6fb;
}

.topbar {
  background: var(--ink);
  color: #e8f4ff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(223, 231, 239, .9);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 17, 31, .08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2f3b4c;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 36px rgba(255, 59, 0, .26);
}

.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: #e9fbff;
  color: #06606b;
  padding: 8px 12px;
  border: 1px solid #caeef3;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eyebrow.red {
  background: #fff0eb;
  color: #b82800;
  border-color: #ffd8cb;
}

.title {
  margin: 16px 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 86px;
  background:
    linear-gradient(135deg, rgba(8,17,31,.96) 0%, rgba(16,27,45,.98) 55%, rgba(255,59,0,.94) 150%),
    var(--ink);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .32;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--brand), var(--aqua), var(--lime));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 58px;
  align-items: center;
}

.hero .eyebrow {
  background: rgba(255,255,255,.1);
  color: #e9fbff;
  border-color: rgba(255,255,255,.18);
}

.hero h1 {
  margin: 18px 0;
  max-width: 770px;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero p {
  max-width: 690px;
  color: #d7e4ef;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.trust-card {
  padding: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.trust-card b {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.trust-card span {
  display: block;
  margin-top: 6px;
  color: #b9c9d8;
  font-size: 12px;
  font-weight: 850;
}

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

.visual-main {
  position: absolute;
  top: 34px;
  right: 0;
  width: min(430px, 82%);
  height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #dfefff;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ui-card {
  position: absolute;
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.search-card {
  left: 0;
  top: 72px;
  width: 332px;
}

.search-pill {
  margin-bottom: 12px;
  background: #f0f4f8;
  border-radius: 8px;
  padding: 11px 13px;
  color: #506174;
  font-size: 13px;
  font-weight: 900;
}

.stars {
  color: #f7b500;
  font-weight: 950;
}

.map {
  position: relative;
  height: 118px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 0 40%, rgba(8,17,31,.08) 43% 45%, transparent 46%),
    #edf7ff;
  background-size: 70px 70px;
}

.pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 24px;
  height: 24px;
  background: var(--brand);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 8px;
  top: 8px;
  border-radius: 50%;
  background: #fff;
}

.growth {
  left: 48px;
  bottom: 70px;
  width: 285px;
}

.growth b {
  display: block;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.growth small {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.spark {
  position: relative;
  height: 50px;
  margin-top: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34,199,216,.14), rgba(255,59,0,.12));
}

.spark::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 12px;
  height: 24px;
  border-bottom: 4px solid var(--aqua);
  border-radius: 50%;
  transform: skewX(-18deg);
}

.float {
  position: absolute;
  right: 12px;
  bottom: 92px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(255, 59, 0, .36);
  font-size: 46px;
}

.metrics {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.metrics-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric i,
.benefit i {
  font-style: normal;
}

.metric i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #eafcff;
  border-radius: 8px;
  font-size: 24px;
}

.metric:nth-child(even) i {
  background: #fff0eb;
}

.metric b {
  display: block;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #15243a);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dark-panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--brand), var(--aqua));
}

.dark-panel h2,
.dark-panel .title {
  color: #fff;
}

.dark-panel p {
  color: #d8e4ef;
}

.feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list li {
  list-style: none;
  padding: 13px 15px;
  color: #eef8ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  font-weight: 850;
}

.feature-list li::before,
.article li::before {
  content: '+';
  margin-right: 9px;
  color: var(--aqua);
  font-weight: 950;
}

.image-round,
.page-image {
  overflow: hidden;
  background: #eef6ff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-round img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.cards,
.step-grid,
.city-grid,
.results {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

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

.card,
.step,
.city,
.result,
.faq-item,
.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.card,
.step,
.city,
.mini-card {
  padding: 26px;
}

.card {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #c9d6e2;
  box-shadow: var(--shadow);
}

.card:hover::before {
  transform: scaleX(1);
}

.icon,
.num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 950;
}

.icon {
  background: #eafcff;
}

.card:nth-child(even) .icon {
  background: #fff0eb;
}

.card h3,
.step h3,
.mini-card h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.card p,
.step p,
.result p,
.article p,
.faq-item p {
  color: var(--muted);
}

.card p,
.step p,
.result p {
  font-size: 15px;
}

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 950;
}

.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.sector {
  position: relative;
  min-height: 288px;
  overflow: hidden;
  color: #fff;
  background: #dbeeff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.sector img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.sector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,17,31,.1) 0, rgba(8,17,31,.92) 92%);
}

.sector:hover img {
  transform: scale(1.05);
}

.sector-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.sector h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.sector p {
  color: #e7f3ff;
  font-size: 14px;
}

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

.num {
  color: #fff;
  background: var(--ink);
}

.step:nth-child(even) .num {
  background: var(--brand);
}

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

.city h3 {
  color: var(--ink);
  font-size: 28px;
  margin-bottom: 8px;
}

.city ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.city li {
  list-style: none;
}

.city li a,
.link-list a {
  color: #334e6f;
  font-weight: 850;
}

.city li a:hover,
.link-list a:hover {
  color: var(--brand);
}

.result {
  overflow: hidden;
}

.result img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.result-body {
  padding: 26px;
}

.result b {
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.result h3 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 23px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(8,17,31,.95), rgba(16,27,45,.94)),
    #101b2d;
  color: #fff;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .26;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.breadcrumb {
  margin-bottom: 16px;
  color: #b6c6d7;
  font-size: 13px;
  font-weight: 850;
}

.breadcrumb a {
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 700px;
  margin-top: 20px;
  color: #d7e4ef;
  font-size: 19px;
}

.page-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 44px;
  align-items: start;
}

.article {
  display: grid;
  gap: 26px;
}

.article h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.article p {
  font-size: 17px;
}

.article ul {
  display: grid;
  gap: 10px;
  margin-left: 0;
}

.article li {
  list-style: none;
  padding: 13px 16px;
  color: #334e6f;
  background: #f7fafe;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.link-list a {
  padding: 11px 13px;
  background: #f7fafe;
  border-radius: 8px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 38px;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #172840);
  border-radius: 8px;
}

.cta-strip h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
}

.cta-strip p {
  margin-top: 8px;
  color: #d7e6f6;
}

.faq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
}

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

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.lead-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8,17,31,.96), rgba(16,27,45,.97)),
    var(--ink);
}

.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .24;
}

.lead-section::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--brand), var(--aqua), var(--lime));
}

.lead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.lead-section .title {
  color: #fff;
}

.lead-section .subtitle {
  color: #d7e6f6;
}

.benefits {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.benefit {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}

.benefit i {
  font-size: 24px;
}

.form-card {
  padding: 32px;
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.form-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.form-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 13px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  outline: none;
  font: inherit;
  font-size: 15px;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 59, 0, .12);
}

.form-card textarea {
  min-height: 116px;
  resize: vertical;
}

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

.form-note {
  margin-top: 12px !important;
  color: #7a8798 !important;
  font-size: 12px !important;
}

.footer {
  padding: 70px 0 28px;
  color: #d7e6f6;
  background: #080f1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 34px;
}

.footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 5px;
  background: #fff;
  border-radius: 8px;
}

.footer p {
  margin-top: 18px;
  color: #b9cbe0;
}

.footer h4 {
  margin-bottom: 18px;
  color: #fff;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: #b9cbe0;
  font-weight: 750;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9fb5cf;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  color: #fff;
  background: #25d366;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(37,211,102,.35);
  font-weight: 950;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .lead-grid,
  .faq,
  .page-hero .container,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .visual {
    min-height: 520px;
    max-width: 620px;
  }

  .cards,
  .metrics-card,
  .sectors,
  .city-grid,
  .results,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sidebar {
    position: relative;
    top: auto;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 940px) {
  .topbar {
    display: none;
  }

  .nav-links,
  .nav-inner > .btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .brand img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 760px) {

  .hero {
    padding: 54px 0 70px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .trust,
  .cards,
  .metrics-card,
  .sectors,
  .city-grid,
  .results,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .visual {
    min-height: 430px;
  }

  .visual-main {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 360px;
  }

  .ui-card,
  .float {
    display: none;
  }

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

  .section {
    padding: 70px 0;
  }

  .dark-panel,
  .form-card,
  .cta-strip {
    padding: 28px;
  }

  .page-image img {
    height: 290px;
  }

  .whatsapp-float span {
    display: none;
  }

  .footer-bottom {
    display: block;
  }

  .cta-strip h2 {
    font-size: 28px;
  }
}
