/* Trade Manager MT5 landing page
   Custom light design inspired by modern SaaS and trading templates.
   No external CSS framework or web fonts required. */

:root {
  --bg: #f8f9fd;
  --surface: #ffffff;
  --surface-soft: #e9edff;
  --text: #11131a;
  --muted: #606779;
  --border: #dce1f2;
  --primary: #4c5cff;
  --primary-dark: #3343e8;
  --accent: #f2b705;
  --accent-soft: #fff4c7;
  --dark: #171b34;
  --white: #ffffff;
  --success: #147d64;
  --shadow-sm: 0 10px 30px rgba(26, 31, 68, 0.08);
  --shadow-md: 0 22px 55px rgba(26, 31, 68, 0.14);
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0; min-width: 320px; background: var(--bg); color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.65; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.12; }
h1 { margin-bottom: 24px; font-size: clamp(3.3rem, 6.5vw, 6.6rem); font-weight: 780; }
h1 em { color: var(--primary); font-style: normal; }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4.2vw, 4rem); font-weight: 760; }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: 112px; }
.section-soft { background: var(--surface-soft); }
.section-dark {
  overflow: hidden;
  background: radial-gradient(circle at 85% 10%, rgba(76,92,255,.26), transparent 34%),
              radial-gradient(circle at 10% 90%, rgba(242,183,5,.14), transparent 35%), var(--dark);
  color: var(--white);
}
.section-dark p { color: #c7cbe1; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px;
  border-radius: 8px; background: var(--text); color: var(--white); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100; min-height: var(--header-height);
  border-bottom: 1px solid rgba(220,225,242,.85); background: rgba(248,249,253,.9);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: var(--header-height); display: flex; align-items: center;
  justify-content: space-between; gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 7px 12px rgba(22, 27, 52, 0.16));
}
.brand-mark {
  width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(145deg, var(--accent), #ffd648); color: #171b34;
  font-size: .9rem; font-weight: 900; box-shadow: 0 10px 25px rgba(242,183,5,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.06rem; letter-spacing: -.02em; }
.brand-text small {
  margin-top: 5px; color: var(--muted); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .11em;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { position: relative; font-size: .93rem; font-weight: 650; }
.main-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--primary); transition: right 180ms ease;
}
.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after { right: 0; }

.nav-toggle {
  width: 46px; height: 42px; display: none; border: 0; border-radius: 10px;
  background: var(--surface-soft); cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px; display: block; margin: 5px auto;
  border-radius: 10px; background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 13px 23px; border: 1px solid transparent; border-radius: 12px;
  font-weight: 760; line-height: 1.2; text-align: center;
  box-shadow: 0 10px 25px rgba(30,35,70,.08);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30,35,70,.14); }
.button:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(76,92,255,.35); outline-offset: 3px;
}
.button-small { min-height: 45px; padding: 10px 18px; border-radius: 10px; font-size: .9rem; }
.button-primary { background: var(--primary); color: var(--white); }
.button-primary:hover { background: var(--primary-dark); }
.button-secondary { border-color: var(--primary); background: var(--surface); color: var(--primary); }
.button-light { background: var(--white); color: var(--dark); }
.button-outline-light { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); box-shadow: none; }
.button-block { width: 100%; }

.eyebrow {
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
  color: var(--primary); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow span { width: 30px; height: 3px; display: inline-block; border-radius: 20px; background: var(--accent); }
.eyebrow-light { color: #bfc6ff; }

.section-heading { max-width: 790px; margin-bottom: 56px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 680px; font-size: 1.07rem; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.hero {
  overflow: hidden; padding-top: 76px;
  background: linear-gradient(rgba(76,92,255,.035) 1px, transparent 1px),
              linear-gradient(90deg, rgba(76,92,255,.035) 1px, transparent 1px),
              radial-gradient(circle at 78% 20%, rgba(76,92,255,.13), transparent 30%),
              radial-gradient(circle at 15% 20%, rgba(242,183,5,.08), transparent 28%), var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}
.hero::after {
  content: ""; position: absolute; top: 90px; right: -120px; width: 430px; height: 430px;
  border: 1px solid rgba(76,92,255,.12); border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr);
  align-items: center; gap: 60px;
}
.hero-lead { max-width: 650px; margin-bottom: 32px; font-size: clamp(1.08rem,1.7vw,1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0; padding: 0;
  list-style: none; color: var(--muted); font-size: .9rem; font-weight: 650;
}
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--success); font-weight: 900; }
.hero-visual { position: relative; min-width: 0; }

.image-frame {
  overflow: hidden; padding: 10px; border: 1px solid rgba(76,92,255,.18);
  border-radius: var(--radius-lg); background: rgba(255,255,255,.78); box-shadow: var(--shadow-md);
}
.image-frame img { width: 100%; height: auto; border-radius: calc(var(--radius-lg) - 8px); }
.image-frame-hero {
  transform: perspective(1600px) rotateY(-5deg) rotateX(1deg); transform-origin: center left;
}
.image-frame-dark {
  border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.06);
  box-shadow: 0 30px 75px rgba(0,0,0,.28);
}

