:root {
  --ink: #081321;
  --ink-soft: #344255;
  --night: #07111d;
  --night-raised: #0e1c2b;
  --blue: #16b9e8;
  --blue-bright: #55ddff;
  --green: #21c866;
  --green-bright: #54e696;
  --line: #dbe3eb;
  --surface: #f5f8fb;
  --white: #ffffff;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, Pretendard, "Noto Sans KR", "Segoe UI", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

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

button,
select {
  color: inherit;
  font: inherit;
}

svg {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.windows-mark {
  fill: currentColor;
  stroke: none;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(8, 19, 33, 0.08);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

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

.brand-logo {
  align-items: center;
  display: inline-flex;
  height: 45px;
  justify-content: center;
  width: 45px;
}

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

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.brand small {
  color: #7d8998;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.main-nav > a {
  color: #4d596a;
  font-size: 12px;
  font-weight: 680;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.main-nav > a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.main-nav .nav-download {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(33, 200, 102, 0.2);
  color: #062817;
  isolation: isolate;
  overflow: hidden;
  padding: 11px 16px;
  position: relative;
  transition:
    box-shadow 220ms ease,
    filter 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-nav .nav-download:hover {
  box-shadow:
    0 13px 30px rgba(33, 200, 102, 0.34),
    0 0 0 4px rgba(54, 225, 128, 0.11);
  color: #031f10;
  filter: saturate(1.12);
  transform: translateY(-3px) scale(1.035);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 9px;
}

.language-picker {
  align-items: center;
  border: 1px solid #d7dfe7;
  border-radius: 9px;
  display: inline-flex;
  height: 40px;
  padding: 0 9px;
}

.language-picker select {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  outline: 0;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 9px 7px;
  width: 40px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px auto;
  width: 23px;
}

.hero {
  background:
    linear-gradient(rgba(8, 19, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 19, 33, 0.035) 1px, transparent 1px),
    #f9fbfd;
  background-size: 42px 42px;
  min-height: 820px;
  overflow: hidden;
  padding: 170px 24px 96px;
  position: relative;
}

.hero::after {
  background: linear-gradient(to bottom, transparent, #f9fbfd);
  bottom: 0;
  content: "";
  height: 150px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-glow {
  background: rgba(22, 185, 232, 0.25);
  border-radius: 50%;
  filter: blur(110px);
  height: 480px;
  position: absolute;
  right: -90px;
  top: 130px;
  width: 480px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 74px;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  margin: 0 auto;
  max-width: 1220px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: #526176;
  display: flex;
  font-size: 10px;
  font-weight: 820;
  gap: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 23px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(22, 185, 232, 0.12);
  height: 7px;
  width: 7px;
}

.hero h1,
.section h2,
.workflow-section h2,
.download-section h2 {
  font-weight: 770;
  letter-spacing: -0.052em;
  line-height: 0.99;
  margin: 0;
}

.hero h1 {
  font-size: clamp(54px, 5vw, 76px);
}

.hero h1 span,
.section h2 span,
.workflow-section h2 span {
  display: block;
}

.hero-description {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
  margin: 29px 0 0;
  max-width: 570px;
}

.hero-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 37px;
}

.button {
  align-items: center;
  border-radius: 11px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 780;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  overflow: hidden;
  padding: 0 19px;
  position: relative;
  transition:
    box-shadow 240ms ease,
    filter 240ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 240ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.primary-button {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 14px 34px rgba(33, 200, 102, 0.26);
  color: #052816;
  isolation: isolate;
  min-width: 270px;
}

.primary-button:hover {
  box-shadow:
    0 20px 45px rgba(33, 200, 102, 0.38),
    0 0 0 5px rgba(54, 225, 128, 0.11);
  filter: saturate(1.12);
  transform: translateY(-4px) scale(1.025);
}

.primary-button svg:last-child,
.download-card > a svg:last-child {
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.primary-button:hover svg:last-child {
  transform: translateX(6px);
}

.nav-download::after,
.primary-button::after,
.download-card > a::after {
  background: linear-gradient(
    105deg,
    transparent 18%,
    rgba(255, 255, 255, 0.58) 48%,
    transparent 78%
  );
  content: "";
  inset: -35% auto -35% -48%;
  pointer-events: none;
  position: absolute;
  transform: skewX(-18deg);
  transition: left 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 38%;
}

.nav-download:hover::after,
.primary-button:hover::after,
.download-card > a:hover::after {
  left: 118%;
}

.secondary-button {
  background: #fff;
  border: 1px solid #d9e2ea;
  color: var(--ink);
}

.secondary-button:hover {
  box-shadow: 0 12px 28px rgba(8, 19, 33, 0.09);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.trust-list li {
  align-items: center;
  color: #6e7b8d;
  display: flex;
  font-size: 10px;
  font-weight: 650;
  gap: 7px;
}

.trust-list li > span {
  align-items: center;
  background: #e4f9ff;
  border-radius: 50%;
  color: #0c98c0;
  display: inline-flex;
  height: 19px;
  justify-content: center;
  width: 19px;
}

.product-visual {
  align-items: center;
  display: flex;
  height: 575px;
  justify-content: center;
  isolation: isolate;
  perspective: 1200px;
  position: relative;
}

.product-visual::before {
  background:
    radial-gradient(circle at 56% 40%, rgba(255, 255, 255, 0.98), rgba(227, 247, 252, 0.72) 42%, transparent 72%);
  border-radius: 48% 52% 46% 54%;
  content: "";
  filter: blur(2px);
  height: 490px;
  position: absolute;
  right: -8px;
  top: 34px;
  transform: rotate(-7deg);
  width: 490px;
  z-index: -2;
}

.product-visual::after {
  background: radial-gradient(ellipse, rgba(8, 19, 33, 0.2), transparent 68%);
  bottom: 21px;
  content: "";
  filter: blur(9px);
  height: 45px;
  position: absolute;
  right: 33px;
  transform: rotate(-2deg);
  width: 410px;
  z-index: -1;
}

.product-ring {
  border: 1px solid rgba(22, 185, 232, 0.2);
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(22, 185, 232, 0.08));
  position: absolute;
}

.ring-one {
  height: 470px;
  right: -26px;
  top: 30px;
  width: 470px;
}

.ring-two {
  height: 350px;
  right: 34px;
  top: 90px;
  width: 350px;
}

.product-image-stage {
  animation: productFloat 5.8s ease-in-out infinite;
  aspect-ratio: 1;
  max-height: 545px;
  position: relative;
  transform: rotateY(-3deg) rotateX(1deg);
  transform-style: preserve-3d;
  transition:
    filter 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: min(94%, 545px);
  z-index: 2;
}

.product-image-stage::before {
  background:
    linear-gradient(135deg, rgba(22, 185, 232, 0.18), transparent 45%),
    linear-gradient(315deg, rgba(43, 220, 120, 0.14), transparent 48%);
  border-radius: 44% 56% 47% 53%;
  content: "";
  filter: blur(28px);
  inset: 8% -6% 7%;
  opacity: 0.65;
  pointer-events: none;
  position: absolute;
  transform: translateZ(-40px) scale(0.94);
  transition:
    filter 420ms ease,
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -1;
}

.product-image-stage:hover {
  transform: translateY(-8px) rotateY(0deg) rotateX(0deg) scale(1.025);
}

.product-image-stage:hover::before {
  filter: blur(34px);
  opacity: 0.92;
  transform: translateZ(-40px) scale(1.04);
}

.product-image-glow {
  background:
    radial-gradient(circle at 52% 31%, rgba(73, 226, 255, 0.26), transparent 42%),
    radial-gradient(circle at 48% 76%, rgba(46, 224, 120, 0.22), transparent 45%);
  filter: blur(34px);
  inset: 9% -12% 4%;
  opacity: 0.8;
  position: absolute;
  transform: translateZ(-50px);
  z-index: -1;
}

.product-image {
  display: block;
  filter: saturate(1.01) contrast(1.015);
  height: 100%;
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 54% 52%, #000 58%, rgba(0, 0, 0, 0.96) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 76% at 54% 52%, #000 58%, rgba(0, 0, 0, 0.96) 72%, transparent 100%);
  mix-blend-mode: multiply;
  object-fit: contain;
  position: relative;
  transition:
    filter 420ms ease,
    transform 420ms ease;
  width: 100%;
}

.product-image-stage:hover .product-image {
  filter: saturate(1.05) contrast(1.025);
  transform: scale(1.012);
}

@keyframes productFloat {
  0%,
  100% {
    translate: 0 4px;
  }

  50% {
    translate: 0 -10px;
  }
}

.stats-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 4;
}

.stats-band article {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: center;
  min-height: 116px;
}

.stats-band article:last-child {
  border-right: 0;
}

.stat-icon {
  align-items: center;
  background: #e9f9fd;
  border-radius: 12px;
  color: #0797be;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.stats-band article > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats-band strong {
  font-size: 21px;
  letter-spacing: -0.025em;
}

.stats-band small {
  color: #8290a1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: 124px 24px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 82px;
  grid-template-columns: 1.18fr 0.82fr;
  margin-bottom: 60px;
}

.section h2,
.workflow-section h2,
.download-section h2 {
  font-size: clamp(42px, 4.2vw, 62px);
}

.section-heading > p {
  color: #687589;
  font-size: 14px;
  line-height: 1.82;
  margin: 0 0 3px;
}

.feature-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 330px;
  padding: 27px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.feature-card:hover {
  background: var(--surface);
  transform: translateY(-4px);
}

.feature-card-top {
  align-items: center;
  color: #9aa6b4;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.1em;
}

.feature-icon {
  align-items: center;
  background: #e9f9fd;
  border-radius: 11px;
  color: #0797be;
  display: flex;
  height: 47px;
  justify-content: center;
  width: 47px;
}

.feature-card h3 {
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin: 98px 0 13px;
}

.feature-card p {
  color: #6e7b8d;
  font-size: 12px;
  line-height: 1.78;
  margin: 0;
}

.workflow-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 185, 232, 0.12), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(43, 220, 120, 0.08), transparent 27%),
    var(--night);
  color: #fff;
  overflow: hidden;
  padding: 112px max(24px, calc((100vw - 1172px) / 2)) 120px;
  position: relative;
}

.workflow-section::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 80%, transparent);
  pointer-events: none;
  position: absolute;
}

.workflow-heading {
  display: grid;
  gap: 44px;
  grid-template-columns: 0.95fr 1.05fr;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.workflow-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -17px;
}

.eyebrow.light {
  color: #95a8bd;
}

.workflow-heading > p:last-child {
  color: #9eb0c2;
  font-size: 14px;
  line-height: 1.8;
  margin: 5px 0 0;
  max-width: 500px;
}

.workflow-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 1;
}

.workflow-cards article {
  background: linear-gradient(155deg, rgba(18, 39, 57, 0.98), rgba(8, 20, 32, 0.98));
  border: 1px solid rgba(118, 216, 239, 0.15);
  border-radius: 23px;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.035) inset;
  overflow: hidden;
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.workflow-cards article:hover {
  border-color: rgba(90, 220, 250, 0.28);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(56, 211, 244, 0.08) inset;
  transform: translateY(-7px);
}

.workflow-image {
  align-items: center;
  aspect-ratio: 1586 / 992;
  background: var(--night);
  display: flex;
  height: auto;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.workflow-cards article:nth-child(2) .workflow-image {
  background: var(--night);
}

.workflow-image::before {
  background: linear-gradient(to bottom, transparent 72%, rgba(7, 17, 29, 0.78));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.workflow-image img {
  display: block;
  filter: saturate(1.01) contrast(1.01);
  height: 100%;
  object-fit: cover;
  position: relative;
  transform: scale(1.002);
  transition:
    filter 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
  z-index: 1;
}

.workflow-cards article:hover .workflow-image img {
  filter: saturate(1.07) contrast(1.025);
  transform: scale(1.035);
}

.workflow-copy {
  display: grid;
  gap: 21px;
  grid-template-columns: 30px 1fr;
  min-height: 155px;
  padding: 28px;
}

.workflow-copy > span {
  color: #60768d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-top: 5px;
}

.workflow-copy h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.workflow-copy p {
  color: #8fa3b7;
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
}

.download-section {
  background:
    linear-gradient(rgba(8, 19, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 19, 33, 0.025) 1px, transparent 1px),
    #f7fafc;
  background-size: 42px 42px;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1172px) / 2));
  position: relative;
}

