@font-face {
  font-family: "Diodrum Rounded";
  src: url("https://static.wixstatic.com/ufonts/4b03dc_189856c45f7d441bbb94bddf915ace52/woff2/file.woff2") format("woff2");
  font-display: swap;
}

:root {
  --blue: #112f5b;
  --cyan: #64c5dd;
  --cyan-dark: #4b94a6;
  --ink: #16314f;
  --muted: #5e7084;
  --paper: #ffffff;
  --soft: #f4fbfd;
  --line: #d8eef4;
  --shadow: 0 8px 14px 3px rgba(0, 0, 0, 0.17);
  --font: "Diodrum Rounded", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: #fff;
  line-height: 1.55;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 47, 91, 0.08);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  flex-wrap: wrap;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.nav-search {
  flex: 1 1 260px;
  min-width: 170px;
  max-width: 360px;
}

.nav-search input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: 400 14px/1.2 var(--font);
}

.nav-search input::placeholder {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

body.nav-open .nav-toggle span {
  opacity: 0;
}

body.nav-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  font-size: 14px;
  color: var(--blue);
  min-width: 0;
  white-space: nowrap;
}

.menu a {
  flex: 1 1 0;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.menu a:hover,
.menu a.active {
  color: var(--cyan-dark);
  border-bottom-color: var(--cyan);
}

.nav-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.language-select {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  white-space: nowrap;
}

.language-select span {
  font-weight: 700;
}

.language-select select {
  min-width: 128px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 34px 0 10px;
  background: #fff;
  color: var(--ink);
  font: 400 14px/1.2 var(--font);
}

.btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 8px 18px;
  border-radius: 5px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font: 400 16px/1.2 var(--font);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn span,
.btn font {
  white-space: nowrap;
}

.btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.btn.alt {
  background: var(--cyan);
}

.btn.alt:hover {
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(74, 181, 207, 0.91), rgba(100, 197, 221, 0.84)),
    url("assets/hero.png") center right / cover no-repeat;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: 74px 22px 88px;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 610px;
  font-size: clamp(36px, 3.3vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-copy {
  color: #fff;
}

.hero-copy h2 {
  margin: 58px 0 28px;
  max-width: 600px;
  color: #fff;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.16;
  font-weight: 700;
  text-wrap: balance;
}

.hero-copy ul {
  margin: 0 0 48px;
  padding-left: 28px;
  color: rgba(17, 47, 91, 0.72);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
}

.hero-statement {
  color: #fff;
  font-size: clamp(26px, 2.7vw, 38px) !important;
  line-height: 1.22 !important;
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  padding: clamp(36px, 4.4vw, 58px);
  box-shadow: var(--shadow);
  color: #0f1e30;
}

.hero-card-logo {
  width: min(420px, 100%);
  margin: 0 auto 66px;
}

.hero-card-heading {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 22px;
  align-items: center;
  margin-bottom: 38px;
}

.hero-card h2 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.25;
  font-weight: 700;
}

.hero-card p {
  color: #0f1e30;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-card p strong {
  font-weight: 700;
}

.hero-card ul {
  margin: 18px 0 28px;
  padding-left: 28px;
  color: #0f1e30;
  font-size: 16px;
  line-height: 1.45;
}

.payment-icon {
  position: relative;
  width: 76px;
  height: 50px;
  justify-self: end;
}

.payment-icon::before,
.payment-icon::after {
  content: "";
  position: absolute;
  border: 5px solid #f5bd7b;
  border-radius: 7px;
}

.payment-icon::before {
  right: 0;
  top: 0;
  width: 46px;
  height: 34px;
}

.payment-icon::after {
  left: 0;
  bottom: 0;
  width: 58px;
  height: 34px;
  background: linear-gradient(#f5bd7b 0 12px, transparent 12px);
}

.section {
  padding: 66px 22px;
}

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

.wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan-dark);
  font-size: 18px;
  font-weight: 700;
}

h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 400;
}

h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
}

.lead {
  max-width: 860px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 20px;
}

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

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

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

.card {
  background: var(--paper);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: scale(1.03);
}

.sitemap-card ul {
  margin: 0;
  padding-left: 18px;
}