.floating-card {
  position: absolute; min-width: 138px; padding: 13px 17px;
  border: 1px solid rgba(76,92,255,.16); border-radius: 15px;
  background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px);
}
.floating-card span {
  display: block; color: var(--muted); font-size: .73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.floating-card strong { font-size: 1.25rem; }
.floating-card-risk { top: 18%; left: -5%; }
.floating-card-lot { right: -2%; bottom: 12%; }

.trust-strip {
  position: relative; z-index: 2; margin-top: 78px; display: grid;
  grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--border);
  border-radius: var(--radius-md); background: rgba(255,255,255,.84); box-shadow: var(--shadow-sm);
}
.trust-strip > div {
  min-height: 105px; display: flex; flex-direction: column; justify-content: center;
  padding: 23px 28px; border-right: 1px solid var(--border);
}
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { font-size: 1.04rem; }
.trust-strip span { color: var(--muted); font-size: .86rem; }

.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.problem-card {
  min-height: 310px; padding: 34px; border: 1px solid rgba(76,92,255,.1);
  border-radius: var(--radius-md); background: rgba(255,255,255,.72);
  box-shadow: 0 18px 45px rgba(31,39,92,.06);
}
.problem-card .number {
  width: 48px; height: 48px; margin-bottom: 34px; display: grid; place-items: center;
  border-radius: 50%; background: var(--accent-soft); color: #836500; font-size: .8rem; font-weight: 900;
}
.problem-card p { margin-bottom: 0; }

.split-layout, .showcase-grid, .mobile-grid, .markets-grid, .faq-grid {
  display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: center; gap: 76px;
}
.split-copy > p:not(.eyebrow), .showcase-copy > p:not(.eyebrow),
.mobile-copy > p:not(.eyebrow), .markets-copy > p:not(.eyebrow) { font-size: 1.05rem; }

