:root {
  --white: #ffffff;
  --soft: #f5f8f7;
  --soft-green: #e9f8f3;
  --text: #17211e;
  --muted: #64716d;
  --line: #dfe7e4;
  --primary: #087e65;
  --primary-dark: #05634f;
  --primary-light: #11b38f;
  --dark: #101a17;
  --container: min(1160px, calc(100% - 48px));
  --header: 72px;
  --radius: 14px;
  --shadow: 0 20px 55px rgba(23, 50, 42, .11);
  --font: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .92);
  transition: height .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  height: 64px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 45, 38, .05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--white);
  background: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.brand strong {
  font-size: 15px;
  letter-spacing: .025em;
}

.brand strong span {
  margin-left: 3px;
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #53605c;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--primary);
  transition: right .25s;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

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

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.language-toggle i {
  width: 1px;
  height: 12px;
  background: var(--line);
}

.language-toggle span:last-child {
  color: #9aa5a1;
}

.header-button {
  padding: 10px 15px;
  border-radius: 9px;
  color: var(--white);
  background: var(--primary);
  font-size: 12px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  padding: calc(var(--header) + 78px) 0 92px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 62px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-heading>span,
.split-heading>div>span,
.section-kicker,
.trial-card>div>span,
.faq-intro>span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.control-copy h2,
.trial-card h2,
.faq-intro h2 {
  margin: 0;
  font-weight: 720;
  letter-spacing: 0.00em;
  line-height: 1.10;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(48px, 5.2vw, 70px);
}

.hero h1 span,
.section-heading h2 span,
.control-copy h2 span,
.trial-card h2 span,
.faq-intro h2 span {
  color: var(--primary);
}

.hero-copy>p {
  max-width: 570px;
  margin: 25px 0 31px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}

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

.button-primary {
  color: var(--white);
  background: var(--primary);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-link {
  padding-inline: 0;
  color: var(--primary);
}

.button-link:hover {
  transform: none;
  color: var(--primary-dark);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #52615c;
  font-size: 12px;
}

.hero-points i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--soft-green);
  font-size: 10px;
  font-style: normal;
}

.hero-points b {
  font-weight: 600;
}

.hero-product {
  position: relative;
  min-width: 0;
  padding: 30px 0 34px;
}

.hero-product::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -32px -70px 2px 45px;
  border-radius: 40px 0 0 40px;
  background: var(--soft-green);
}

.product-image {
  aspect-ratio: 1458 / 1048;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ced9d5;
  border-radius: 13px;
  background: #08100e;
  box-shadow: var(--shadow);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 14px 2px 0;
  color: #60706a;
  font-size: 11px;
}

.product-caption>span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-caption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(17, 179, 143, .12);
}

.product-caption small {
  color: #89948f;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-bar>div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-bar>div>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 106px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.trust-bar>div>div:first-child {
  padding-left: 0;
}

.trust-bar>div>div:last-child {
  border-right: 0;
}

.trust-bar strong {
  font-size: 19px;
}

.trust-bar strong span {
  font-size: inherit;
}

.trust-bar small {
  color: var(--muted);
}

.section {
  padding: 112px 0;
}

.section-heading.centered {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 750px;
}

.section-heading h2,
.control-copy h2,
.faq-intro h2 {
  font-size: clamp(34px, 3.8vw, 48px);
}

.section-heading>p {
  max-width: 680px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: 17px;
}

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

.benefit-grid article {
  min-height: 285px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: #b9d6cd;
  box-shadow: 0 16px 38px rgba(28, 64, 53, .08);
}

.simple-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 52px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--soft-green);
}

.list-icon {
  flex-direction: column;
  gap: 4px;
}

.list-icon i {
  width: 22px;
  height: 2px;
  border-left: 4px solid var(--primary);
  background: #9bd7c7;
}

.settings-icon i {
  width: 20px;
  height: 20px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--soft-green);
}

.pulse-icon {
  gap: 3px;
  align-items: flex-end;
  padding-block: 13px;
}

.pulse-icon i {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: var(--primary);
}

.pulse-icon i:nth-child(1) {
  height: 10px;
}

.pulse-icon i:nth-child(2) {
  height: 22px;
}

.pulse-icon i:nth-child(3) {
  height: 15px;
}

.benefit-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12%;
  align-items: end;
}

.split-heading>p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.feature-grid article {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-grid article>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--soft-green);
  font-size: 11px;
  font-weight: 800;
}

.feature-grid h3 {
  margin: 35px 0 9px;
  font-size: 22px;
}

