:root {
  --yellow: #ffd400;
  --yellow-hover: #f0c400;
  --black: #111111;
  --dark: #0b0d12;
  --dark-2: #141820;
  --muted: #5c6370;
  --line: #eceef2;
  --white: #ffffff;
  --gray: #f4f5f7;
  --pill: #3d4a5c;
  --radius: 10px;
  --shadow: 0 18px 50px rgba(12, 16, 28, 0.18);
  --max: 1180px;
  --asset-base: "../assets";
  --img-phone: url("../assets/images/phone.png?v=20260908j");
  --img-platforms: url("../assets/images/platforms.png?v=20260908j");
  --img-download-hero: url("../assets/images/download-hero.png?v=20260908j");
  --img-about-hero: url("../assets/images/about-hero.png?v=20260908n");
  --img-security: url("../assets/images/security.png?v=20260908j");
  --img-news-1: url("../assets/images/news-1.png?v=20260908j");
  --img-news-2: url("../assets/images/news-2.png?v=20260908j");
  --img-news-3: url("../assets/images/news-3.png?v=20260908j");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.2s ease;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

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

.btn-ghost {
  background: transparent;
  color: var(--black);
  min-height: auto;
  padding: 0;
  font-weight: 600;
}

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

.header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.06em;
}

.logo img {
  height: 28px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-link {
  font-weight: 600;
}

.menu-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--black);
}

.desktop-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  color: #333;
}

.desktop-links a[aria-current="page"] {
  color: var(--black);
  font-weight: 700;
}

.btn-line {
  background: #fff;
  color: var(--black);
  border: 1px solid #111;
}

.btn-line:hover {
  background: #111;
  color: #fff;
}

.drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: #fff;
  padding: 24px;
  z-index: 40;
}

.drawer.open {
  display: block;
}

.drawer a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 15% 20%, #e9edf3 0%, transparent 55%),
    radial-gradient(900px 420px at 90% 70%, #dfe6ee 0%, transparent 50%),
    linear-gradient(180deg, #f7f8fa 0%, #fff 70%);
}

.blob {
  position: absolute;
  border-radius: 42% 58% 47% 53%;
  filter: blur(2px);
  opacity: 0.55;
}

.blob-a {
  width: 520px;
  height: 360px;
  left: -80px;
  top: 40px;
  background: linear-gradient(135deg, #cfd6de, #f4f1f3);
}

.blob-b {
  width: 480px;
  height: 340px;
  right: -90px;
  bottom: 40px;
  background: linear-gradient(160deg, #d8dde6, #fff);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.hero p {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 0 56px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.stat img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.section-dark {
  background: #07090f;
  color: #fff;
  padding: 88px 0 96px;
}

.section-dark .container {
  width: min(calc(100% - 48px), 1280px);
}

.section-dark h2 {
  text-align: center;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.04em;
  margin-bottom: 56px;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 460px) 1fr;
  align-items: stretch;
  gap: 12px 28px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 72px;
  padding: 36px 0;
}

.feature-col-left .feature {
  text-align: right;
  margin-left: auto;
}

.feature-col-right .feature {
  text-align: left;
  margin-right: auto;
}

.feature {
  max-width: 280px;
}

.pill {
  display: inline-block;
  background: #3b4658;
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature p {
  color: #b8bec8;
  font-size: 16px;
  line-height: 1.6;
}

.phone-glow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-glow::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 140, 180, 0.28), transparent 70%);
  filter: blur(18px);
}

.phone-img {
  position: relative;
  z-index: 1;
  width: min(440px, 92vw);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

.markets {
  padding: 96px 0;
}

.markets h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  max-width: 760px;
  margin-bottom: 36px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

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

th {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

td strong {
  display: block;
}

td small {
  color: var(--muted);
}

.tag-yes {
  color: #0a7a3e;
  font-weight: 600;
}

.tag-no {
  color: var(--muted);
}

.row-link {
  color: var(--muted);
  white-space: nowrap;
}

.platforms,
.security,
.news,
.reviews,
.faq,
.cta {
  padding: 80px 0;
}

.platforms {
  background: #fff;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.platforms-visual {
  width: 100%;
  height: auto;
  display: block;
}

.platforms-copy h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.2;
  margin: 18px 0 16px;
}

.platforms-copy p {
  color: var(--black);
  font-size: 18px;
  max-width: 420px;
}

.platforms-icon {
  width: 44px;
  height: 44px;
}

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

.two-col h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
  font-size: 18px;
}