.steps { margin: 38px 0 0; padding: 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding-bottom: 24px; }
.steps li:not(:last-child)::after {
  content: ""; position: absolute; top: 48px; bottom: 4px; left: 23px; width: 1px; background: var(--border);
}
.steps li > span {
  position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--primary); color: var(--white); font-weight: 850;
}
.steps h3 { margin-bottom: 5px; font-size: 1.1rem; }
.steps p { margin-bottom: 0; font-size: .94rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card {
  min-height: 280px; padding: 29px; border: 1px solid rgba(76,92,255,.08);
  border-radius: var(--radius-md); background: rgba(255,255,255,.74);
  box-shadow: 0 14px 35px rgba(29,35,82,.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.feature-card:hover {
  transform: translateY(-5px); border-color: rgba(76,92,255,.24);
  box-shadow: 0 22px 48px rgba(29,35,82,.1);
}
.feature-icon {
  width: 52px; height: 52px; margin-bottom: 30px; display: grid; place-items: center;
  border-radius: 15px; background: var(--accent-soft); color: #5d4a00; font-size: .82rem; font-weight: 900;
}
.feature-card p { margin-bottom: 0; font-size: .94rem; }

.showcase { background: radial-gradient(circle at 0 50%, rgba(242,183,5,.08), transparent 28%), var(--bg); }
.check-list { display: grid; gap: 13px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: var(--text); font-weight: 630; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; background: #daf4ec; color: var(--success); font-size: .78rem; font-weight: 900;
}
.text-link { color: var(--primary); font-weight: 800; }
.text-link span { display: inline-block; margin-left: 7px; transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.mobile-grid { position: relative; }
.mobile-copy h2 { max-width: 700px; }
.mobile-flow { display: grid; gap: 14px; margin: 30px 0; }
.mobile-flow > div {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.055);
}
.mobile-flow strong {
  width: 31px; height: 31px; display: grid; place-items: center; flex-shrink: 0;
  border-radius: 50%; background: var(--accent); color: var(--dark); font-size: .82rem;
}
.mobile-flow span { color: var(--white); font-weight: 660; }
.note { padding: 16px 18px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.05); font-size: .88rem !important; }

.comparison-wrap {
  overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.comparison-table th, .comparison-table td { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.comparison-table thead th { background: var(--dark); color: var(--white); font-size: .92rem; }
.comparison-table tbody th { width: 24%; color: var(--text); font-size: .94rem; }
.comparison-table td { color: var(--muted); }
.comparison-table td:last-child { background: rgba(76,92,255,.035); color: var(--text); font-weight: 660; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }

.market-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.market-cards > div {
  min-height: 105px; display: flex; align-items: center; gap: 15px; padding: 20px;
  border: 1px solid rgba(76,92,255,.1); border-radius: 15px; background: rgba(255,255,255,.76);
}
.market-cards span {
  width: 45px; height: 45px; display: grid; place-items: center; flex-shrink: 0;
  border-radius: 12px; background: var(--surface-soft); color: var(--primary); font-size: .72rem; font-weight: 900;
}
.market-cards strong { font-size: .96rem; }

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

.review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(76, 92, 255, .12);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(29, 35, 82, .07);
}

.review-source {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6c5400;
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.review-card blockquote {
  flex: 1;
  margin: 0 0 24px;
  color: var(--text);
  font-size: .96rem;
  line-height: 1.7;
}

.review-card footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.review-card footer strong {
  font-size: .92rem;
}

.review-card footer span {
  color: var(--muted);
  font-size: .76rem;
  white-space: nowrap;
}

.reviews-link-wrap {
  margin-top: 34px;
  text-align: center;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 22px; }
.price-card {
  position: relative; display: flex; flex-direction: column; padding: 34px;
  border: 1px solid rgba(76,92,255,.12); border-radius: var(--radius-md);
  background: rgba(255,255,255,.82); box-shadow: 0 18px 45px rgba(29,35,82,.06);
}
.price-card-featured {
  border-color: var(--primary); background: var(--surface); box-shadow: var(--shadow-md); transform: translateY(-10px);
}
.popular {
  position: absolute; top: 18px; right: 18px; padding: 7px 11px; border-radius: 999px;
  background: var(--accent); color: var(--dark); font-size: .68rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em;
}
.price-label { margin-bottom: 12px; color: var(--text); font-weight: 800; }
.price { display: flex; align-items: baseline; gap: 7px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price strong { font-size: 2.9rem; letter-spacing: -.05em; }
.price span { color: var(--muted); font-size: .87rem; }
.price-card ul { flex: 1; display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 25px; color: var(--muted); font-size: .92rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.pricing-note { max-width: 800px; margin: 34px auto 0; text-align: center; font-size: .82rem; }

.mt4-version-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 30px 34px;
  border: 1px solid rgba(76,92,255,.16);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 38px rgba(29,35,82,.06);
}

.mt4-version-box h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.mt4-version-box p {
  max-width: 720px;
  margin-bottom: 0;
}

.mt4-kicker {
  margin-bottom: 8px !important;
  color: var(--primary) !important;
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 760;
}


.faq-grid { align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 30px); }
.faq-intro p:not(.eyebrow) { max-width: 480px; }
.accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; }
.faq-item button {
  width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 20px 0; border: 0; background: transparent;
  color: var(--text); text-align: left; font-weight: 760; cursor: pointer;
}
.faq-item button span {
  width: 30px; height: 30px; display: grid; place-items: center; flex-shrink: 0;
  border-radius: 50%; background: var(--accent-soft); color: #765b00;
}
.faq-answer { padding: 0 46px 22px 0; }
.faq-answer p { margin-bottom: 0; font-size: .95rem; }

.final-cta {
  padding-block: 80px;
  background: radial-gradient(circle at 90% 10%, rgba(76,92,255,.45), transparent 38%), var(--dark);
  color: var(--white);
}
.final-cta-inner { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 50px; }
.final-cta h2 { max-width: 780px; margin-bottom: 0; font-size: clamp(2.1rem,4vw,3.7rem); }
.final-actions { display: flex; flex-direction: column; gap: 12px; }

.site-footer { padding-top: 76px; background: #eef0ff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,.8fr); gap: 55px; padding-bottom: 55px; }
.footer-brand p { max-width: 330px; margin-top: 22px; font-size: .91rem; }
.footer-grid h2 { margin-bottom: 20px; font-size: 1rem; letter-spacing: -.01em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid > div:not(.footer-brand) a { color: var(--muted); font-size: .9rem; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--primary); }
.footer-bottom {
  min-height: 85px; display: flex; align-items: center; justify-content: space-between;
  gap: 30px; border-top: 1px solid #d4d8ef;
}
.footer-bottom p { margin: 0; font-size: .76rem; }
.footer-bottom p:last-child { max-width: 620px; text-align: right; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --container: 940px; }
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr); gap: 35px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .split-layout, .showcase-grid, .mobile-grid, .markets-grid, .faq-grid { gap: 50px; }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .section { padding-block: 84px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; display: none;
    align-items: stretch; flex-direction: column; gap: 4px; padding: 18px;
    border: 1px solid var(--border); border-radius: 0 0 18px 18px;
    background: rgba(248,249,253,.98); box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .button { margin-top: 7px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 58px; }
  .hero-grid, .split-layout, .showcase-grid, .mobile-grid, .markets-grid, .faq-grid, .final-cta-inner { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-copy { max-width: 730px; }
  .hero-visual { width: min(100%,720px); margin-inline: auto; }
  .image-frame-hero { transform: none; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .problem-grid, .review-grid, .pricing-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; }
  .price-card-featured { transform: none; }

  .mt4-version-box {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mt4-version-box .button {
    width: 100%;
  }
  .showcase-copy { order: -1; }
  .faq-intro { position: static; }
  .final-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 68px; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(3rem,16vw,4.4rem); }
  h2 { font-size: clamp(2rem,10.5vw,3rem); }
  .brand-logo { width: 50px; height: 50px; }
  .brand-text small { display: none; }
  .hero-actions, .final-actions { flex-direction: column; }
  .hero-actions .button, .final-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .floating-card { position: static; display: inline-block; margin: 12px 8px 0 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div, .trust-strip > div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .feature-grid, .market-cards { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .problem-card, .feature-card, .price-card { padding: 26px; }
  .section-heading { margin-bottom: 40px; }
  .comparison-wrap { margin-inline: -14px; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 25px; }
  .footer-bottom p:last-child { text-align: left; }
}


body.trial-dialog-open {
  overflow: hidden;
}

.trial-dialog {
  width: min(calc(100% - 24px), 620px);
  max-height: calc(100dvh - 16px);
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  border-radius: 24px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 32px 90px rgba(17, 19, 40, .28);
  scrollbar-width: thin;
  scrollbar-color: #aeb5cd transparent;
}

.trial-dialog::backdrop {
  background: rgba(15, 18, 38, .68);
  backdrop-filter: blur(5px);
}

.trial-dialog.is-fallback-open {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 1000;
  display: block;
  transform: translate(-50%, -50%);
}

.trial-dialog::-webkit-scrollbar {
  width: 10px;
}

.trial-dialog::-webkit-scrollbar-track {
  background: transparent;
}

.trial-dialog::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: #aeb5cd;
  background-clip: padding-box;
}

.trial-dialog-inner {
  position: relative;
  padding: 30px 34px 28px;
  overflow: visible;
}

.trial-dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.trial-dialog-header {
  padding-right: 46px;
}

.trial-dialog-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 2.8rem);
}

.trial-dialog-header > p:last-child {
  margin-bottom: 18px;
  font-size: .9rem;
}

.trial-form {
  display: grid;
  gap: 13px;
}

.trial-field {
  display: grid;
  gap: 8px;
}

.trial-field label,
.trial-platform legend {
  color: var(--text);
  font-size: .9rem;
  font-weight: 780;
}

.trial-field input {
  width: 100%;
  min-height: 49px;
  padding: 10px 14px;
  border: 1px solid #cfd5e8;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.trial-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(76, 92, 255, .12);
}

.trial-field input[aria-invalid="true"] {
  border-color: #c53d55;
  box-shadow: 0 0 0 4px rgba(197, 61, 85, .1);
}

.trial-field-hint {
  margin: 0;
  font-size: .76rem;
}

.trial-platform {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.trial-platform legend {
  grid-column: 1 / -1;
  margin-bottom: 1px;
}

.trial-platform-hint {
  grid-column: 1 / -1;
  margin: -2px 0 2px;
  font-size: .76rem;
}

.trial-platform-card {
  position: relative;
  cursor: pointer;
}

.trial-platform-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trial-platform-card span {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 17px 15px 49px;
  border: 1px solid #cfd5e8;
  border-radius: 13px;
  background: #fff;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.trial-platform-card span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 20px;
  height: 20px;
  border: 2px solid #aab1c9;
  border-radius: 5px;
  background: #fff;
  transform: translateY(-50%);
}

.trial-platform-card input:checked + span {
  border-color: var(--primary);
  background: rgba(76, 92, 255, .055);
  box-shadow: 0 0 0 3px rgba(76, 92, 255, .08);
}

.trial-platform-card input:checked + span::before {
  border-color: var(--primary);
  background: var(--primary);
}

.trial-platform-card input:checked + span::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 22px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  transform: translateY(-54%);
}

.trial-platform-card input:focus-visible + span {
  outline: 3px solid rgba(76, 92, 255, .3);
  outline-offset: 3px;
}

.trial-platform-card strong {
  color: var(--text);
  font-size: .92rem;
}

.trial-platform-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .74rem;
}

.trial-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  cursor: pointer;
}

.trial-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}


