:root {
  --blue: #1267ff;
  --blue-dark: #064cd6;
  --blue-soft: #eaf2ff;
  --navy: #071d49;
  --navy-dark: #04122f;
  --text: #0d1b3f;
  --muted: #64708d;
  --line: #e5ebf5;
  --white: #ffffff;
  --bg: #f7faff;
  --green: #12b981;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(20, 51, 105, 0.13);
  --shadow-soft: 0 12px 34px rgba(20, 51, 105, 0.08);
  --radius: 22px;
  --container: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

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

button,
input,
textarea {
  font-family: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-content {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-name {
  font-size: 1.62rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-code {
  color: #0d1b3f;
}

.logo-craft {
  color: var(--blue);
}

.footer-code {
  color: var(--white);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav a {
  position: relative;
  padding: 28px 0;
  color: #263957;
  font-size: 0.98rem;
  font-weight: 700;
}

.nav a.active,
.nav a:hover {
  color: var(--blue);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.header-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(18, 103, 255, 0.24);
  transition: 0.25s ease;
}

.header-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.mobile-button {
  display: none;
  width: 46px;
  height: 46px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.mobile-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(18, 103, 255, 0.24);
}

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

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border: 1px solid #c7d8ff;
}

.btn-outline:hover {
  background: #f4f8ff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 38px;
  background:
    radial-gradient(circle at 10% 10%, rgba(18, 103, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(18, 103, 255, 0.13), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(120deg, transparent 0%, transparent 45%, rgba(18, 103, 255, 0.18) 45.4%, transparent 46%),
    linear-gradient(155deg, transparent 0%, transparent 68%, rgba(18, 103, 255, 0.16) 68.4%, transparent 69%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 50px;
}

.hero-text {
  padding-top: 8px;
}

.hero-text h1 {
  max-width: 710px;
  font-size: clamp(3rem, 5.2vw, 5.05rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero-text h1 span {
  display: block;
  color: var(--blue);
}

.hero-text p {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.68;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-points div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #53627e;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-points i {
  color: var(--blue);
  font-size: 1.05rem;
}

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

.dashboard {
  display: grid;
  grid-template-columns: 150px 1fr;
  width: min(720px, 100%);
  margin-left: auto;
  background: var(--white);
  border: 1px solid #e0e9f7;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-sidebar {
  padding: 24px 14px;
  color: var(--white);
  background: linear-gradient(180deg, #071d49 0%, #03112f 100%);
}

.dashboard-sidebar h3 {
  margin: 0 0 24px 8px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
}

.dashboard-sidebar ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.dashboard-sidebar li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 700;
}

.dashboard-sidebar li.active {
  color: var(--white);
  background: var(--blue);
}

.dashboard-main {
  padding: 24px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-top h3 {
  font-size: 1rem;
  font-weight: 900;
}

.dashboard-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #7b89a8;
}

.dashboard-icons span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #7fb0ff);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.metric-grid article {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(20, 51, 105, 0.04);
}

.metric-grid span {
  display: block;
  margin-bottom: 8px;
  color: #6f7f9d;
  font-size: 0.65rem;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.metric-grid em {
  color: var(--green);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  margin-top: 16px;
}

.chart-card,
.activity-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.card-title h4 {
  font-size: 0.88rem;
  font-weight: 900;
}

.card-title span {
  color: #6f7f9d;
  font-size: 0.68rem;
  font-weight: 700;
}

.chart-area {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.chart-lines {
  position: absolute;
  inset: 16px 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines span {
  display: block;
  border-top: 1px solid #eef3fb;
}

.chart-area svg {
  position: absolute;
  inset: 14px 14px 26px;
  width: calc(100% - 28px);
  height: calc(100% - 40px);
}

.chart-area polyline {
  fill: none;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-days {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  display: flex;
  justify-content: space-between;
  color: #8491aa;
  font-size: 0.66rem;
  font-weight: 700;
}

.integration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.integration-row span {
  color: #63718d;
  font-size: 0.75rem;
  font-weight: 900;
}

.integration-row div {
  display: flex;
  gap: 8px;
}

.integration-row i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue);
  font-size: 0.78rem;
}

.activity-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
}

.activity-card li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: start;
  gap: 10px;
}

.activity-card li > i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
}

.activity-card strong {
  display: block;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
}

.activity-card span,
.activity-card em {
  display: block;
  color: #7a88a1;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
}

.flow-card {
  position: absolute;
  right: -92px;
  top: 82px;
  width: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.flow-card h4 {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
}

.flow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.flow-step::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 26px;
  bottom: -8px;
  width: 2px;
  background: #d8e5fb;
}

.flow-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step i {
  position: relative;
  z-index: 1;
  color: var(--blue);
  background: var(--white);
  font-size: 1rem;
}

.flow-step.danger i {
  color: var(--red);
}

.flow-step strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
}

.flow-step span {
  display: block;
  margin-top: 2px;
  color: #7a88a1;
  font-size: 0.65rem;
  font-weight: 700;
}

.benefits {
  padding: 28px 0 12px;
  background: var(--white);
}

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

.benefit-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.65rem;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 900;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.services {
  padding: 12px 0 36px;
  background: var(--white);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 4px;
  font-size: 1.35rem;
  font-weight: 900;
}

.section-title p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.service-card {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.55rem;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.03rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 50%, rgba(18, 103, 255, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.process-content {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  align-items: center;
  gap: 70px;
  min-height: 180px;
  padding: 42px 0;
}

.process-title span {
  display: block;
  margin-bottom: 10px;
  color: #64a0ff;
  font-size: 0.96rem;
  font-weight: 800;
}

.process-title h2 {
  max-width: 440px;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 18px;
  align-items: start;
  min-width: 0;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 38px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(18, 103, 255, 0.16);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.step-icon {
  grid-area: icon;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.45rem;
}

.process-steps h3 {
  grid-area: title;
  margin-top: 2px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 900;
  max-width: 260px;
}

.process-steps p {
  grid-area: text;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 600;
}

.projects {
  padding: 42px 0 18px;
  background: var(--white);
}

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

.projects-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.project-image {
  height: 170px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--blue);
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 103, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #eef5ff 0%, #dbe9ff 100%);
  font-size: 3rem;
}

.projects-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 900;
}

.projects-grid p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact {
  padding: 28px 0 36px;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-text span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-text h2 {
  max-width: 410px;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.contact-text p {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.form-top label {
  position: relative;
}

.form-top input,
.form-bottom textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-top input {
  height: 48px;
  padding: 0 42px 0 16px;
}

.form-top i {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #97a4bb;
  transform: translateY(-50%);
}

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

.form-bottom textarea {
  min-height: 84px;
  padding: 14px 16px;
  resize: vertical;
}

.form-top input:focus,
.form-bottom textarea:focus {
  border-color: #b8ccfb;
  box-shadow: 0 0 0 4px rgba(18, 103, 255, 0.07);
}

.form-send {
  display: grid;
  align-content: start;
  gap: 14px;
}

.form-send button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(18, 103, 255, 0.24);
}

.form-send p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-send p i {
  color: var(--blue);
  font-size: 1rem;
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1.35fr 0.7fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 500;
}

.footer-nav h3,
.footer-social h3 {
  margin-bottom: 14px;
  font-size: 0.98rem;
  font-weight: 900;
}

.footer-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-social div {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 1280px) {
  .flow-card {
    right: 6px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard {
    margin: 0 auto;
    width: min(890px, 100%);
  }

  .flow-card {
    position: static;
    width: min(890px, 100%);
    margin: 18px auto 0;
  }
}

@media (max-width: 1100px) {
  .benefits-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .process-content {
    gap: 38px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-steps article {
    max-width: 520px;
  }

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

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

@media (max-width: 900px) {
  .header-content {
    grid-template-columns: auto auto;
  }

  .mobile-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

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

  .header-button {
    display: none;
  }

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

  .dashboard-sidebar {
    border-radius: 0;
  }

  .metric-grid,
  .dashboard-bottom,
  .form-top,
  .form-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.7rem;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

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

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

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

.cookie-btn {
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-btn.primary {
  border: 0;
  color: var(--white);
  background: var(--blue);
}

.cookie-btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 18% 14%, rgba(18, 103, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(18, 103, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.thanks-card {
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-logo {
  margin: 0 auto 28px;
}

.thanks-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 2.6rem;
}

.thanks-card h1 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.thanks-card p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

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

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .thanks-card {
    padding: 28px 20px;
  }

  .thanks-actions {
    flex-direction: column;
  }
}

.thanks-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.thanks-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.thanks-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
}

.thanks-info i {
  color: var(--blue);
  font-size: 1.15rem;
}

@media (max-width: 720px) {
  .thanks-info {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(18, 103, 255, 0.08);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
  margin-top: 30px;
}

.hero-mini-stats article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(20, 51, 105, 0.06);
}

.hero-mini-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-mini-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience {
  padding: 42px 0 24px;
  background: var(--white);
}

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

.audience-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(18, 103, 255, 0.09), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.audience-grid i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.55rem;
}

.audience-grid h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  font-weight: 900;
}

.audience-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.trust {
  padding: 48px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 103, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.trust-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.trust-text h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.trust-text p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-list i {
  color: #64a0ff;
  font-size: 1.55rem;
}

.trust-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.trust-list p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq {
  padding: 42px 0 24px;
  background: var(--white);
}

.faq-content {
  max-width: 1050px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.faq-item {
  height: fit-content;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-50%);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "×";
}

.faq-item p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-highlights div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-highlights i {
  color: var(--blue);
}

.form-top select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  appearance: none;
}

.form-top select:focus {
  border-color: #b8ccfb;
  box-shadow: 0 0 0 4px rgba(18, 103, 255, 0.07);
}

.form-top-secondary {
  grid-template-columns: repeat(3, 1fr);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #12b981;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(18, 185, 129, 0.28);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(18, 185, 129, 0.34);
}

.whatsapp-float i {
  font-size: 1.25rem;
}

@media (max-width: 1100px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .form-top-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .cookie-banner {
    bottom: 82px;
  }
}

html {
  scroll-padding-top: 92px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 103, 255, 0.35);
  outline-offset: 3px;
}

button:disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

.legal-header-content {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.legal-page {
  padding: 54px 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 103, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.legal-content {
  max-width: 960px;
}

.legal-hero {
  margin-bottom: 24px;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.legal-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.legal-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 900;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.7;
}

.legal-card a {
  color: var(--blue);
  font-weight: 900;
}

.legal-updated {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
  font-weight: 900 !important;
}

.footer-copy a {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-copy a:hover {
  color: var(--white);
}

.cookie-banner a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 720px) {
  .legal-header-button {
    display: none;
  }

  .legal-card {
    padding: 26px 20px;
  }
}