.sitemap-card li {
  margin: 9px 0;
}

.sitemap-card a {
  color: var(--blue);
  border-bottom: 1px solid rgba(100, 197, 221, 0.45);
}

.sitemap-card a:hover {
  color: var(--cyan-dark);
  border-bottom-color: currentColor;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--cyan);
  font-size: 24px;
}

.feature-list {
  columns: 2;
  gap: 34px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.feature-list li {
  break-inside: avoid;
  margin: 7px 0;
}

.platform {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.platform:first-child {
  border-top: 0;
}

.platform .url {
  color: var(--cyan-dark);
  font-weight: 700;
}

.tag {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #fff;
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.info-table th {
  background: var(--blue);
  color: #fff;
  font-weight: 400;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

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

.form label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-size: 15px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: 400 16px/1.4 var(--font);
}

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

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.footer {
  background: var(--blue);
  color: #fff;
  padding: 52px 22px 28px;
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
}

.footer p,
.footer li {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.qr {
  width: 124px;
  margin-top: 12px;
  border-radius: 8px;
}

.copyright {
  max-width: 1440px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.admin-panel {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1000;
  font-family: var(--font);
}

.admin-toggle,
.admin-actions button {
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font: 700 14px/1.2 var(--font);
  cursor: pointer;
}

.admin-toggle {
  min-height: 42px;
  padding: 10px 18px;
  box-shadow: var(--shadow);
}

.admin-menu {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: min(310px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.admin-title {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.admin-menu p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.admin-menu p.error {
  color: #a62222;
}

.admin-actions {
  display: grid;
  gap: 8px;
}

.admin-actions button {
  min-height: 38px;
  padding: 9px 12px;
  background: var(--cyan-dark);
}

.admin-actions button[data-admin-signout] {
  background: var(--blue);
}

.admin-mode [data-admin-text-key] {
  outline: 2px dashed rgba(100, 197, 221, 0.9);
  outline-offset: 3px;
  cursor: text;
}

.admin-mode [data-admin-text-key]:hover {
  background: rgba(100, 197, 221, 0.16);
}

.admin-editor {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1001;
  width: min(560px, calc(100vw - 32px));
  transform: translate(-50%, -50%);
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-editor label {
  display: grid;
  gap: 10px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.admin-editor textarea {
  min-height: 160px;
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font: 400 17px/1.45 var(--font);
}

.admin-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    align-self: center;
  }

  .brand img {
    width: 188px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-search {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    width: 100%;
  }

  .menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    font-size: 17px;
    background: #fff;
  }

  body.nav-open .menu {
    display: flex;
  }

  .menu a {
    flex: 0 0 auto;
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .language-select {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .language-select select {
    flex: 1;
    max-width: 260px;
  }

  .nav-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-actions .btn {
    min-height: 44px;
  }

  .hero-inner,
  .split,
  .cards-3,
  .cards-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 46px 18px 60px;
    gap: 34px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.16;
  }

  .hero-copy {
    order: -1;
  }

  .hero-copy h2 {
    margin-top: 34px;
    font-size: clamp(30px, 6vw, 42px);
  }

  .hero-copy ul {
    font-size: 19px;
    margin-bottom: 30px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero-card {
    padding: 30px;
  }

  .hero-card-logo {
    margin-bottom: 42px;
  }

  .hero-card-heading {
    grid-template-columns: 1fr 72px;
  }

  .payment-icon {
    width: 66px;
    transform: scale(0.88);
    transform-origin: right center;
  }

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

  .feature-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 170px;
  }

  .topbar {
    position: relative;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-inner {
    padding: 34px 16px 44px;
  }

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

  .hero-copy h2 {
    margin: 28px 0 20px;
    font-size: 28px;
  }

  .hero-copy ul {
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-statement {
    font-size: 24px !important;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-card-logo {
    margin-bottom: 32px;
  }

  .hero-card-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .hero-card h2 {
    font-size: 28px;
  }

  .payment-icon {
    justify-self: start;
  }

  .hero-card ul {
    padding-left: 22px;
    font-size: 15px;
  }

  .section {
    padding: 46px 18px;
  }
}