.trial-consent.is-invalid {
  padding: 10px;
  border: 1px solid #efb7c0;
  border-radius: 10px;
  background: #fff0f2;
}

.trial-platform.is-invalid {
  padding: 10px;
  border: 1px solid #efb7c0;
  border-radius: 12px;
  background: #fff0f2;
}

.trial-consent a {
  color: var(--primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.trial-form-actions p {
  margin: 0;
  text-align: center;
  font-size: .74rem;
}

.trial-submit-loading {
  display: none;
}

.trial-form.is-sending .trial-submit-label {
  display: none;
}

.trial-form.is-sending .trial-submit-loading {
  display: inline;
}

.trial-form.is-sending button[type="submit"] {
  cursor: wait;
  opacity: .8;
}

.trial-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 620px) {
  .trial-dialog {
    width: min(calc(100% - 10px), 620px);
    max-height: calc(100dvh - 8px);
    border-radius: 19px;
  }

  .trial-dialog-inner {
    padding: 22px 20px 18px;
  }

  .trial-dialog-header {
    padding-right: 35px;
  }

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

  .trial-platform legend,
  .trial-platform-hint {
    grid-column: auto;
  }
}


.form-message-dialog {
  width: min(calc(100% - 28px), 430px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(17, 19, 40, .34);
}

.form-message-dialog::backdrop {
  background: rgba(15, 18, 38, .54);
  backdrop-filter: blur(3px);
}

.form-message-dialog-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
}

.form-message-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f2;
  color: #a22d43;
  font-size: 1.55rem;
  font-weight: 900;
}