.feature-grid p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.feature-grid small {
  position: absolute;
  top: 33px;
  right: 30px;
  color: #9ca8a4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.pricing-section {
  background: var(--white);
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 450px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 131, 255, .38);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(155deg, rgba(99, 91, 255, .14), rgba(65, 205, 177, .08));
  box-shadow: 0 22px 55px rgba(66, 58, 130, .16);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #4d93e8);
  box-shadow: 0 8px 20px rgba(99, 91, 255, .28);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pricing-card-head>span {
  font-size: 19px;
  font-weight: 750;
}

.pricing-card:first-child .pricing-card-head>span {
  flex-shrink: 0;
  white-space: nowrap;
}

.pricing-card-head small {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-align: right;
  white-space: nowrap;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 25px 0 13px;
}

.price strong {
  font-size: clamp(38px, 3.4vw, 49px);
  letter-spacing: -.055em;
  line-height: 1;
}

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

.pricing-card>p {
  min-height: 72px;
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-card li i {
  flex: 0 0 auto;
  color: var(--primary-light);
  font-style: normal;
  font-weight: 800;
}

.pricing-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid rgba(99, 91, 255, .32);
  border-radius: 12px;
  color: var(--primary);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}

.pricing-button:hover,
.pricing-card.featured .pricing-button {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #635bff, #4d93e8);
  transform: translateY(-2px);
}

.workflow-section {
  background: var(--white);
}

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

.steps article {
  position: relative;
  display: flex;
  gap: 18px;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(100% + 9px);
  width: 24px;
  height: 1px;
  background: #bad4cc;
}

.steps article>span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 17px;
  font-weight: 800;
}

.steps h3 {
  margin: 4px 0 8px;
  font-size: 19px;
}

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

.control-section {
  background: #f2f7f5;
}

.control-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.control-copy>p {
  max-width: 520px;
  margin: 22px 0 25px;
  color: var(--muted);
  font-size: 17px;
}

.control-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.control-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f5e59;
}

.control-copy li i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--primary);
  background: #dff3ed;
  font-size: 10px;
  font-style: normal;
}

.log-card {
  overflow: hidden;
  border: 1px solid #2a3935;
  border-radius: var(--radius);
  color: #d9e4e0;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.log-header,
.log-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  background: #15221e;
}

.log-header {
  border-bottom: 1px solid #2b3c36;
}

.log-footer {
  border-top: 1px solid #2b3c36;
}

.log-header span,
.log-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.log-header i,
.log-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
}

.log-header b,
.log-footer b {
  font-size: 10px;
}

.log-header small,
.log-footer small {
  color: #64766f;
  font-size: 8px;
  letter-spacing: .1em;
}

.language-select {
  padding: 8px 16px;
  padding-right: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23635bff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  transition: border-color .25s, box-shadow .25s;
}

.language-select:hover {
  border-color: var(--primary);
}

.language-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.13);
}

.language-select option {
  background: var(--white);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
}

.custom-select {
  position: relative;
  min-width: 120px;
}

.select-selected {
  padding: 8px 16px;
  padding-right: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  position: relative;
  transition: border-color .25s;
}

.select-selected::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--primary);
  transition: transform .25s;
}

.select-selected.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.select-selected:hover {
  border-color: var(--primary);
}

.select-items {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px;
  /* 👈 Bo góc menu dropdown */
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 100;
}

.select-items.show {
  display: block;
}

.select-items div {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s;
}

.select-items div:first-child {
  border-radius: 16px 16px 0 0;
}

.select-items div:last-child {
  border-radius: 0 0 16px 16px;
}

.select-items div:hover {
  background: var(--soft-green);
}

.select-items div.active {
  background: var(--soft-green);
  color: var(--primary);
  font-weight: 600;
}

.log-body {
  min-height: 270px;
  padding: 27px 24px;
  font-family: Consolas, monospace;
}

.log-body p {
  display: grid;
  grid-template-columns: 86px 44px 1fr;
  gap: 12px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #24332e;
  font-size: 11px;
}

.log-body time {
  color: #667971;
}

.log-body b {
  color: #72b9ff;
}

.log-body .pass {
  color: var(--primary-light);
}

.log-body .run {
  color: #f0cb6f;
}

.log-body p>i {
  width: 6px;
  height: 13px;
  background: var(--primary-light);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.trial-section {
  padding: 88px 0;
  background: var(--primary);
}

.trial-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  color: var(--white);
}

.trial-card>div>span {
  color: #b8f1e2;
}