.download-glow {
  background: rgba(33, 200, 102, 0.2);
  border-radius: 50%;
  filter: blur(110px);
  height: 300px;
  position: absolute;
  right: -80px;
  top: 60px;
  width: 300px;
}

.download-heading {
  margin-bottom: 48px;
  max-width: 680px;
  position: relative;
}

.download-heading > p:last-child {
  color: #6a7789;
  font-size: 14px;
  line-height: 1.75;
  margin: 23px 0 0;
}

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

.download-card {
  align-items: center;
  background: #fff;
  border: 1px solid #dce4ec;
  border-radius: 17px;
  box-shadow: 0 14px 38px rgba(8, 19, 33, 0.07);
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr auto;
  min-height: 178px;
  padding: 26px;
}

.download-card-icon {
  align-items: center;
  background: var(--night);
  border-radius: 13px;
  color: var(--blue-bright);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.download-card small {
  color: #9aa5b2;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.13em;
}

.download-card h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
  margin: 4px 0 7px;
}

.download-card p {
  color: #708093;
  font-size: 10px;
  margin: 0 0 4px;
}

.download-card div > span {
  color: #9aa5b2;
  font-size: 9px;
}

.download-card > a {
  align-items: center;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 10px;
  color: #052817;
  display: inline-flex;
  font-size: 11px;
  font-weight: 780;
  gap: 8px;
  isolation: isolate;
  min-height: 48px;
  overflow: hidden;
  padding: 0 15px;
  position: relative;
  transition:
    box-shadow 240ms ease,
    filter 240ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.download-card > a:hover {
  box-shadow:
    0 15px 32px rgba(33, 200, 102, 0.36),
    0 0 0 4px rgba(54, 225, 128, 0.1);
  filter: saturate(1.12);
  transform: translateY(-4px) scale(1.035);
}

.download-card > a:hover svg:last-child {
  transform: translateY(3px);
}

.download-help {
  color: #778496;
  font-size: 11px;
  margin: 21px 0 0;
  position: relative;
}

.download-help a {
  color: #0c91b6;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(24, 182, 229, 0.14), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(43, 220, 120, 0.13), transparent 32%),
    var(--night);
  padding: 120px max(24px, calc((100vw - 1172px) / 2));
}

.contact-shell {
  align-items: center;
  display: grid;
  gap: clamp(46px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
}

.contact-intro {
  color: #fff;
}

.contact-intro .eyebrow {
  color: #89a2b8;
}

.contact-intro h2 {
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 26px 0 0;
}

.contact-intro > p:not(.eyebrow) {
  color: #98aabc;
  font-size: 14px;
  line-height: 1.8;
  margin: 27px 0 0;
  max-width: 470px;
}

.contact-direct {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 16px;
  margin-top: 42px;
  padding-top: 25px;
}

.contact-direct-icon {
  align-items: center;
  background: rgba(43, 220, 120, 0.12);
  border: 1px solid rgba(43, 220, 120, 0.25);
  border-radius: 14px;
  color: var(--green-bright);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.contact-direct strong,
.contact-direct small {
  display: block;
}

.contact-direct strong {
  font-size: 14px;
}

.contact-direct small {
  color: #7f93a6;
  font-size: 10px;
  line-height: 1.6;
  margin-top: 5px;
  max-width: 350px;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 20px;
  padding: clamp(25px, 4vw, 40px);
  position: relative;
}

.contact-form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label:not(.privacy-check):not(.contact-honeypot) {
  display: grid;
  gap: 9px;
}

.contact-form label > span:first-child {
  color: #334154;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #f7f9fb;
  border: 1px solid #dbe3e9;
  border-radius: 11px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  outline: none;
  padding: 0 14px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.contact-form input,
.contact-form select {
  height: 50px;
}

.contact-form textarea {
  line-height: 1.65;
  min-height: 148px;
  padding-bottom: 13px;
  padding-top: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #28ca70;
  box-shadow: 0 0 0 4px rgba(43, 220, 120, 0.12);
}

.captcha-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(33, 200, 102, 0.09), rgba(22, 185, 232, 0.06)),
    #f8fbfa;
  border: 1px solid #cfe8d9;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) 86px auto;
  padding: 13px;
}

.captcha-icon {
  align-items: center;
  background: #e2f8eb;
  border-radius: 11px;
  color: #099650;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.captcha-copy {
  min-width: 0;
}

.captcha-copy > span,
.captcha-copy > strong {
  display: block;
}

.captcha-copy > span {
  color: #5e6c7c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.captcha-copy > strong {
  color: #132437;
  font-size: 13px;
  line-height: 1.35;
}

.captcha-panel input {
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  height: 44px;
  padding: 0 10px;
  text-align: center;
}

.contact-form .captcha-refresh {
  background: transparent;
  border: 1px solid #b9d9c5;
  border-radius: 9px;
  box-shadow: none;
  color: #187b49;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  min-height: 42px;
  min-width: 0;
  padding: 0 12px;
  white-space: nowrap;
}

.contact-form .captcha-refresh:hover:not(:disabled) {
  background: #e9f8ef;
  box-shadow: none;
  filter: none;
  transform: translateY(-1px);
}

.contact-form .captcha-refresh:disabled {
  cursor: wait;
  opacity: 0.55;
}

.privacy-check {
  align-items: flex-start;
  color: #718092;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  gap: 9px;
  line-height: 1.55;
}

.privacy-check input {
  accent-color: var(--green);
  flex: 0 0 auto;
  height: 16px;
  margin: 0;
  width: 16px;
}

.contact-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.contact-form-bottom {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.contact-form .contact-submit {
  align-items: center;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border: 0;
  border-radius: 11px;
  box-shadow: 0 14px 30px rgba(33, 200, 102, 0.24);
  color: #052816;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  gap: 18px;
  justify-content: center;
  min-height: 52px;
  min-width: 174px;
  padding: 0 18px;
  transition:
    box-shadow 220ms ease,
    filter 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-form .contact-submit:hover:not(:disabled) {
  box-shadow:
    0 18px 36px rgba(33, 200, 102, 0.34),
    0 0 0 4px rgba(43, 220, 120, 0.1);
  filter: saturate(1.1);
  transform: translateY(-3px);
}

.contact-form .contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form .contact-submit svg {
  transition: transform 220ms ease;
}

.contact-form .contact-submit:hover:not(:disabled) svg {
  transform: translateX(5px);
}

.form-status {
  color: #748294;
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
  min-height: 16px;
}

.form-status.success {
  color: #087443;
}

.form-status.error {
  color: #b93636;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1220px;
  min-height: 145px;
  padding: 28px 24px;
}

.footer-brand .brand-logo {
  height: 40px;
  width: 40px;
}

footer p {
  color: #6a7789;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

footer > a:last-child {
  color: #8591a0;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 22px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 32px;
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .product-visual {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .feature-card {
    min-height: 310px;
    padding: 22px;
  }

  .feature-card h3 {
    margin-top: 82px;
  }

  .download-card {
    grid-template-columns: 52px 1fr;
  }

  .download-card > a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 840px) {
  .main-nav {
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(8, 19, 33, 0.09);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 22px 24px;
    position: absolute;
    right: 0;
    top: 75px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a {
    border-bottom: 1px solid #edf1f4;
    font-size: 14px;
    padding: 15px 0;
  }

  .main-nav .nav-download {
    margin-top: 12px;
    text-align: center;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 134px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .product-visual {
    margin: 18px auto 0;
    max-width: 650px;
    transform: none;
    width: 100%;
  }

  .stats-band {
    margin: 0 22px;
  }

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

  .section-heading,
  .workflow-heading {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .workflow-heading .eyebrow {
    grid-column: auto;
  }

  .workflow-cards,
  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }

  .brand-logo {
    height: 38px;
    width: 38px;
  }

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

  .brand small {
    display: none;
  }

  .language-picker {
    height: 36px;
  }

  .language-picker select {
    max-width: 64px;
  }

  .main-nav {
    top: 67px;
  }

  .hero {
    min-height: auto;
    padding: 112px 17px 55px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.72;
    margin-top: 22px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 29px;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 10px 14px;
  }

  .product-visual {
    height: 430px;
  }

  .ring-one {
    height: 330px;
    right: -45px;
    width: 330px;
  }

  .ring-two {
    height: 245px;
    right: -2px;
    top: 72px;
    width: 245px;
  }

  .product-image-stage {
    max-height: 410px;
    transform: none;
    width: min(88%, 342px);
  }

  .stats-band {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }

  .stats-band article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 94px;
  }

  .stats-band article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 90px 17px;
  }

  .section h2,
  .workflow-section h2,
  .download-section h2 {
    font-size: 42px;
  }

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

  .feature-card {
    min-height: 255px;
  }

  .feature-card h3 {
    margin-top: 45px;
  }

  .workflow-section,
  .download-section,
  .contact-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .workflow-image {
    height: auto;
  }

  .workflow-copy {
    padding: 22px;
  }

  .download-card {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .download-card-icon {
    height: 48px;
    width: 48px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 680px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
    padding-top: 36px;
    text-align: center;
  }

  footer .brand {
    justify-content: center;
  }

  footer > a:last-child {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .contact-section {
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .contact-form-row,
  .contact-form-bottom {
    grid-template-columns: 1fr;
  }

  .contact-form .contact-submit {
    width: 100%;
  }

  .captcha-panel {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .captcha-panel input,
  .contact-form .captcha-refresh {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Simple three-card layout */
.simple-site {
  background:
    radial-gradient(circle at 86% 8%, rgba(58, 222, 137, 0.1), transparent 28rem),
    #f3f6f4;
  min-height: 100vh;
}

.simple-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 19, 33, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
}

.simple-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-self: start;
}

.simple-brand-logo {
  display: inline-flex;
  height: 42px;
  width: 42px;
}

.simple-brand-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.simple-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.simple-brand strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.simple-brand small {
  color: #819084;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.simple-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.simple-nav a {
  border-radius: 9px;
  color: #536158;
  font-size: 12px;
  font-weight: 750;
  padding: 9px 12px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.simple-nav a:hover {
  background: #edf3ef;
  color: #102017;
}

.simple-language {
  border: 1px solid #d9e1dc;
  border-radius: 9px;
  justify-self: end;
  padding: 0 8px;
}

.simple-language select {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  height: 38px;
  outline: 0;
}

.simple-shell {
  margin: 0 auto;
  max-width: 1168px;
  padding: 84px 24px 100px;
}

.simple-intro {
  margin-bottom: 42px;
  max-width: 720px;
}

.simple-intro > p:first-child {
  color: #159857;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.simple-intro h1 {
  font-size: clamp(46px, 6vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.simple-intro h1 span {
  display: block;
}

.simple-intro > p:last-child {
  color: #637067;
  font-size: 15px;
  line-height: 1.75;
  margin: 22px 0 0;
}

.simple-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simple-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 37, 24, 0.09);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(26, 55, 36, 0.07);
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  scroll-margin-top: 92px;
}

.simple-card-tag {
  align-items: center;
  color: #38704d;
  display: flex;
  font-size: 10px;
  font-weight: 850;
  gap: 9px;
  letter-spacing: 0.09em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.simple-card-tag > span {
  align-items: center;
  background: #e7f8ed;
  border-radius: 9px;
  color: #13a15a;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.simple-card h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

.simple-card > p,
.simple-download-copy > p:not(.simple-card-tag) {
  color: #69756d;
  font-size: 13px;
  line-height: 1.7;
}

.simple-download-card {
  align-items: center;
  background:
    radial-gradient(circle at 78% 46%, rgba(42, 216, 121, 0.13), transparent 22rem),
    rgba(255, 255, 255, 0.97);
  display: grid;
  gap: 22px 36px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  overflow: hidden;
  padding-bottom: 28px;
}

.simple-download-copy {
  min-width: 0;
}

.simple-download-copy > p:not(.simple-card-tag) {
  margin: 16px 0 24px;
  max-width: 500px;
}

.simple-download-button {
  align-items: center;
  background: linear-gradient(135deg, #52e58e, #20c76a);
  border-radius: 13px;
  box-shadow: 0 14px 32px rgba(25, 190, 94, 0.25);
  color: #062b17;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 12px;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.simple-download-button svg:last-child {
  transition: transform 200ms ease;
}

.simple-download-button:hover {
  box-shadow:
    0 18px 38px rgba(25, 190, 94, 0.34),
    0 0 0 5px rgba(42, 215, 116, 0.1);
  transform: translateY(-3px);
}

.simple-download-button:hover svg:last-child {
  transform: translateX(4px);
}

.simple-download-meta {
  align-items: center;
  color: #78847b;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 10px 18px;
  margin-top: 16px;
}

.simple-download-meta a {
  color: #178f51;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simple-program-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 300px;
  position: relative;
}

.simple-program-art::before {
  background: radial-gradient(circle, rgba(48, 220, 126, 0.19), rgba(22, 185, 232, 0.08) 42%, transparent 70%);
  content: "";
  inset: 4%;
  position: absolute;
}

.simple-program-art img {
  display: block;
  filter: saturate(1.03) contrast(1.02);
  max-height: 360px;
  mix-blend-mode: multiply;
  object-fit: contain;
  position: relative;
  width: 100%;
}

.simple-stats {
  border-top: 1px solid #e4eae6;
  display: grid;
  gap: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 24px;
}

.simple-stats > div {
  align-items: center;
  border-right: 1px solid #e4eae6;
  display: grid;
  gap: 2px 12px;
  grid-template-columns: 36px 1fr;
  padding: 0 24px;
}

.simple-stats > div:first-child {
  padding-left: 0;
}

.simple-stats > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.simple-stats span {
  align-items: center;
  background: #e9f8ef;
  border-radius: 10px;
  color: #139d58;
  display: inline-flex;
  grid-row: 1 / 3;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.simple-stats strong {
  font-size: 17px;
  line-height: 1.1;
}

.simple-stats small {
  color: #849087;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.simple-how-card,
.simple-contact-card {
  min-height: 420px;
}

.simple-steps {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.simple-steps > div {
  align-items: flex-start;
  border-top: 1px solid #e5eae7;
  display: grid;
  gap: 15px;
  grid-template-columns: 34px 1fr;
  padding: 18px 0;
}

.simple-steps > div > span {
  align-items: center;
  background: #0e1f15;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 850;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.simple-steps h3 {
  font-size: 14px;
  margin: 1px 0 5px;
}

.simple-steps p {
  color: #748078;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.simple-contact-card {
  transition:
    box-shadow 220ms ease,
    grid-column 220ms ease;
}

.simple-contact-card > p:not(.simple-card-tag) {
  margin: 17px 0 0;
  max-width: 520px;
}

.simple-contact-card details {
  margin-top: 32px;
}

.simple-contact-card summary {
  align-items: center;
  background: #0e1f15;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 28px;
  min-height: 52px;
  padding: 0 19px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.simple-contact-card summary::marker {
  content: "";
}

.simple-contact-card summary:hover {
  background: #173322;
  transform: translateY(-2px);
}

.simple-contact-card details[open] summary svg {
  transform: rotate(90deg);
}

.simple-contact-card:has(details[open]) {
  grid-column: 1 / -1;
}

.simple-contact-card .contact-form {
  background: #f6f9f7;
  border: 1px solid #dfe8e2;
  box-shadow: none;
  margin-top: 24px;
  max-width: 860px;
  padding: clamp(20px, 3vw, 30px);
}

.simple-footer {
  align-items: center;
  border-top: 1px solid rgba(8, 19, 33, 0.09);
  color: #7e8981;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  min-height: 90px;
  padding: 24px 0;
  text-align: left;
}

.simple-footer > a:last-child {
  color: #607067;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 800px) {
  .simple-header {
    gap: 14px;
    grid-template-columns: 1fr auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .simple-nav {
    display: none;
  }

  .simple-shell {
    padding: 60px 16px 76px;
  }

  .simple-intro {
    margin-bottom: 30px;
  }

  .simple-intro h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .simple-card-grid,
  .simple-download-card {
    grid-template-columns: 1fr;
  }

  .simple-card {
    padding: 25px;
  }

  .simple-program-art {
    min-height: 230px;
  }

  .simple-program-art img {
    max-height: 290px;
  }

  .simple-stats {
    grid-template-columns: 1fr;
  }

  .simple-stats > div,
  .simple-stats > div:first-child,
  .simple-stats > div:last-child {
    border-bottom: 1px solid #e4eae6;
    border-right: 0;
    padding: 14px 0;
  }

  .simple-stats > div:last-child {
    border-bottom: 0;
  }

  .simple-how-card,
  .simple-contact-card {
    min-height: 0;
  }

  .simple-footer {
    margin: 0 18px;
  }
}

@media (max-width: 520px) {
  .simple-brand small {
    display: none;
  }

  .simple-language select {
    max-width: 126px;
  }

  .simple-download-button,
  .simple-contact-card summary {
    width: 100%;
  }
}

/* App listing layout */
.store-site {
  background: #fff;
  color: #202124;
  min-height: 100vh;
}

.store-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #e8eaed;
  display: flex;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px max(24px, calc((100vw - 1240px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.store-brand-logo {
  display: inline-flex;
  height: 38px;
  width: 38px;
}

.store-brand-logo img,
.store-app-icon img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.store-brand strong {
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.09em;
}

.store-language {
  align-items: center;
  background: #f7f8f8;
  border: 1px solid #e1e5e2;
  border-radius: 999px;
  display: inline-flex;
  min-height: 38px;
  padding: 0 12px;
}

.store-language select {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  outline: 0;
}

.store-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 62px 24px 88px;
}

.store-product {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 112px minmax(0, 1fr) minmax(290px, 360px);
  min-height: 390px;
}

.store-app-icon {
  align-self: start;
  background: linear-gradient(145deg, #fffdf2, #f4f7f5);
  border: 1px solid #e5e8e6;
  border-radius: 25px;
  box-shadow: 0 12px 26px rgba(60, 64, 67, 0.08);
  height: 112px;
  overflow: hidden;
  padding: 10px;
  width: 112px;
}

.store-product-copy {
  align-self: center;
  min-width: 0;
}

.store-product-copy h1 {
  color: #202124;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.store-category {
  color: #087f5b;
  font-size: 13px;
  font-weight: 800;
  margin: 12px 0 0;
}

.store-summary {
  color: #5f6368;
  font-size: 14px;
  line-height: 1.65;
  margin: 17px 0 0;
  max-width: 520px;
}

.store-meta {
  display: flex;
  margin: 28px 0 0;
}

.store-meta > div {
  align-items: center;
  border-right: 1px solid #dadce0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 112px;
  padding: 0 20px;
  text-align: center;
}

.store-meta > div:first-child {
  padding-left: 0;
}

.store-meta > div:last-child {
  border-right: 0;
}

.store-meta strong {
  color: #3c4043;
  font-size: 14px;
  line-height: 1.25;
}

.store-meta span {
  color: #80868b;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.4;
  margin-top: 5px;
}

.store-download-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 17px;
  margin-top: 30px;
}

.store-download-button {
  align-items: center;
  background: #087f5b;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(8, 127, 91, 0.2);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 11px;
  justify-content: center;
  min-height: 54px;
  min-width: 290px;
  padding: 0 24px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.store-download-button:hover {
  background: #076f50;
  box-shadow:
    0 12px 28px rgba(8, 127, 91, 0.28),
    0 0 0 4px rgba(8, 127, 91, 0.08);
  transform: translateY(-2px);
}

.store-backup {
  color: #8a8e91;
  font-size: 10px;
  margin: 14px 0 0;
}

.store-backup a {
  color: #087f5b;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-product-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.store-product-art::before {
  background: radial-gradient(circle, rgba(21, 174, 112, 0.12), rgba(76, 154, 255, 0.08) 42%, transparent 70%);
  content: "";
  inset: 6%;
  position: absolute;
}

.store-product-art img {
  display: block;
  filter: saturate(1.02) contrast(1.015);
  mix-blend-mode: multiply;
  position: relative;
  transform: scale(1.03);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.store-product:hover .store-product-art img {
  transform: translateY(-5px) scale(1.055);
}

.store-section {
  border-top: 1px solid #e8eaed;
  scroll-margin-top: 92px;
}

.store-section h2 {
  color: #202124;
  font-size: 23px;
  font-weight: 720;
  letter-spacing: -0.025em;
  margin: 0;
}

.store-screenshots {
  padding: 42px 0 46px;
}

.store-shot-rail {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  overflow-x: auto;
  padding: 0 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #c8ceca transparent;
  scrollbar-width: thin;
}

.store-shot-rail figure {
  flex: 0 0 360px;
  margin: 0;
  scroll-snap-align: start;
}

.store-shot-rail figure:first-child {
  flex-basis: 280px;
}

.store-shot {
  align-items: center;
  aspect-ratio: 1.6;
  background: #f5f7f6;
  border: 1px solid #e5e9e6;
  border-radius: 17px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.store-shot-square {
  aspect-ratio: 1.25;
}

.store-shot img {
  display: block;
  height: 100%;
  mix-blend-mode: multiply;
  object-fit: cover;
  transition: transform 320ms ease;
  width: 100%;
}

.store-shot-square img {
  object-fit: cover;
}

.store-shot:hover img {
  transform: scale(1.025);
}

.store-shot-rail figcaption {
  color: #6f7477;
  font-size: 10px;
  margin-top: 10px;
}

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

.store-info-grid .store-section {
  padding: 44px 42px 48px 0;
}

.store-info-grid .store-how {
  border-left: 1px solid #e8eaed;
  padding-left: 42px;
  padding-right: 0;
}

.store-about > p {
  color: #5f6368;
  font-size: 13px;
  line-height: 1.8;
  margin: 20px 0 0;
  max-width: 500px;
}

.store-about ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.store-about li {
  align-items: center;
  background: #f2f7f4;
  border-radius: 999px;
  color: #496157;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 7px;
  padding: 8px 11px;
}

.store-about li svg {
  color: #087f5b;
}

.store-steps {
  display: grid;
  margin-top: 16px;
}

.store-steps > div {
  align-items: flex-start;
  border-bottom: 1px solid #eef0ef;
  display: grid;
  gap: 14px;
  grid-template-columns: 29px minmax(0, 1fr);
  padding: 14px 0;
}

.store-steps > div:last-child {
  border-bottom: 0;
}

.store-steps > div > span {
  align-items: center;
  background: #edf5f1;
  border-radius: 50%;
  color: #087f5b;
  display: inline-flex;
  font-size: 10px;
  font-weight: 850;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.store-steps h3 {
  font-size: 13px;
  margin: 1px 0 5px;
}

.store-steps p {
  color: #73787b;
  font-size: 10px;
  line-height: 1.6;
  margin: 0;
}

.store-support {
  padding: 8px 0 0;
}

.store-support-details > summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  min-height: 118px;
  padding: 26px 0;
}

.store-support-details > summary::-webkit-details-marker {
  display: none;
}

.store-support-details > summary > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-support-details > summary strong {
  font-size: 23px;
  letter-spacing: -0.025em;
}

.store-support-details > summary small {
  color: #666c70;
  font-size: 12px;
  line-height: 1.6;
}

.store-support-button {
  align-items: center;
  border: 1px solid #087f5b;
  border-radius: 9px;
  color: #087f5b;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  gap: 18px;
  min-height: 44px;
  padding: 0 16px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.store-support-details > summary:hover .store-support-button {
  background: #edf7f2;
  transform: translateY(-1px);
}

.store-support-details[open] .store-support-button svg {
  transform: rotate(90deg);
}

.store-support-details .contact-form {
  background: #f7f9f8;
  border: 1px solid #e1e7e3;
  box-shadow: none;
  margin: 2px 0 42px;
  max-width: 860px;
}

.store-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 127, 91, 0.07), transparent 32%),
    #f7f9f8;
  border-top: 1px solid #e8eaed;
  color: #68716c;
  display: block;
  margin: 0;
  max-width: none;
  min-height: 0;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  width: 100%;
}

.store-footer-compact {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 96px;
}

.store-footer-compact > span {
  font-size: 9px;
  line-height: 1.6;
}

.store-footer-mail {
  align-items: center;
  display: flex;
  gap: 10px;
}

.store-footer-mail > a:last-child {
  color: #59645e;
  font-size: 10px;
  transition: color 160ms ease;
}

.store-footer-mail-icon {
  align-items: center;
  background: #fff;
  border: 1px solid #dbe3de;
  border-radius: 50%;
  color: #087f5b;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  width: 34px;
}

.store-footer-mail-icon svg {
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 17px;
}

.store-footer-mail:hover > a {
  color: #087f5b;
}

.store-footer-mail:hover .store-footer-mail-icon {
  background: #087f5b;
  border-color: #087f5b;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .store-product {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .store-app-icon {
    border-radius: 22px;
    height: 94px;
    width: 94px;
  }

  .store-product-art {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .store-product-art img {
    max-height: 390px;
    object-fit: contain;
  }
}

@media (max-width: 720px) {
  .store-shell {
    padding: 44px 18px 64px;
  }

  .store-product {
    align-items: start;
    gap: 20px;
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 0;
  }

  .store-app-icon {
    border-radius: 19px;
    height: 78px;
    width: 78px;
  }

  .store-product-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .store-product-copy {
    display: contents;
  }

  .store-title-block {
    align-self: center;
    grid-column: 2;
  }

  .store-product-copy > .store-summary,
  .store-product-copy > .store-meta,
  .store-product-copy > .store-download-actions,
  .store-product-copy > .store-backup {
    grid-column: 1 / -1;
  }

  .store-summary {
    margin-top: 20px;
  }

  .store-meta {
    margin-top: 24px;
    width: 100%;
  }

  .store-meta > div {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 12px;
  }

  .store-download-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 27px;
  }

  .store-download-button {
    min-width: 0;
    width: 100%;
  }

  .store-product-art {
    min-height: 230px;
  }

  .store-screenshots {
    padding: 36px 0 40px;
  }

  .store-shot-rail figure,
  .store-shot-rail figure:first-child {
    flex-basis: min(82vw, 350px);
  }

  .store-shot-square {
    aspect-ratio: 1.6;
  }

  .store-info-grid {
    grid-template-columns: 1fr;
  }

  .store-info-grid .store-section,
  .store-info-grid .store-how {
    border-left: 0;
    padding: 38px 0 40px;
  }

  .store-support-details > summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
  }

  .store-support-button {
    justify-content: space-between;
    width: 100%;
  }

  .store-support-details .contact-form {
    padding: 20px;
  }

  .store-footer {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .store-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .store-brand strong {
    font-size: 11px;
  }

  .store-language {
    max-width: 148px;
  }

  .store-language select {
    max-width: 124px;
  }

  .store-meta strong {
    font-size: 12px;
  }

  .store-meta span {
    font-size: 8px;
  }

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

/* Refined app-store header and compact support */
.store-header-left {
  align-items: center;
  display: flex;
  min-width: 0;
}

.store-menu {
  align-items: stretch;
  display: flex;
  gap: 30px;
  min-height: 48px;
}

.store-menu a {
  align-items: center;
  color: #62676b;
  display: inline-flex;
  font-size: 12px;
  font-weight: 680;
  position: relative;
  transition: color 180ms ease;
  white-space: nowrap;
}

.store-menu a::after {
  background: #087f5b;
  border-radius: 4px 4px 0 0;
  bottom: -10px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 24px;
}

.store-menu a:hover,
.store-menu a.active {
  color: #087f5b;
}

.store-menu a:hover::after,
.store-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.store-product {
  gap: clamp(42px, 4vw, 62px);
  grid-template-columns: minmax(430px, 1fr) minmax(400px, 490px);
  min-height: 480px;
  position: relative;
}

.store-product::before {
  animation: store-system-ambient 8s ease-in-out infinite;
  background:
    radial-gradient(circle at 70% 38%, rgba(63, 156, 255, 0.17), transparent 43%),
    radial-gradient(circle at 90% 58%, rgba(36, 202, 134, 0.15), transparent 39%);
  content: "";
  filter: blur(10px);
  inset: 4% -3% 1% 42%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.store-product-copy,
.store-product-art {
  position: relative;
  z-index: 1;
}

.store-product-copy h1 {
  font-size: clamp(52px, 5.8vw, 68px);
}

.store-title-row {
  align-items: center;
  display: flex;
  gap: 24px;
}

.store-title-row .store-app-icon {
  align-self: center;
  border-radius: 22px;
  flex: 0 0 94px;
  height: 94px;
  padding: 8px;
  width: 94px;
}

.store-download-actions {
  align-items: center;
  gap: 17px;
  margin-top: 30px;
}

.store-backup {
  font-size: 11px;
  margin-top: 9px;
}

.store-product-art {
  isolation: isolate;
  min-height: 390px;
  overflow: visible;
}

.store-product-art::before {
  animation: store-glow-breathe 5.6s ease-in-out infinite;
  background:
    radial-gradient(circle at 38% 46%, rgba(64, 142, 247, 0.2), transparent 43%),
    radial-gradient(circle at 78% 58%, rgba(35, 201, 126, 0.18), transparent 39%);
  filter: blur(22px);
  inset: 5% -4%;
  transform-origin: center;
  z-index: 0;
}

.store-product-art::after {
  animation: store-progress-flow 4.8s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(58, 145, 255, 0.12) 20%,
    rgba(58, 145, 255, 0.38) 46%,
    rgba(40, 201, 126, 0.34) 68%,
    transparent 100%
  );
  border-radius: 999px;
  bottom: 17%;
  content: "";
  filter: blur(9px);
  height: 12px;
  left: 8%;
  pointer-events: none;
  position: absolute;
  right: 2%;
  transform-origin: center;
  z-index: 0;
}

.store-product-art img {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 6%,
    #000 96%,
    transparent 100%
  );
  animation: none;
  filter: none;
  height: auto;
  image-rendering: auto;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 6%,
    #000 96%,
    transparent 100%
  );
  max-width: 490px;
  mix-blend-mode: multiply;
  transform: none;
  transition: none;
  width: 100%;
  z-index: 1;
}

.store-product:hover .store-product-art img {
  filter: none;
  transform: none;
}

@keyframes store-glow-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.95) translate3d(-1.5%, 0, 0);
  }

  50% {
    opacity: 1;
    transform: scale(1.04) translate3d(1.5%, -1%, 0);
  }
}

@keyframes store-system-ambient {
  0%,
  100% {
    opacity: 0.68;
    transform: translate3d(-1%, 0, 0) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translate3d(1%, -1%, 0) scale(1.02);
  }
}

@keyframes store-progress-flow {
  0%,
  100% {
    opacity: 0.38;
    transform: translate3d(-5%, 0, 0) scaleX(0.78);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(5%, 0, 0) scaleX(1);
  }
}

@keyframes store-shadow-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.94);
  }

  50% {
    opacity: 0.35;
    transform: scaleX(0.82);
  }
}

.store-how-full {
  padding: 44px 0 50px;
}

.store-how-full .store-steps {
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.store-how-full .store-steps > div {
  border-bottom: 0;
  border-right: 1px solid #e8eaed;
  padding: 2px 30px;
}

.store-how-full .store-steps > div:first-child {
  padding-left: 0;
}

.store-how-full .store-steps > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.store-meta > div {
  min-width: 112px;
  padding-left: 20px;
  padding-right: 20px;
}

.store-reviews {
  padding: 46px 0 52px;
}

.store-reviews-intro {
  color: #72787c;
  font-size: 11px;
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 610px;
}

.store-reviews-layout {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 120px 240px minmax(0, 1fr);
  margin-top: 28px;
}

.store-rating-summary {
  display: flex;
  flex-direction: column;
}

.store-rating-summary > strong {
  color: #202124;
  font-size: 54px;
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
}

.store-review-stars {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.store-rating-summary .store-review-stars {
  margin-top: 13px;
}

.store-rating-summary > small {
  color: #777d81;
  font-size: 10px;
  margin-top: 9px;
}

.store-rating-bars {
  display: grid;
  gap: 8px;
}

.store-rating-bars > div {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 10px minmax(0, 1fr);
}

.store-rating-bars span {
  color: #6e7478;
  font-size: 10px;
  text-align: right;
}

.store-rating-bars i {
  background: #e8eaed;
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}

.store-rating-bars b {
  background: #087f5b;
  border-radius: inherit;
  display: block;
  height: 100%;
}

.store-review-carousel {
  min-width: 0;
}

.store-review-viewport {
  overflow: hidden;
}

.store-review-track {
  display: flex;
  transition: transform 460ms cubic-bezier(0.22, 0.75, 0.25, 1);
  width: 100%;
  will-change: transform;
}

.store-review-list {
  display: grid;
  flex: 0 0 100%;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.store-review-list article {
  background:
    linear-gradient(145deg, rgba(8, 127, 91, 0.035), transparent 58%),
    #fff;
  border: 1px solid #e3e8e5;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(46, 57, 51, 0.045);
  min-width: 0;
  min-height: 176px;
  padding: 20px;
}

.store-review-head {
  align-items: center;
  display: flex;
  gap: 11px;
  margin-bottom: 14px;
}

.store-review-head > span {
  align-items: center;
  background: linear-gradient(145deg, #eef8f3, #f4f7ff);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 17px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(8, 127, 91, 0.08);
  width: 34px;
}

.store-review-head > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.store-review-head strong {
  color: #303438;
  font-size: 11px;
}

.store-review-head small {
  color: #969b9e;
  font-size: 8px;
}

.store-review-list article > p {
  color: #565d61;
  font-size: 10.5px;
  line-height: 1.7;
  margin: 12px 0 0;
}

.store-review-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

.store-review-controls > span {
  color: #777e82;
  font-size: 9.5px;
  line-height: 1.5;
  max-width: 520px;
}

.store-review-controls button {
  align-items: center;
  background: #fff;
  border: 1px solid #d8deda;
  border-radius: 50%;
  color: #087f5b;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 2px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 36px;
}

.store-review-controls button:hover {
  background: #087f5b;
  border-color: #087f5b;
  color: #fff;
  transform: translateX(2px);
}

.store-review-controls button:focus-visible {
  outline: 3px solid rgba(8, 127, 91, 0.2);
  outline-offset: 3px;
}

.store-support {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: 230px minmax(0, 1fr);
  padding: 48px 0 52px;
}

.store-support-copy p {
  color: #6b7175;
  font-size: 12px;
  line-height: 1.7;
  margin: 13px 0 0;
}

.store-support .compact-contact-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 16px 18px;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  margin: 0;
  max-width: none;
  padding: 0;
}

.compact-contact-form .inquiry-category {
  grid-column: 1;
  grid-row: 1;
}

.compact-contact-form .inquiry-message {
  grid-column: 2;
  grid-row: 1 / 3;
}

.compact-contact-form textarea {
  min-height: 126px;
}

.compact-contact-form .contact-form-bottom {
  align-self: end;
  display: grid;
  gap: 9px;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: 1fr;
}

.compact-contact-form .contact-submit {
  background: #087f5b;
  box-shadow: 0 9px 22px rgba(8, 127, 91, 0.19);
  color: #fff;
  min-width: 0;
  width: 100%;
}

.compact-contact-form .form-status {
  min-height: 0;
}

@media (max-width: 920px) {
  .store-menu {
    gap: 20px;
  }

  .store-product {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  }

  .store-product-art {
    grid-column: auto;
    min-height: 390px;
  }

  .store-product-art img {
    max-height: none;
  }

  .store-support {
    gap: 34px;
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .store-reviews-layout {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .store-review-carousel {
    grid-column: 1 / -1;
  }

}

@media (max-width: 720px) {
  .store-header {
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
  }

  .store-header-left {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .store-language {
    flex: 0 0 auto;
  }

  .store-menu {
    gap: 24px;
    min-height: 46px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .store-menu::-webkit-scrollbar {
    display: none;
  }

  .store-menu a::after {
    bottom: -10px;
  }

  .store-product {
    gap: 10px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .store-product-copy {
    display: block;
  }

  .store-product-copy > .store-summary,
  .store-product-copy > .store-meta,
  .store-product-copy > .store-download-actions,
  .store-product-copy > .store-backup {
    grid-column: auto;
  }

  .store-product-art {
    grid-column: auto;
    margin-top: 15px;
    min-height: 270px;
  }

  .store-title-row {
    gap: 17px;
  }

  .store-title-row .store-app-icon {
    border-radius: 18px;
    flex-basis: 74px;
    height: 74px;
    width: 74px;
  }

  .store-download-actions {
    align-items: flex-start;
  }

  .store-how-full .store-steps {
    grid-template-columns: 1fr;
  }

  .store-how-full .store-steps > div,
  .store-how-full .store-steps > div:first-child,
  .store-how-full .store-steps > div:last-child {
    border-bottom: 1px solid #e8eaed;
    border-right: 0;
    padding: 17px 0;
  }

  .store-how-full .store-steps > div:last-child {
    border-bottom: 0;
  }

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

  .store-meta > div,
  .store-meta > div:first-child,
  .store-meta > div:last-child {
    min-width: 0;
    padding: 0 7px;
  }

  .store-meta > div,
  .store-meta > div:first-child {
    border-right: 1px solid #dadce0;
  }

  .store-meta > div:last-child {
    border-right: 0;
  }

  .store-reviews {
    padding: 38px 0 42px;
  }

  .store-reviews-layout {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .store-review-list {
    gap: 24px;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .store-review-list article {
    border: 1px solid #e3e8e5;
    border-radius: 14px;
    min-height: 0;
    padding: 18px;
  }

  .store-support {
    gap: 26px;
    grid-template-columns: 1fr;
    padding: 40px 0 44px;
  }

  .store-support .compact-contact-form {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .compact-contact-form .inquiry-category,
  .compact-contact-form .inquiry-message,
  .compact-contact-form .contact-form-bottom {
    grid-column: 1;
    grid-row: auto;
  }

  .compact-contact-form .inquiry-message {
    grid-row: 2;
  }

  .compact-contact-form .contact-form-bottom {
    grid-row: 3;
  }

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

  .store-footer-compact {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    min-height: 112px;
  }
}

@media (max-width: 520px) {
  .store-menu {
    gap: 18px;
  }

  .store-menu a {
    font-size: 11px;
  }

  .store-product-art {
    min-height: 250px;
  }

  .store-review-controls {
    align-items: flex-end;
  }

  .store-review-controls > span {
    max-width: 240px;
  }

  .store-footer-mail-icon {
    height: 32px;
    width: 32px;
  }
}