.form-message-dialog.is-success .form-message-icon {
  background: #e4f7f0;
  color: #11644f;
}

.form-message-dialog h2 {
  margin: 0;
  font-size: 1.55rem;
}

.form-message-dialog p {
  margin: 0;
  font-size: .92rem;
}

.form-message-dialog .button {
  min-width: 130px;
  margin-top: 4px;
}

@media (max-height: 850px) {
  .trial-dialog-inner {
    padding: 22px 30px 20px;
  }

  .trial-dialog-header h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 5vw, 2.35rem);
  }

  .trial-dialog-header > p:last-child {
    margin-bottom: 14px;
    font-size: .86rem;
  }

  .trial-form {
    gap: 11px;
  }

  .trial-field {
    gap: 5px;
  }

  .trial-field input {
    min-height: 46px;
    padding: 9px 13px;
  }

  .trial-field-hint,
  .trial-platform-hint {
    font-size: .7rem;
  }

  .trial-platform {
    gap: 9px;
  }

  .trial-platform-card span {
    min-height: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .trial-consent {
    font-size: .72rem;
  }

  .trial-form-actions {
    gap: 6px;
  }
}

@media (max-height: 690px) {
  .trial-dialog-inner {
    padding: 18px 26px 16px;
  }

  .trial-dialog-header .eyebrow {
    margin-bottom: 10px;
  }

  .trial-dialog-header h2 {
    font-size: 1.75rem;
  }

  .trial-dialog-header > p:last-child {
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .trial-form {
    gap: 9px;
  }

  .trial-platform-card span {
    min-height: 56px;
  }
}



body.cookie-consent-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 15, 34, .68);
  backdrop-filter: blur(6px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(100%, 560px);
  display: grid;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(76, 92, 255, .18);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(8, 11, 28, .38);
}