.device-stack {
  display: grid;
  gap: 12px;
}

.device-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.device-card img {
  width: 24px;
  height: 24px;
  grid-row: 1 / span 2;
}

.device-card b {
  display: block;
  margin-bottom: 4px;
}

.security {
  background: #fff;
  color: var(--black);
}

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

.security-icon {
  width: 44px;
  height: 44px;
}

.security-copy h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.2;
  margin: 18px 0 16px;
}

.security-copy p {
  font-size: 18px;
  color: var(--black);
  max-width: 460px;
}

.security-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

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

.card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 24px;
}

.card img {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin: 10px 0 8px;
}

.news h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 8px;
}

.news-head {
  margin-bottom: 28px;
}

.news .grid-3 {
  align-items: stretch;
}

.article {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.thumb-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #d9dde3;
}

.thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.article-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
}

.article-body h3 {
  font-size: 18px;
  line-height: 1.45;
  min-height: 2.9em;
}

.kicker {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.reviews {
  background: #fff;
}

.reviews-head {
  margin-bottom: 28px;
}

.reviews-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 8px;
}

.reviews-head .muted {
  max-width: 640px;
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.stars img {
  width: 16px;
  height: 16px;
}

.review > p {
  color: #333;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong {
  display: block;
}

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

.faq {
  background: #fff;
}

.faq-head {
  margin-bottom: 28px;
  text-align: center;
}

.faq-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 8px;
}

.faq-head .muted {
  max-width: 640px;
  margin: 0 auto;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

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

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  padding: 22px 44px 22px 0;
  position: relative;
  text-align: left;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: #111;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  color: var(--muted);
  padding: 0 44px 20px 0;
  line-height: 1.7;
  text-align: left;
}

.cta {
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--gray));
}

.cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 14px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 28px;
}

.footer {
  background: #0a0c16;
  color: #d5d8e0;
  padding: 64px 0 28px;
  font-size: 14px;
}

.footer .logo img {
  height: 28px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 360px;
  line-height: 1.7;
  color: #9aa0ad;
}

.lang-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.lang-label {
  color: #9aa0ad;
  font-size: 14px;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  appearance: none;
  background: #fff;
  border: 1px solid #111;
  border-radius: 999px;
  min-width: 148px;
  min-height: 38px;
  padding: 6px 32px 6px 16px;
  position: relative;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}

.lang-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-35%);
  border: 5px solid transparent;
  border-top-color: #111;
}

.lang-panel {
  display: none;
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  min-width: 100%;
  background: #fff;
  border: 1px solid #111;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  z-index: 30;
}

.lang-dropdown.open .lang-panel {
  display: block;
}

.lang-dropdown.open .lang-btn::after {
  transform: translateY(-65%) rotate(180deg);
}

.lang-panel a {
  display: block !important;
  color: #111 !important;
  padding: 10px 14px !important;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.lang-panel a:hover {
  background: #f4f5f7;
  color: #111 !important;
}

.footer-grid h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  color: #b8bec8;
  padding: 6px 0;
}

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

.footer-bottom {
  padding-top: 28px;
}

.links {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.links a {
  color: #93c5fd;
}

.disclaimer {
  color: #8b919d;
  font-size: 12px;
  line-height: 1.7;
}

.copy {
  margin: 0;
  color: #8b919d;
  font-size: 12px;
  line-height: 1.7;
}

.copy-risk {
  margin-top: 10px;
  color: #8b919d;
  font-size: 12px;
  line-height: 1.7;
}

.dl-section,
.dl-card,
.faq,
.cta {
  scroll-margin-top: 88px;
}

.dl-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  background: #f7f8fa;
}

.dl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.dl-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.dl-hero .lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 540px;
}

.dl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.dl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dl-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.dl-chips a:hover {
  border-color: #111;
}

.dl-hero-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.dl-section {
  padding: 72px 0;
  background: #fff;
}

.dl-section.alt {
  background: var(--gray);
}

.dl-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.dl-section .muted {
  margin-bottom: 32px;
}

.dl-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.dl-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
}

.dl-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.dl-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.dl-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--black);
  font-size: 14px;
}

.dl-card li {
  margin: 6px 0;
}

.dl-os {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.dl-os .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.dl-os .btn .dl-rec {
  display: none;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
}

.dl-os .is-recommended {
  box-shadow: 0 0 0 2px var(--yellow);
}

.dl-os .is-recommended .dl-rec {
  display: inline;
}

.dl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dl-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.dl-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 800;
  margin-bottom: 12px;
}