.trial-card h2 {
  font-size: clamp(40px, 4.6vw, 58px);
}

.trial-card h2 span {
  color: #c8f8eb;
}

.trial-card p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.trial-action {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 13px;
}

.button-white {
  justify-content: space-between;
  color: var(--primary-dark);
  background: var(--white);
}

.button-white:hover {
  background: #effbf8;
}

.trial-action small {
  color: rgba(255, 255, 255, .7);
  text-align: center;
  font-size: 10px;
}

.download-section {
  padding: 62px 0;
}

.download-section .trial-card h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.download-section .trial-card p {
  margin-top: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 10%;
}

.faq-intro {
  align-self: start;
}

.faq-intro p {
  max-width: 390px;
  margin: 20px 0 0;
  color: var(--muted);
}

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

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

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
}

.faq-item button i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform .25s;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 45px 24px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: .75fr .95fr 1.3fr;
  gap: 40px;
  align-items: center;
  min-height: 145px;
}

.footer-top p {
  color: var(--muted);
}

.footer-top nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: #53615c;
  font-size: 13px;
}

.footer-top nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: #899590;
  font-size: 11px;
}

.scroll-top {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(8, 126, 101, .25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s, visibility .2s, transform .2s, background .2s;
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  display: block;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
}

@media (max-width: 1020px) {
  :root {
    --container: min(100% - 40px, 920px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-actions {
    margin-left: 18px;
  }

  .hero-layout {
    grid-template-columns: .82fr 1.18fr;
    gap: 35px;
  }

  .hero-product::before {
    right: -80px;
    left: 25px;
  }

  .control-layout {
    gap: 50px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 840px) {
  :root {
    --header: 64px;
  }

  .desktop-nav,
  .header-button {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header) 0 0;
    display: flex;
    flex-direction: column;
    padding: 26px 20px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s, visibility .25s, transform .25s;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 19px;
    font-weight: 650;
  }

  .mobile-nav .mobile-cta {
    margin-top: auto;
    padding: 15px;
    border: 0;
    border-radius: 9px;
    color: var(--white);
    background: var(--primary);
    text-align: center;
    font-size: 13px;
  }

  .hero {
    padding-top: calc(var(--header) + 58px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero-product {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .hero-product::before {
    inset: -28px -80px 4px 12%;
  }

  .trust-bar>div {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar>div>div:nth-child(2) {
    border-right: 0;
  }

  .trust-bar>div>div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-bar>div>div:nth-child(3) {
    padding-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .split-heading,
  .control-layout,
  .trial-card,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .pricing-card {
    min-height: 420px;
  }

  .benefit-grid article {
    min-height: 230px;
  }

  .simple-icon {
    margin-bottom: 35px;
  }

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

  .steps article:not(:last-child)::after {
    display: none;
  }

  .control-copy {
    max-width: 700px;
  }

  .log-card {
    width: min(720px, 100%);
  }

  .trial-action {
    width: min(480px, 100%);
  }

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

  .footer-top nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 35px;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 28px);
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    padding-bottom: 70px;
  }

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

  .hero-copy>p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .button {
    width: 100%;
  }

  .button-link {
    min-height: 42px;
  }

  .hero-points {
    flex-direction: column;
    gap: 8px;
  }

  .hero-product {
    padding-bottom: 16px;
  }

  .hero-product::before {
    inset: -18px -35px -12px 8%;
    border-radius: 24px 0 0 24px;
  }

  .product-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .trust-bar>div>div {
    min-height: 88px;
    padding: 0 16px;
  }

  .trust-bar>div>div:first-child,
  .trust-bar>div>div:nth-child(3) {
    padding-left: 0;
  }

  .trust-bar strong {
    font-size: 16px;
  }

  .trust-bar small {
    font-size: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .control-copy h2,
  .trial-card h2,
  .faq-intro h2 {
    font-size: 38px;
  }

  .benefit-grid {
    margin-top: 44px;
  }

  .benefit-grid article {
    padding: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .pricing-card {
    min-height: 0;
    padding: 25px;
  }

  .pricing-card:first-child .pricing-card-head {
    gap: 6px;
  }

  .pricing-card>p {
    min-height: 0;
  }

  .price strong {
    font-size: 44px;
  }

  .feature-grid article {
    min-height: 220px;
    padding: 24px;
  }

  .feature-grid small {
    top: 27px;
    right: 24px;
  }

  .steps {
    margin-top: 48px;
  }

  .log-body {
    padding: 20px 14px;
  }

  .log-body p {
    grid-template-columns: 65px 38px 1fr;
    gap: 5px;
    font-size: 9px;
  }

  .trial-section {
    padding: 70px 0;
  }

  .download-section {
    padding: 48px 0;
  }

  .faq-item button {
    padding: 21px 0;
    font-size: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 38px 0;
  }

  .footer-top p {
    margin: 14px 0;
  }

  .footer-top nav {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 12px 0 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

body.modal-open {
  overflow: hidden;
}

.pricing-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.pricing-modal[hidden] {
  display: none;
}

.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 12, .78);
  backdrop-filter: blur(8px);
}

.pricing-dialog {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(181, 184, 232, .16);
  border-radius: 24px;
  color: #f2f4ff;
  background: radial-gradient(circle at 100% 0, rgba(99, 91, 255, .2), transparent 36%), #111525;
  box-shadow: 0 32px 95px rgba(0, 0, 0, .58);
}

.pricing-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(181, 184, 232, .16);
  border-radius: 11px;
  color: #aeb4c7;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.pricing-modal-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #aaa4ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.pricing-dialog h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(30px, 5vw, 42px);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.pricing-modal-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 25px 0 12px;
  padding: 13px 15px;
  border: 1px solid rgba(181, 184, 232, .12);
  border-radius: 12px;
  color: #969eb3;
  background: rgba(255, 255, 255, .035);
  font-size: 13px;
}

.pricing-modal-plan strong {
  color: #b4afff;
  text-align: right;
}

.pricing-modal-note {
  margin: 0 0 24px;
  color: #a4abbe;
  font-size: 14px;
}

.activation-form {
  display: grid;
  gap: 10px;
}

.activation-form label {
  font-size: 12px;
  font-weight: 750;
}

.activation-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(181, 184, 232, .18);
  border-radius: 12px;
  outline: 0;
  color: #f2f4ff;
  background: #0b0e1a;
  font: inherit;
}

.activation-form input:focus {
  border-color: #8a83ff;
  box-shadow: 0 0 0 3px rgba(138, 131, 255, .13);
}

.test-payment-fields {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.test-payment-fields[hidden] {
  display: none;
}

.test-mode-notice {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 4px;
  padding: 11px 13px;
  border: 1px solid rgba(82, 217, 189, .2);
  border-radius: 11px;
  color: #9da5ba;
  background: rgba(82, 217, 189, .07);
  font-size: 11px;
}

.test-mode-notice strong {
  color: #52d9bd;
  font-size: 9px;
  letter-spacing: .1em;
}

.test-card-row {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 12px;
}

.test-card-row>div {
  display: grid;
  gap: 10px;
}

.due-today {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
  padding: 15px 0 3px;
  border-top: 1px solid rgba(181, 184, 232, .14);
  color: #c5cada;
  font-size: 13px;
}

.due-today strong {
  color: #fff;
  font-size: 21px;
}

.form-error {
  min-height: 20px;
  color: #ff8f9d;
  font-size: 12px;
}

.activation-form button,
.pricing-modal-success button {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #635bff, #4d93e8);
  cursor: pointer;
  font-weight: 800;
}

.activation-form small,
.pricing-modal-success small {
  margin-top: 10px;
  color: #737c92;
  text-align: center;
  font-size: 10px;
}

.pricing-modal-success {
  text-align: center;
}

.pricing-modal-success>span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #07120f;
  background: #52d9bd;
  font-size: 25px;
  font-weight: 900;
}

.pricing-modal-success h2 {
  margin-inline: auto;
}

.pricing-modal-success p {
  color: #a4abbe;
}

.pricing-modal-success code {
  display: block;
  margin: 22px 0 14px;
  padding: 16px 10px;
  border: 1px dashed rgba(138, 131, 255, .45);
  border-radius: 12px;
  color: #bcb8ff;
  background: #0b0e1a;
  font-size: clamp(14px, 4vw, 19px);
  font-weight: 800;
  letter-spacing: .05em;
}

.pricing-modal-success button {
  width: 100%;
}

.pricing-modal-success small {
  display: block;
}

/* Download button in modal */
.download-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #635bff, #4d93e8);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.25);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.35);
}

@media (max-width: 580px) {
  .pricing-modal {
    padding: 12px;
  }

  .pricing-dialog {
    max-height: calc(100vh - 24px);
    padding: 31px 20px 24px;
    border-radius: 20px;
  }

  .pricing-modal-close {
    top: 12px;
    right: 12px;
  }

  .pricing-dialog h2 {
    padding-right: 38px;
    font-size: 32px;
  }

  .pricing-modal-plan {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .pricing-modal-plan strong {
    text-align: left;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Aurora Soft — sample 4 */
:root {
  --white: #ffffff;
  --soft: #f5f5ff;
  --soft-green: #eeeefe;
  --text: #24233a;
  --muted: #6f6d82;
  --line: rgba(83, 78, 132, .14);
  --primary: #635bff;
  --primary-dark: #4b43d8;
  --primary-light: #41cdb1;
  --dark: #211f43;
  --radius: 20px;
  --shadow: 0 28px 80px rgba(66, 58, 130, .18);
}

body {
  background: #fbfbff;
}

.site-header {
  top: 14px;
  height: 62px;
  padding-inline: 18px;
  background: transparent;
  backdrop-filter: none;
}

.site-header.scrolled {
  top: 8px;
  height: 58px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.header-inner {
  width: min(1180px, 100%);
  padding: 0 17px;
  border: 1px solid rgba(100, 92, 185, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 40px rgba(70, 61, 130, .1);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  border-radius: 11px;
  background: linear-gradient(135deg, #655dff, #39c9b0);
  box-shadow: 0 7px 18px rgba(99, 91, 255, .25);
}

.brand strong span,
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
}

.header-button {
  border-radius: 12px;
  background: linear-gradient(135deg, #655dff, #5147d8);
  box-shadow: 0 8px 20px rgba(99, 91, 255, .22);
}

.header-button:hover {
  background: linear-gradient(135deg, #574fe6, #4239bd);
}

.language-toggle,
.menu-toggle {
  border-radius: 12px;
  background: rgba(255, 255, 255, .75);
}

.hero {
  padding: 164px 0 64px;
  background: radial-gradient(circle at 15% 18%, rgba(117, 205, 255, .34), transparent 29%), radial-gradient(circle at 87% 20%, rgba(154, 131, 255, .3), transparent 31%), linear-gradient(180deg, #f8f7ff 0%, #eef8ff 55%, #fbfbff 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 62px;
  text-align: center;
}

.hero-copy {
  max-width: 100%;
  margin-inline: auto;
  width: 100%;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid rgba(99, 91, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 6px 20px rgba(80, 70, 150, .06);
}

.hero h1 {
  max-width: 100%;
  margin-inline: auto;
  font-size: clamp(55px, 7vw, 60px);
  line-height: 1.10;
}

.hero h1 span {
  background: linear-gradient(90deg, #5e56ed, #178eab);
  background-clip: text;
  color: transparent;
}

.hero-copy>p {
  max-width: 690px;
  margin: 27px auto 32px;
  font-size: 19px;
}

.hero-actions,
.hero-points {
  justify-content: center;
}

.button {
  border-radius: 13px;
}

.button-primary {
  background: linear-gradient(135deg, #635bff, #4d93e8);
  box-shadow: 0 12px 28px rgba(86, 83, 220, .24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #554ddd, #397ed0);
}

.button-link {
  color: #5149d5;
}

.hero-points i {
  color: #4f47d8;
  background: #e8e7ff;
}

.hero-product {
  width: min(1000px, 94%);
  margin-inline: auto;
  padding: 0 0 30px;
}

.hero-product::before {
  inset: -45px -70px -10px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99, 91, 255, .2), rgba(61, 200, 177, .08) 45%, transparent 70%);
  filter: blur(10px);
}

.product-image {
  border: 8px solid rgba(255, 255, 255, .88);
  border-radius: 22px;
  box-shadow: 0 40px 95px rgba(53, 48, 104, .25), 0 0 0 1px rgba(89, 79, 160, .14);
  transform: perspective(1600px) rotateX(1.2deg);
}

.product-caption {
  max-width: 820px;
  margin: 17px auto 0;
}

.product-caption i {
  background: #41cdb1;
}

.trust-bar {
  padding: 0 0 70px;
  border: 0;
  background: #fbfbff;
}

.trust-bar>div {
  overflow: hidden;
  border: 1px solid rgba(89, 80, 150, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 50px rgba(60, 52, 125, .08);
}

.trust-bar>div>div {
  min-height: 112px;
  padding-inline: 28px;
  border-color: rgba(89, 80, 150, .12);
}

.trust-bar>div>div:first-child {
  padding-left: 28px;
}

.trust-bar>div>div:nth-child(3) {
  padding-left: 28px;
}

.section {
  padding: 120px 0;
}

.section-heading>span,
.split-heading>div>span,
.section-kicker,
.faq-intro>span {
  color: #5d55df;
}

.section-heading h2 span,
.control-copy h2 span,
.faq-intro h2 span {
  color: #6058e8;
}

.intro-section {
  background: #fbfbff;
}

.benefit-grid {
  gap: 24px;
}

.benefit-grid article {
  border-color: rgba(90, 80, 150, .12);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .95), rgba(247, 247, 255, .88));
  box-shadow: 0 16px 45px rgba(64, 55, 125, .07);
}

.benefit-grid article:hover {
  border-color: rgba(99, 91, 255, .28);
  box-shadow: 0 22px 55px rgba(70, 61, 140, .13);
}

.simple-icon {
  border-radius: 15px;
  color: #635bff;
  background: linear-gradient(135deg, #e9e8ff, #e2f9f5);
}

.list-icon i,
.pulse-icon i {
  background: #635bff;
}

.settings-icon i {
  border-color: #635bff;
}

.features-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f0efff 0%, #f4fbff 48%, #eefaf7 100%);
}

.features-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -220px;
  top: 70px;
  border-radius: 50%;
  background: rgba(104, 94, 245, .1);
  filter: blur(8px);
}

.feature-grid article {
  border-color: rgba(99, 91, 255, .12);
  border-radius: 23px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 40px rgba(60, 55, 120, .07);
  backdrop-filter: blur(12px);
  transition: transform .25s, box-shadow .25s;
}

.feature-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(60, 55, 130, .13);
}

.feature-grid article>span {
  color: #5a52df;
  background: linear-gradient(135deg, #e3e1ff, #ddf8f2);
}

.workflow-section {
  background: #fff;
}

.steps {
  gap: 28px;
}

.steps article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(99, 91, 255, .12);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(65, 55, 125, .07);
}

.steps article:not(:last-child)::after {
  display: none;
}

.steps article>span {
  background: linear-gradient(135deg, #635bff, #45bca9);
  box-shadow: 0 9px 22px rgba(99, 91, 255, .22);
}

.control-section {
  padding: 95px 0;
  background: #fbfbff;
}

.control-layout {
  padding: 66px;
  border-radius: 34px;
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(92, 130, 255, .35), transparent 38%), linear-gradient(135deg, #252149, #173f53);
  box-shadow: 0 32px 75px rgba(34, 31, 75, .22);
}

.control-copy h2 span {
  color: #89e4d0;
}

.control-copy>p,
.control-copy li {
  color: rgba(255, 255, 255, .7);
}

.control-copy li i {
  color: #fff;
  background: rgba(93, 224, 196, .18);
}

.control-copy .section-kicker {
  color: #89e4d0;
}

.log-card {
  border-color: rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(12, 17, 40, .65);
  box-shadow: 0 25px 60px rgba(6, 8, 26, .3);
  backdrop-filter: blur(12px);
}

.log-header,
.log-footer {
  background: rgba(255, 255, 255, .05);
}

.trial-section {
  padding: 96px 0;
  background: radial-gradient(circle at 15% 20%, rgba(95, 224, 194, .25), transparent 28%), linear-gradient(120deg, #665df5, #3a79dc 55%, #239a9c);
}

.trial-card h2 span {
  color: #c9fff3;
}

.button-white {
  border-radius: 14px;
  color: #4c45ce;
  box-shadow: 0 14px 35px rgba(34, 38, 110, .2);
}

.faq-section {
  background: linear-gradient(180deg, #fff, #f7f7ff);
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(93, 83, 155, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 50px rgba(65, 55, 125, .07);
}

.faq-item {
  padding-inline: 24px;
  border-color: rgba(93, 83, 155, .12);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button i::before,
.faq-item button i::after {
  background: #635bff;
}

.site-footer {
  background: #f7f7ff;
}

.scroll-top {
  border-radius: 15px;
  background: linear-gradient(135deg, #635bff, #45bca9);
  box-shadow: 0 12px 28px rgba(83, 74, 210, .26);
}

@media (max-width: 840px) {
  .site-header {
    top: 8px;
    padding-inline: 10px;
  }

  .site-header.scrolled {
    top: 6px;
  }

  .mobile-nav {
    inset: 0;
    padding: 92px 24px 26px;
    background: rgba(248, 248, 255, .96);
    backdrop-filter: blur(20px);
  }

  .hero {
    padding-top: 135px;
  }

  .hero-layout {
    gap: 52px;
  }

  .trust-bar>div {
    grid-template-columns: repeat(2, 1fr);
  }

  .control-layout {
    padding: 48px;
  }
}

@media (max-width: 580px) {
  .header-inner {
    padding-inline: 11px;
    border-radius: 15px;
  }

  .hero {
    padding-top: 122px;
  }

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

  .hero-product {
    width: 100%;
  }

  .product-image {
    border-width: 4px;
    border-radius: 15px;
    transform: none;
  }

  .product-caption {
    text-align: left;
  }

  .trust-bar {
    padding-bottom: 45px;
  }

  .trust-bar>div>div,
  .trust-bar>div>div:first-child,
  .trust-bar>div>div:nth-child(3) {
    padding-inline: 16px;
  }

  .section {
    padding: 78px 0;
  }

  .control-section {
    padding: 50px 0;
  }

  .control-layout {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .faq-item {
    padding-inline: 18px;
  }
}

/* Aurora Dark — selected direction */
:root {
  --white: #111525;
  --soft: #0d1120;
  --soft-green: #171932;
  --text: #f2f4ff;
  --muted: #9da5ba;
  --line: rgba(196, 201, 255, .13);
  --primary: #8a83ff;
  --primary-dark: #7169ec;
  --primary-light: #52d9bd;
  --dark: #090c17;
  --shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

body {
  color: var(--text);
  background: #080b14;
}

.brand-mark,
.header-button,
.button-primary,
.trial-card,
.scroll-top {
  color: #fff;
}

.site-header .header-inner {
  border-color: rgba(173, 168, 255, .16);
  background: rgba(13, 16, 30, .82);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .28);
}

.desktop-nav a {
  color: #a8aec2;
}

.brand strong {
  color: #f2f4ff;
}

.language-toggle,
.menu-toggle {
  border-color: rgba(190, 194, 235, .16);
  color: #e7e9f5;
  background: rgba(25, 29, 49, .78);
}

.language-toggle i {
  background: rgba(190, 194, 235, .2);
}

.hero {
  background: radial-gradient(circle at 13% 12%, rgba(52, 149, 196, .24), transparent 31%), radial-gradient(circle at 86% 16%, rgba(111, 86, 223, .28), transparent 34%), linear-gradient(180deg, #0b0e1a 0%, #0e1322 57%, #080b14 100%);
}

.eyebrow {
  border-color: rgba(154, 146, 255, .2);
  color: #aaa4ff;
  background: rgba(25, 28, 50, .65);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.hero h1 span {
  background: linear-gradient(90deg, #aaa3ff, #66dcce);
  background-clip: text;
  color: transparent;
}

.hero-copy>p,
.hero-points span,
.product-caption {
  color: #a8afc2;
}

.hero-points i {
  color: #9b94ff;
  background: rgba(138, 131, 255, .14);
}

.button-link {
  color: #aaa4ff;
}

.product-image {
  border-color: rgba(223, 226, 255, .14);
  background: #060b0f;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .52), 0 0 0 1px rgba(146, 135, 255, .12);
}

.product-caption small {
  color: #6f788d;
}

.trust-bar {
  background: #080b14;
}

.trust-bar>div {
  border-color: rgba(185, 188, 237, .13);
  background: rgba(17, 21, 37, .84);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.trust-bar>div>div {
  border-color: rgba(185, 188, 237, .12);
}

.trust-bar small {
  color: #8b93a8;
}

.intro-section {
  background: #080b14;
}

.section-heading>span,
.split-heading>div>span,
.section-kicker,
.faq-intro>span {
  color: #9e97ff;
}

.section-heading h2 span,
.control-copy h2 span,
.faq-intro h2 span {
  color: #9e97ff;
}

.section-heading>p,
.split-heading>p,
.benefit-grid p,
.feature-grid p,
.steps p,
.faq-intro p,
.faq-answer p {
  color: #969eb3;
}

.benefit-grid article {
  border-color: rgba(181, 184, 232, .12);
  background: linear-gradient(145deg, rgba(21, 25, 43, .95), rgba(13, 17, 31, .92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.benefit-grid article:hover {
  border-color: rgba(138, 131, 255, .38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.simple-icon {
  background: linear-gradient(135deg, rgba(138, 131, 255, .2), rgba(82, 217, 189, .14));
}

.features-section {
  background: radial-gradient(circle at 12% 30%, rgba(111, 91, 224, .12), transparent 30%), radial-gradient(circle at 90% 70%, rgba(54, 175, 163, .1), transparent 28%), #0d1120;
}

.features-section::before {
  background: rgba(107, 95, 235, .08);
}

.feature-grid article {
  border-color: rgba(181, 184, 232, .12);
  background: rgba(18, 22, 39, .82);
  box-shadow: 0 17px 45px rgba(0, 0, 0, .2);
}

.feature-grid article:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
}

.feature-grid article>span {
  color: #aaa4ff;
  background: linear-gradient(135deg, rgba(138, 131, 255, .22), rgba(82, 217, 189, .14));
}

.feature-grid small {
  color: #6e768b;
}

.pricing-section {
  background: #080b14;
}

.pricing-card {
  border-color: rgba(181, 184, 232, .12);
  background: linear-gradient(145deg, rgba(21, 25, 43, .95), rgba(13, 17, 31, .92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.pricing-card.featured {
  border-color: rgba(138, 131, 255, .65);
  background: linear-gradient(155deg, rgba(78, 69, 180, .34), rgba(20, 57, 68, .45));
  box-shadow: 0 24px 65px rgba(0, 0, 0, .34);
}

.pricing-card-head small {
  color: #aaa4ff;
}

.pricing-button {
  border-color: rgba(154, 146, 255, .34);
  color: #aaa4ff;
}

.workflow-section {
  background: #0d1120;
}

.steps article {
  border-color: rgba(181, 184, 232, .12);
  background: #111525;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .2);
}

.control-section {
  background: #080b14;
}

.control-layout {
  border: 1px solid rgba(183, 187, 239, .11);
  background: radial-gradient(circle at 80% 10%, rgba(92, 130, 255, .24), transparent 38%), linear-gradient(135deg, #1b193b, #102e3c);
  box-shadow: 0 35px 85px rgba(0, 0, 0, .35);
}

.trial-section {
  background: radial-gradient(circle at 15% 20%, rgba(95, 224, 194, .2), transparent 28%), linear-gradient(120deg, #554dd9, #2f65bd 55%, #1d7c7e);
}

.button-white {
  color: #4e46ce;
  background: #fff;
}

.faq-section {
  background: #0d1120;
}

.faq-list {
  border-color: rgba(181, 184, 232, .12);
  background: rgba(17, 21, 37, .82);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
}

.faq-item {
  border-color: rgba(181, 184, 232, .11);
}

.faq-item button {
  color: #eef0fb;
}

.site-footer {
  border-color: rgba(181, 184, 232, .1);
  background: #070911;
}

.footer-top p,
.footer-top nav,
.footer-bottom {
  color: #81899e;
}

.footer-bottom {
  border-color: rgba(181, 184, 232, .1);
}

.scroll-top {
  right: 22px;
  bottom: 88px;
}

.telegram-link {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  background: #229ed9;
  box-shadow: 0 16px 42px rgba(10, 91, 145, .38);
  transition: transform .2s, background .2s, box-shadow .2s;
}

.telegram-link:hover {
  transform: translateY(-3px) scale(1.03);
  background: #168dcc;
  box-shadow: 0 20px 50px rgba(10, 91, 145, .5);
}

.telegram-link svg {
  display: block;
  width: 28px;
  height: 28px;
}

@media (max-width: 840px) {
  .mobile-nav {
    color: #eef0fb;
    background: rgba(10, 13, 24, .97);
  }

  .mobile-nav a {
    border-color: rgba(181, 184, 232, .13);
  }

  .mobile-nav .mobile-cta {
    color: #fff;
  }
}

@media (max-width: 580px) {
  .telegram-link {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .scroll-top {
    right: 14px;
    bottom: 76px;
  }
}

/* Compact download call-to-action */
.trial-section.download-section {
  padding: 62px 0;
}

.download-section .trial-card h2 {
  font-size: clamp(34px, 4vw, 36px);
}

.download-section .trial-card p {
  margin-top: 14px;
}

@media (max-width: 580px) {
  .trial-section.download-section {
    padding: 48px 0;
  }
}

.download-link {
  min-height: 66px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(22, 28, 90, .24), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.download-link:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 20px 46px rgba(22, 28, 90, .32);
}

.download-link svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  fill: #5149d5;
}

.download-button-copy {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
}

.download-button-copy strong {
  font-size: 14px;
  line-height: 1.25;
}

.download-button-copy small {
  color: #7773a9;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.25;
}

.download-link>b {
  color: #7169ec;
  font-size: 18px;
}

.trial-action .download-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, .82);
}

.download-trust i {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #173f53;
  background: #9ff0de;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}