.cookie-banner-copy {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.cookie-banner-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: #705800;
  font-size: 1.45rem;
  font-weight: 900;
}

.cookie-banner h2 {
  margin: 0 0 9px;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.cookie-banner p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.cookie-banner p a {
  color: var(--primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cookie-banner-actions .button {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  font-size: .86rem;
}

@media (max-width: 560px) {
  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-inner {
    gap: 20px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .cookie-banner-copy {
    grid-template-columns: 1fr;
  }

  .cookie-banner-icon {
    width: 46px;
    height: 46px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }
}



.product-image-button {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
}

.product-image-button:focus-visible {
  outline: 4px solid rgba(76, 92, 255, .34);
  outline-offset: 5px;
}

.product-image-button img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 220ms ease;
}

.product-image-button:hover img {
  transform: scale(1.012);
}

.product-image-zoom-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 19, 40, .84);
  color: #fff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .02em;
  pointer-events: none;
}

.hero-image-button {
  border-radius: inherit;
}

.product-feature-figure {
  margin: 0;
}

.feature-image-button {
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(29, 35, 82, .12);
}

.product-feature-image {
  width: 100%;
  height: auto;
}

.product-feature-figure figcaption {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 640px) {
  .product-image-zoom-label {
    right: 10px;
    bottom: 10px;
    padding: 7px 10px;
    font-size: .68rem;
  }
}


.mobile-product-figure {
  margin: 0;
}

.mobile-image-button {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .32);
}

.mobile-product-image {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-product-figure figcaption {
  max-width: 700px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  line-height: 1.6;
  text-align: center;
}

.workflow-figure {
  margin: 0;
}

.workflow-image-button {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  cursor: zoom-in;
  box-shadow: 0 22px 58px rgba(29, 35, 82, .12);
}

.workflow-image-button:focus-visible {
  outline: 4px solid rgba(76, 92, 255, .32);
  outline-offset: 5px;
}

.workflow-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 220ms ease;
}

.workflow-image-button:hover .workflow-image {
  transform: scale(1.012);
}

.workflow-zoom-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 19, 40, .84);
  color: #fff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .02em;
  pointer-events: none;
}

.workflow-figure figcaption {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
  text-align: center;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 24px;
  overflow: auto;
  border: 0;
  background: rgba(8, 11, 28, .95);
}

.image-lightbox::backdrop {
  background: rgba(8, 11, 28, .95);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
}

.image-lightbox-content {
  width: min(96vw, 1700px);
  min-height: calc(100vh - 48px);
  display: grid;
  place-items: center;
}

.image-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, .22);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .65);
  outline-offset: 3px;
}

body.image-lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .workflow-zoom-label {
    right: 10px;
    bottom: 10px;
    padding: 7px 10px;
    font-size: .68rem;
  }

  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox-content {
    min-height: calc(100vh - 24px);
  }

  .image-lightbox img {
    max-height: calc(100vh - 24px);
    border-radius: 9px;
  }

  .image-lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