.dl-step h3 {
  margin-bottom: 8px;
}

.dl-step p {
  color: var(--muted);
  font-size: 15px;
}

.dl-req {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dl-req article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.dl-req h3 {
  margin-bottom: 8px;
}

.dl-req p {
  color: var(--muted);
  font-size: 15px;
}

.dl-compare table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.dl-compare th,
.dl-compare td {
  padding: 14px 12px;
  font-size: 14px;
  word-break: break-word;
}

.help-hero .dl-hero-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.help-search {
  display: block;
  width: min(100%, 560px);
  min-height: 52px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.help-search:focus {
  outline: 2px solid var(--yellow);
  border-color: #111;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a.dl-card {
  color: inherit;
}

.help-block {
  scroll-margin-top: 88px;
  padding-top: 8px;
}

.help-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.help-block > .muted {
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-col {
    gap: 40px;
    padding: 0;
  }

  .feature-col-left .feature,
  .feature-col-right .feature {
    text-align: center;
    margin: 0 auto;
  }

  .phone-glow {
    order: -1;
  }
}

@media (max-width: 900px) {
  .desktop-links {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .stats {
    grid-template-columns: 1fr;
    padding-left: 8px;
  }

  .two-col,
  .platforms-grid,
  .security-grid,
  .grid-3,
  .dl-hero-grid,
  .dl-cards,
  .dl-steps,
  .dl-req,
  .contact-split,
  .office-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .policy-wrap {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

  .nav-actions .btn-yellow {
    display: none;
  }

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.legal {
  padding: 80px 0 96px;
  max-width: 760px;
}

.legal h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

.legal p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.policy-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 8px 0 24px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 88px;
}

.policy-toc p {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.policy-toc a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 7px 0;
}

.policy-toc a:hover,
.policy-toc a:focus {
  color: var(--black);
}

.policy-doc h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 36px 0 12px;
  scroll-margin-top: 88px;
}

.policy-doc h2:first-child {
  margin-top: 0;
}

.policy-doc h3 {
  font-size: 18px;
  margin: 20px 0 8px;
}

.policy-doc p,
.policy-doc li {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.policy-doc ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #111;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form .btn {
  justify-self: start;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  align-items: center;
  color: #fff;
  padding: 88px 0 72px;
  background: #07090f;
}

.contact-hero .lead {
  color: #d5d8e0;
  font-size: clamp(16px, 2vw, 20px);
  max-width: 640px;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hours-table table {
  min-width: 0;
}

.tag-online {
  color: #0a7a3e;
  font-weight: 600;
}

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

.office-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

.office-card h3 {
  margin-bottom: 8px;
}

.office-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-prose {
  max-width: 760px;
}

.about-prose p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-quote {
  max-width: 820px;
}

.about-quote p {
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.45;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-quote footer {
  color: var(--muted);
  font-size: 15px;
}

.about-quote strong {
  display: block;
  color: var(--black);
  margin-bottom: 4px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-stat-label {
  color: var(--muted);
  font-size: 15px;
}

.logo img,
.stat img,
.platforms-icon,
.security-icon,
.phone-img,
.platforms-visual,
.security-visual,
.thumb,
.reviewer img,
.stars img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.phone-img,
.platforms-visual,
.security-visual,
.article,
.review,
.stat,
.dl-card,
.dl-step {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) {
  .logo:hover img {
    transform: scale(1.06);
  }

  .stat:hover img {
    transform: translateY(-3px) scale(1.12);
  }

  .platforms-icon:hover,
  .security-icon:hover {
    transform: rotate(-8deg) scale(1.12);
  }

  .phone-img:hover {
    transform: translateY(-10px) scale(1.04);
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
  }

  .platforms-visual:hover,
  .security-visual:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
  }

  .article:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.1);
  }

  .article:hover .thumb {
    transform: scale(1.08);
  }

  .review:hover,
  .dl-card:hover,
  .dl-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  }

  .reviewer img:hover {
    transform: scale(1.1);
  }

  .stars:hover img {
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo img,
  .stat img,
  .platforms-icon,
  .security-icon,
  .phone-img,
  .platforms-visual,
  .security-visual,
  .thumb,
  .reviewer img,
  .stars img,
  .article,
  .review,
  .stat,
  .dl-card,
  .dl-step {
    transition: none;
  }
}
