:root {
  --navy: #081a31;
  --navy-2: #102b48;
  --blue: #1469e8;
  --blue-dark: #0c55c8;
  --aqua: #17b890;
  --green: #06936e;
  --bg: #f5f8fc;
  --card: #ffffff;
  --ink: #091b32;
  --body: #50627b;
  --muted: #798aa1;
  --line: #deE6f1;
  --light-blue: #e9f1ff;
  --shadow: 0 22px 56px rgba(8, 26, 49, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.notice-bar {
  height: 42px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #527091;
  background: #eaf1fa;
  font-size: 13px;
}

.notice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  height: 78px;
  padding: 0 max(calc((100% - 1200px) / 2), 32px);
  display: flex;
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid rgba(222, 230, 241, .88);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: linear-gradient(145deg, #1268e8, #0e90ce);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: rgba(255, 255, 255, .14);
  stroke: white;
  stroke-width: 2.1;
  stroke-linejoin: round;
}

.brand-mark .check {
  fill: none;
  stroke-width: 2.7;
  stroke-linecap: round;
}

.brand strong {
  display: block;
  letter-spacing: -.03em;
  font-size: 22px;
  line-height: 20px;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .27em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #475b76;
  font-size: 14px;
  font-weight: 600;
}

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

.nav-links a.current {
  position: relative;
  color: var(--blue);
}

.nav-links a.current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  height: 2px;
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}

.language-switcher {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 7px 5px 12px;
  border: 1px solid #d7e3f2;
  border-radius: 999px;
  color: #36506f;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 6px 18px rgba(17, 44, 78, .05);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher select {
  min-height: 31px;
  max-width: 138px;
  border: 0;
  border-radius: 999px;
  color: #082a5d;
  background: #edf5ff;
  font: inherit;
  font-size: 12px;
  outline: none;
  padding: 0 8px;
}

.language-switcher select:focus {
  box-shadow: 0 0 0 2px rgba(22, 104, 232, .2);
}

.ghost-button {
  padding: 12px 20px;
  color: #334d6e;
  background: transparent;
  font-weight: 600;
}

.cart-button {
  min-height: 47px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  border-radius: 12px;
  background: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.cart-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button b {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

main {
  overflow: hidden;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 74px 0 64px;
  display: grid;
  grid-template-columns: 1.01fr .99fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero-copy h1 {
  margin: 0 0 25px;
  color: var(--ink);
  font-size: clamp(42px, 4vw, 55px);
  line-height: 1.16;
  letter-spacing: -.075em;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 552px;
  margin: 0 0 33px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.primary-link,
.secondary-link {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 29px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.primary-link {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 22px rgba(20, 105, 232, .2);
}

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

.secondary-link {
  border: 1px solid #cdd8e8;
  color: #253d5b;
  background: white;
}

.trust-row {
  display: flex;
  gap: 26px;
  color: #566b84;
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.hero-panel {
  padding: 28px 32px 30px;
  border: 1px solid #dbe5f1;
  border-radius: 21px;
  background: white;
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 25px;
}

.panel-header small {
  display: block;
  margin-bottom: 8px;
  color: #98a6b8;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 800;
}

.panel-header strong {
  font-size: 19px;
}

.status-pill {
  padding: 8px 17px;
  border-radius: 20px;
  color: var(--green);
  background: #e1f6ef;
  font-size: 12px;
  font-weight: 700;
}

.progress-track {
  position: relative;
  display: grid;
  gap: 11px;
  margin-bottom: 25px;
}

.progress-line {
  position: absolute;
  left: 20px;
  top: 38px;
  bottom: 38px;
  border-left: 2px solid #e3eaf4;
}

.progress-step {
  z-index: 1;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px 10px 9px;
  border-radius: 12px;
  background: white;
}

.progress-step.active {
  background: #edf4ff;
}

.progress-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #8798ad;
  border: 1px solid #d8e1ee;
  border-radius: 50%;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 800;
}

.progress-step.complete > span {
  color: white;
  border-color: var(--aqua);
  background: var(--aqua);
}

.progress-step.active > span {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.progress-step strong,
.progress-step small {
  display: block;
}

.progress-step strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.progress-step small {
  color: var(--muted);
}

.panel-note {
  display: flex;
  gap: 15px;
  padding: 18px 19px;
  border-radius: 12px;
  background: #f4f7fb;
  color: #4d637c;
}

.panel-note svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.panel-note strong {
  color: #163452;
  font-size: 13px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.benefits article {
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 43px 1fr;
  column-gap: 16px;
}

.benefits article + article {
  border-left: 1px solid var(--line);
}

.benefits article > strong {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--light-blue);
  font-size: 12px;
}

.benefits h2 {
  margin: 1px 0 8px;
  font-size: 16px;
}

.benefits p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 82px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 31px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

.section-heading h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 360px;
  margin: 0 0 2px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 29px 28px 27px;
  border: 1px solid #dce5ef;
  border-radius: 17px;
  background: white;
  transition: border-color .16s ease, transform .16s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: #c6d8f1;
}

.service-card.featured {
  border: 2px solid var(--blue);
  padding: 28px 27px 26px;
  box-shadow: 0 12px 30px rgba(20, 105, 232, .08);
}

.popular {
  position: absolute;
  top: -13px;
  left: 27px;
  padding: 5px 17px;
  border-radius: 20px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.card-title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.service-icon {
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--light-blue);
  font-size: 13px;
  font-weight: 800;
}

.card-title h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.card-title small {
  color: var(--muted);
}

.service-card p {
  margin: 0 0 20px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.service-card ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4d637c;
  font-size: 13px;
}

.service-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 21px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
  transform: rotate(-45deg);
}

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

.price-row strong {
  font-size: 28px;
  letter-spacing: -.04em;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
}

.products-callout {
  margin-top: 25px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid #dce5ef;
  border-radius: 15px;
  background: white;
}

.products-callout strong {
  display: block;
  margin-bottom: 7px;
}

.products-callout p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
}

.products-callout .primary-link {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.add-button {
  padding: 11px 17px;
  border-radius: 9px;
  color: #315277;
  background: #edf3fc;
  font-size: 13px;
  font-weight: 700;
}

.featured .add-button {
  color: white;
  background: var(--blue);
}

.tool-preview {
  max-width: 1200px;
  margin: 6px auto 82px;
  padding: 54px 52px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 55px;
  border-radius: 23px;
  color: white;
  background: var(--navy);
}

.tool-copy h2 {
  margin: 0 0 20px;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.tool-copy > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: #adc0d7;
  font-size: 14px;
  line-height: 1.82;
}

.scope-box {
  margin-bottom: 28px;
  padding: 16px 17px;
  border: 1px solid rgba(89, 129, 172, .45);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.scope-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.scope-box p {
  margin: 0;
  color: #a9bdd4;
  font-size: 12px;
  line-height: 1.7;
}

.tool-link {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.tool-ui {
  padding: 19px;
  border: 1px solid rgba(124, 160, 194, .26);
  border-radius: 16px;
  background: #10243e;
}

.tool-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
  color: #dae6f3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.tool-bar i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--aqua);
}

.tool-bar b {
  padding: 7px 11px;
  border-radius: 18px;
  color: #53dbb3;
  background: rgba(23, 184, 144, .12);
  font-size: 10px;
}

.tool-body {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 15px;
}

.upload-area {
  min-height: 233px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  border: 1px dashed #49647f;
  border-radius: 11px;
  color: #c8d8e9;
  text-align: center;
}

.upload-area svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--aqua);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-area strong {
  font-size: 12px;
}

.upload-area small {
  color: #718ca7;
  font-size: 10px;
}

.result-area {
  padding: 18px 17px;
  border-radius: 11px;
  background: #172e49;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 700;
}

.result-header b {
  padding: 6px 13px;
  border-radius: 20px;
  color: #d2dce7;
  background: #273e59;
  font-size: 10px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: #9ab1c9;
  font-size: 11px;
}

.result-row i {
  width: 62px;
  height: 8px;
  border-radius: 5px;
  background: #253d59;
}

.tool-privacy {
  margin-top: 26px;
  padding-top: 12px;
  border-top: 1px solid rgba(118, 149, 181, .18);
  color: #748fa8;
  font-size: 10px;
}

.process {
  padding-top: 0;
}

.compact {
  margin-bottom: 29px;
}

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

.process-grid article {
  padding: 27px 24px 25px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.process-grid span {
  display: block;
  margin-bottom: 19px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 0 0 11px;
  font-size: 16px;
}

.process-grid p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}

.security {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 46px 48px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 54px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
}

.security-copy h2 {
  max-width: 415px;
  margin: 0;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -.045em;
}

.security-list article {
  display: flex;
  gap: 21px;
  padding: 17px 0;
}

.security-list article + article {
  border-top: 1px solid var(--line);
}

.security-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.security-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.security-list p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.65;
}

.faq {
  max-width: 820px;
}

.faq details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  cursor: pointer;
}

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

.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 21px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 16px 40px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
}

.footer {
  min-height: 125px;
  padding: 30px max(calc((100% - 1200px) / 2), 32px);
  display: flex;
  gap: 34px;
  align-items: center;
  color: #71859d;
  border-top: 1px solid var(--line);
  background: white;
  font-size: 13px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-brand .brand-mark svg {
  width: 27px;
  height: 27px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 19px;
}

.footer > small {
  margin-left: auto;
  font-size: 11px;
}

.cart-panel {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 29px 27px 26px;
  background: white;
  transform: translateX(104%);
  transition: transform .23s ease;
  box-shadow: -20px 0 48px rgba(9, 27, 50, .17);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.cart-head .eyebrow {
  margin: 0 0 9px;
}

.cart-head h2 {
  margin: 0;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #4b607a;
  background: #f0f4f9;
  font-size: 26px;
}

.cart-empty {
  margin: auto 0;
  padding: 35px 30px;
  border-radius: 15px;
  color: var(--body);
  background: #f5f8fc;
  text-align: center;
}

.cart-empty strong {
  color: var(--ink);
}

.cart-empty p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.65;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line strong {
  font-size: 14px;
}

.cart-line small {
  color: var(--muted);
}

.cart-line button {
  grid-column: 2;
  color: var(--blue);
  background: transparent;
  font-size: 12px;
}

.checkout {
  display: none;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.checkout.visible {
  display: block;
}

.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}

.total span {
  color: var(--body);
}

.total strong {
  font-size: 25px;
}

.checkout label {
  display: block;
  margin-bottom: 12px;
  color: #475d78;
  font-size: 13px;
  font-weight: 700;
}

.currency-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.currency-picker button {
  padding: 13px 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  font-weight: 700;
}

.currency-picker button.selected {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--light-blue);
}

.rate-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.checkout-button {
  width: 100%;
  min-height: 53px;
  margin-top: 11px;
  border-radius: 10px;
  color: white;
  background: var(--blue);
  font-weight: 700;
}

.overlay {
  position: fixed;
  z-index: 19;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(7, 19, 35, .42);
  transition: opacity .2s ease, visibility .2s ease;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
}

.toast {
  position: fixed;
  z-index: 22;
  left: 50%;
  bottom: 27px;
  padding: 14px 22px;
  border-radius: 10px;
  color: white;
  background: var(--navy);
  transform: translate(-50%, 120px);
  transition: transform .23s ease;
  font-size: 14px;
}

.toast.show {
  transform: translate(-50%, 0);
}

@media (max-width: 1100px) {
  .site-header,
  .footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section,
  .benefits,
  .tool-preview,
  .security {
    max-width: calc(100% - 40px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-panel {
    max-width: 590px;
  }

  .benefits,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits article:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card:last-child {
    grid-column: span 2;
  }

  .tool-preview,
  .security {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-wrap: wrap;
  }

  .footer > small {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .notice-bar {
    height: auto;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: center;
  }

  .site-header {
    height: 70px;
    gap: 0;
  }

  .brand strong {
    font-size: 19px;
  }

  .ghost-button {
    display: none;
  }

  .cart-button span {
    display: none;
  }

  .hero,
  .section {
    max-width: calc(100% - 32px);
  }

  .hero {
    padding: 42px 0;
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: 37px;
  }

  .hero-text {
    font-size: 15px;
  }

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

  .trust-row {
    flex-direction: column;
    gap: 13px;
  }

  .hero-panel {
    padding: 22px 18px;
  }

  .benefits,
  .service-grid,
  .process-grid {
    display: block;
    max-width: calc(100% - 32px);
  }

  .benefits article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card,
  .process-grid article {
    margin-bottom: 15px;
  }

  .products-callout {
    flex-direction: column;
    align-items: stretch;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 16px;
  }

  .tool-preview,
  .security {
    max-width: calc(100% - 32px);
    padding: 32px 22px;
    gap: 30px;
  }

  .tool-body {
    grid-template-columns: 1fr;
  }

  .security-copy h2,
  .tool-copy h2 {
    font-size: 27px;
  }

  .footer {
    display: block;
  }

  .footer p {
    margin-top: 25px;
  }
}

/* OnlyKYC brand system */
.brand {
  min-width: 192px;
  height: 62px;
  gap: 0;
  flex: 0 0 auto;
}

.brand::before {
  content: "";
  width: 192px;
  height: 56px;
  display: block;
  background: url("assets/onlykyc-logo-horizontal.png") left center / contain no-repeat;
}

.brand > .brand-mark,
.brand > span {
  display: none !important;
}

.footer-brand {
  min-width: 166px;
  height: 52px;
}

.footer-brand::before {
  width: 166px;
  height: 48px;
}

[dir="rtl"] .header-actions {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .language-switcher {
  direction: rtl;
}

@media (max-width: 720px) {
  .brand {
    min-width: 134px;
    height: 48px;
  }

  .brand::before {
    width: 134px;
    height: 44px;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher {
    padding: 5px;
  }

  .language-switcher select {
    max-width: 116px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    height: auto;
    min-height: 66px;
    padding: 9px 14px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    min-width: 126px;
    height: 42px;
  }

  .brand::before {
    width: 126px;
    height: 40px;
  }

  .header-actions {
    gap: 7px;
    margin-left: auto;
  }

  .cart-button {
    min-height: 40px;
    padding: 0 11px;
    border-radius: 11px;
  }

  .language-switcher {
    min-height: 38px;
    padding: 4px 5px;
  }

  .language-switcher select {
    max-width: 92px;
    font-size: 11px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 7px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 36px;
    flex: 0 0 auto;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 18px;
  }

  .nav-links a.current::after {
    display: none;
  }

  .footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cart-panel {
    width: 100%;
  }
}
