:root {
  --header-height: 73px;
  --bg: #f7f6f3;
  --paper: #ffffff;
  --ink: #161616;
  --muted: #6f6f6f;
  --line: #e3e0da;
  --soft: #eeeae3;
  --accent: #c6a97b;
  --orange: #ff5a00;
  --green: #2f9b58;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}
body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 6vw;
  background: rgba(247, 246, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  transition: transform .3s ease-out, box-shadow .25s ease;
  will-change: transform;
}

.header.header-hidden {
  transform: translateY(calc(-100% - 1px));
}

.header.menu-open {
  transform: translateY(0);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .04em; }
.logo-image { width: 132px; height: auto; display: block; }
.logo-mark { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 8px; }
.nav { display: flex; align-items: center; gap: 34px; color: #333; font-size: 15px; }
.nav a:hover, .section-head a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 7px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.btn-dark { background: #111; color: #fff; border-color: #111; }
.btn-light { background: #fff; color: #111; }
.btn.full { width: 100%; }
.header-login-link {
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  border-color: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.header-login-link:hover {
  color: #f05c14;
  background: rgba(255, 255, 255, .58);
  box-shadow: none;
}
.dashboard-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  min-width: 190px;
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .32) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #ff7624 0%, #f85c00 52%, #dc4f00 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .48),
    inset 0 -1px 0 rgba(116, 20, 0, .18),
    0 10px 24px rgba(248, 92, 0, .18);
}
.dashboard-link::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 48%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .38), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}
.dashboard-link::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -42%;
  width: 52%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  transform: rotate(22deg) translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
  z-index: -1;
}
.dashboard-link:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .38) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #ff8133 0%, #f85c00 50%, #d84c00 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .56),
    inset 0 -1px 0 rgba(116, 20, 0, .2),
    0 14px 30px rgba(248, 92, 0, .24);
}
.dashboard-link:hover::after {
  transform: rotate(22deg) translateX(390%);
}

@media (max-width: 1320px) and (min-width: 1051px) {
  .header {
    gap: 18px;
    padding-inline: 4vw;
  }
  .nav {
    gap: 24px;
    font-size: 14px;
  }
  .header-actions {
    gap: 8px;
  }
  .dashboard-link {
    min-width: 172px;
    padding-inline: 14px;
    font-size: 13px;
  }
  .header-login-link {
    padding-inline: 10px;
  }
}

.main-banner {
  width: 100%;
  margin: 0;
  background: #eee8df;
  overflow: hidden;
}

.main-banner-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1641 / 859;
  overflow: hidden;
  background: #eee8df;
}

.main-banner-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity .42s ease;
}

.main-banner-frame.is-active {
  opacity: 1;
}

.main-banner-copy {
  position: absolute;
  left: 6vw;
  top: clamp(28px, 5vw, 74px);
  z-index: 2;
  max-width: min(560px, 44vw);
  color: #8f684f;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .72);
}

.main-banner-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #f05c14;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-banner-copy strong {
  display: block;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.main-banner-copy [data-banner-product] {
  color: #f05c14;
}

.door-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  background: #fff;
}

.door-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .8) 48%, rgba(255, 255, 255, .72) 100%);
}

.door-showcase-parallax {
  position: absolute;
  inset: -12% -6%;
  z-index: -1;
  pointer-events: none;
}

.door-showcase-parallax-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .58;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.door-showcase-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.door-showcase-copy h2 {
  margin: 0 0 24px;
  color: #8f684f;
  font-size: clamp(26px, 3.1vw, 43px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.door-showcase-copy p {
  max-width: none;
  margin: 0;
  color: #666;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.5;
  white-space: nowrap;
}

.door-showcase-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1664 / 960;
  overflow: hidden;
  border-radius: 28px;
  border: 0;
  background: #eee8df;
  box-shadow: 0 30px 80px rgba(22, 24, 29, .09);
}

.door-showcase-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .42s ease;
}

.door-showcase-frame.is-active {
  opacity: 1;
}

.visual-how-experiment {
  overflow: hidden;
  background: #fff;
}

.visual-how-title {
  margin-bottom: clamp(26px, 3vw, 42px);
  text-align: center;
  font-size: clamp(28px, 3.1vw, 43px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.visual-how-screenshot {
  width: 100%;
  max-width: 1660px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.rug-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  background: #f7f6f3;
}

.rug-showcase-copy {
  max-width: 560px;
}

.rug-showcase-copy h2 {
  margin: 0;
  color: #8f684f;
  font-size: clamp(26px, 3.1vw, 43px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.rug-showcase-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  border-radius: 22px;
  background: #eee8df;
}

.rug-showcase-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .42s ease;
}

.rug-showcase-frame.is-active {
  opacity: 1;
}

.section { padding: 76px 6vw; }
.eyebrow { color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .09em; }
h1 { margin: 14px 0 24px; font-size: clamp(42px, 5vw, 72px); line-height: 1.05; letter-spacing: -.05em; }
h2 { margin: 0 0 30px; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.03em; }
h3 { margin: 0 0 12px; font-size: 20px; }

.how {
  padding-top: clamp(52px, 5vw, 78px);
  padding-bottom: clamp(60px, 6vw, 92px);
  background: #fff;
  text-align: center;
  border-block: 1px solid var(--line);
}
.how h2 {
  margin-bottom: clamp(48px, 5vw, 72px);
  font-size: clamp(32px, 3vw, 41px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.05em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 5vw, 78px);
  max-width: 1240px;
  margin: 0 auto;
}
.step { position: relative; min-width: 0; }
.how-step-media {
  position: relative;
  z-index: 1;
  height: clamp(190px, 17vw, 245px);
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(240, 92, 20, .1);
}

.how-step-media-upload,
.how-step-media-compare {
  width: min(100%, 360px);
}

.how-step-media-upload img,
.how-step-media-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.how-step-media-palette {
  width: min(100%, 340px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  align-content: center;
  justify-items: center;
  padding: 18px 20px;
  box-shadow: none;
}

.how-step-media-palette img {
  width: 100%;
  max-width: 70px;
  height: 92px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 16px rgba(22, 24, 29, .08));
}

.how-step-media-compare .how-compare-after {
  clip-path: inset(0 0 0 50%);
}

.how-compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(58, 58, 58, .88);
}

.how-compare-line::after {
  content: "‹›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff6c00;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -5px;
}

.icon {
  position: relative;
  z-index: 1;
  width: clamp(90px, 7vw, 105px);
  height: clamp(90px, 7vw, 105px);
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #fff7ef;
  color: #ef6c1b;
}
.icon svg { width: 78%; height: 78%; }
.step-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff9c24, #ff6c00);
  color: #fff;
  font-size: 18px;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
.step strong {
  display: block;
  min-height: 52px;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.step p {
  margin: 12px auto 0;
  color: #666970;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
}

.section-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.demo-grid { display: grid; grid-template-columns: 1fr 370px; gap: 28px; align-items: stretch; }
.demo-grid > .comparison-slider { min-height: 480px; }

.tag { position: absolute; z-index: 3; left: 20px; top: 20px; padding: 9px 14px; border-radius: 8px; background: #fff; font-weight: 800; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.estimate { padding: 26px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.product { display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.product strong { display: block; font-size: 14px; }
.product span { color: var(--muted); font-size: 13px; }
.product em { color: var(--green); font-style: normal; font-size: 12px; white-space: nowrap; }
.thumb { height: 48px; border-radius: 8px; background: var(--soft); }
.sofa-thumb { background: #d4c3ad; } .table-thumb { background: #9b7142; } .rug-thumb { background: #ded3c2; } .lamp-thumb { background: #c8a16d; } .shelf-thumb { background: #8f6a44; }
.chair-thumb { width: 58px; height: 48px; border-radius: 8px; object-fit: cover; }
.total { display: flex; justify-content: space-between; align-items: center; margin: 22px 0; font-size: 18px; }

.integration-grid, .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.integration-card, .price-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 35px rgba(0,0,0,.04); }
.integration-card p, .price-card p, .cta p, .footer p { color: var(--muted); line-height: 1.55; }
.integration-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr); }
.integration h2,
.pricing h2 {
  min-height: 0;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(25px, 2.25vw, 32px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.integration-card .btn { width: 100%; margin-top: 18px; }
.big { margin: 0 0 20px; }
.price-card strong { display: block; font-size: 32px; margin: 16px 0; }
.featured { border-color: #111; transform: translateY(-10px); }

.integration.section,
.pricing.section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.pricing.section {
  background: #fbfbfb;
}

.pricing h2 {
  margin-bottom: 10px;
  font-size: clamp(29px, 3.4vw, 46px);
  font-weight: 600;
  color: #202020;
}

.pricing-lead {
  margin: 0 0 48px;
  color: #737373;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
}

.integration.section {
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .98), rgba(247, 246, 243, .94) 68%, rgba(243, 242, 239, .92));
}

.integration h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.integration-grid {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(290px, 340px));
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.integration-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 34px 34px 28px;
  border: 1px solid rgba(227, 224, 218, .72);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 66px rgba(30, 25, 20, .06);
}

.integration-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 0 46px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.integration-card .icon img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.integration-card h3 {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.integration-card p {
  max-width: none;
  margin: 0;
  color: #67625e;
  font-size: 17px;
  line-height: 1.5;
}

.integration-card p em {
  color: var(--integration-accent, var(--accent));
  font-style: normal;
  font-weight: 760;
}

.integration-card .btn {
  margin-top: auto;
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
}

.integration-card-purple {
  --integration-accent: #7b5cff;
}

.integration-card-orange {
  --integration-accent: #f05c14;
}

.integration-card-cyan {
  --integration-accent: #0e9ba8;
}

.integration-plus {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 36% 30%, #333, #101010 70%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  font-size: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.integration-plus::before,
.integration-plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.integration-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.integration-plus:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.public-tariff-grid {
  max-width: 970px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.public-tariff-card {
  --tariff-accent: #8a8a8a;
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 28px 32px;
  border: 1px solid #dedede;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(28, 24, 20, .045);
}

.public-tariff-featured {
  --tariff-accent: #f85c00;
  border-color: #f85c00;
  box-shadow: 0 22px 52px rgba(248, 92, 0, .1);
}

.public-tariff-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 15px;
  border-radius: 0 0 10px 10px;
  background: #fff4ed;
  color: #f85c00;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.public-tariff-top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  width: 100%;
}

.public-tariff-top h3 {
  margin: 0;
  color: #242424;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -.03em;
}

.public-tariff-credits {
  min-height: 24px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.public-tariff-credits strong {
  color: #666;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.public-tariff-credits span {
  margin-left: 5px;
  color: #737373;
  font-size: 14px;
  line-height: 1;
}

.public-tariff-price {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-tariff-price strong {
  color: #202020;
  font-size: clamp(31px, 2.8vw, 37px);
  line-height: 1;
  font-weight: 520;
  letter-spacing: -.03em;
}

.public-tariff-unit-price {
  align-self: center;
  margin: 3px 0 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #777;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.public-tariff-unit-price strong {
  color: #333;
  font-weight: 800;
}

.public-tariff-features {
  min-height: 112px;
  margin: 7px 0 0;
  padding: 20px 0 0;
  display: grid;
  align-content: start;
  gap: 10px;
  list-style: none;
  color: #555;
  font-size: 13px;
  line-height: 1.4;
  border-top: 1px solid var(--line);
}

.public-tariff-features li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
}

.public-tariff-features li::before {
  content: '✓';
  width: 15px;
  height: 15px;
  margin-top: 1px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--tariff-accent);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.public-tariff-card .btn {
  margin-top: auto;
  min-height: 43px;
  border: 1px solid #d5d5d5;
  border-radius: 7px;
  background: #fff;
  color: #252525;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  padding: 0 15px;
}

.public-tariff-featured .public-tariff-price strong {
  color: #f85c00;
}

.public-tariff-featured .public-tariff-unit-price strong {
  color: #f85c00;
}

.public-tariff-featured .btn {
  border-color: #f85c00;
  background: linear-gradient(135deg, #ff7624 0%, #f85c00 55%, #e95200 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(248, 92, 0, .18);
}

.pricing .public-tariff-card,
.pricing .public-tariff-card * {
  box-sizing: border-box;
}

.cta { margin: 40px 6vw 30px; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: var(--radius); background: linear-gradient(90deg, #eee9df, #fff); }
.cta h2 { margin-bottom: 8px; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 46px 6vw;
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: 340px;
}

.footer-brand p {
  margin: 14px 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.footer-brand small {
  display: block;
  color: #9b9690;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px 24px;
  flex-wrap: wrap;
  color: var(--muted);
  text-align: right;
}

.footer-links a:hover {
  color: var(--orange);
}

.legal-page {
  background: #fff;
}

.legal-main {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 820px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding: 112px 6vw 82px;
}

.legal-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 32px;
}

.legal-sidebar h1 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.legal-menu {
  display: grid;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-menu a {
  padding: 0;
  border-radius: 0;
  color: #4f4a45;
  font-weight: 500;
}

.legal-menu a:hover {
  color: var(--orange);
}

.legal-menu a.is-active,
.footer-links a.is-active {
  color: var(--orange);
  font-weight: 500;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-section {
  scroll-margin-top: 120px;
  padding-bottom: 34px;
}

.legal-section[hidden] {
  display: none;
}

.legal-section.is-active {
  display: block;
}

.legal-section h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.14;
}

.legal-section h3 {
  margin: 26px 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.legal-section p,
.legal-section li {
  color: #4f4a45;
  font-size: 17px;
  line-height: 1.7;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-note {
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff7f1;
  color: #6d4a34;
}

.about-article {
  display: grid;
  gap: 14px;
}

.about-article-compact {
  grid-template-columns: minmax(0, 1fr);
}

.about-hero,
.about-team,
.about-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f1eb;
}

.about-hero img,
.about-team img,
.about-media img {
  width: 100%;
  display: block;
  height: auto;
}

.about-lead {
  color: #181818;
  margin-bottom: 8px;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.35;
  font-weight: 500;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 0;
}

.about-points div {
  min-width: 0;
  padding-top: 10px;
  border-top: 2px solid var(--orange);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  color: #181818;
  font-size: 17px;
  font-weight: 500;
}

.about-points span {
  display: block;
  color: #5f5953;
  font-size: 14px;
  line-height: 1.42;
}

.about-copy p:not(.about-lead),
.about-contact {
  font-size: 15px;
  line-height: 1.5;
}

.about-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 3;
}

.about-media-team {
  grid-column: span 3;
}

.about-media-team img {
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
}

.about-contact {
  margin-top: 0;
}

.legal-help .about-lead {
  margin-bottom: 22px;
}

.legal-help .training-flow {
  gap: 22px;
}

.legal-help .training-step-card {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px;
}

.legal-help .training-shot {
  min-height: 315px;
}

.legal-help .training-step-copy h2,
.legal-help .training-checklist h2 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.legal-help .training-checklist div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.training-page {
  background: #fff;
}

.training-main {
  padding: 104px 6vw 82px;
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.training-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
}

.training-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  color: #171717;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.training-hero p {
  max-width: 680px;
  margin: 0;
  color: #55504c;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
}

.training-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(255, 90, 0, 0.22);
}

.training-flow {
  display: grid;
  gap: 18px;
}

.training-step-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #eee7df;
  border-radius: 8px;
  background: #fff;
}

.training-step-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
}

.training-step-copy h2 {
  margin: 0 0 12px;
  color: #171717;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

.training-step-copy p {
  margin: 0;
  color: #57514c;
  font-size: 17px;
  line-height: 1.58;
}

.training-shot {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #faf7f2, #fff);
  box-shadow: 0 18px 52px rgba(28, 22, 16, 0.08);
}

.training-shot.training-shot-static {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: clamp(320px, 42vw, 540px);
  padding: 0;
  background: #fff;
}

.training-shot-static img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.training-browser-bar {
  display: flex;
  gap: 7px;
  height: 34px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #ede5dc;
  background: rgba(255, 255, 255, 0.84);
}

.training-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #dfd5cb;
}

.training-upload-panel {
  position: absolute;
  inset: 72px auto auto 9%;
  display: grid;
  place-items: center;
  width: 42%;
  min-height: 190px;
  padding: 22px;
  border: 1px dashed #d9d0c7;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.training-upload-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.training-upload-panel strong {
  color: #1f1d1b;
  font-size: 18px;
  font-weight: 600;
}

.training-upload-panel small {
  color: #7a736d;
  line-height: 1.45;
}

.training-shot-upload::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 46%;
  height: 76%;
  border-radius: 8px 8px 0 0;
  background: url("modules/interior-selector-demo-4/assets/demo-products/client-room.jpeg") center / cover no-repeat;
}

.training-toolbar {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 18px 12px;
}

.training-toolbar span,
.training-tabs span,
.training-tabs b {
  min-height: 36px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #5b554f;
  background: #f4f0ea;
  font-size: 14px;
}

.training-toolbar span:last-child {
  color: #8a837c;
  background: #fff;
  border: 1px solid #eee7df;
}

.training-tabs {
  display: flex;
  gap: 9px;
  padding: 0 18px 16px;
  overflow: hidden;
}

.training-tabs b {
  color: #fff;
  background: var(--orange);
  font-weight: 600;
}

.training-products-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}

.training-products-mini img {
  width: 100%;
  height: 188px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 18, 12, 0.06);
}

.training-room-preview {
  position: absolute;
  inset: 56px auto 26px 26px;
  width: 62%;
  overflow: hidden;
  border-radius: 8px;
}

.training-room-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-generate-button {
  position: absolute;
  right: 34px;
  top: 116px;
  min-width: 220px;
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a3d, #ff5a00);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 18px 32px rgba(255, 90, 0, 0.22);
}

.training-before-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.training-before-after img,
.training-after-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-after-side {
  position: absolute;
  inset: 0 0 0 50%;
  overflow: hidden;
}

.training-after-side img {
  width: 200%;
  max-width: none;
  transform: translateX(-50%);
}

.training-result-label {
  position: absolute;
  top: 18px;
  color: #181818;
  font-size: 17px;
  font-weight: 600;
}

.training-result-label-before {
  left: 22px;
}

.training-result-label-after {
  right: 22px;
}

.training-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #4d4d4d;
}

.training-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.training-save-panel {
  position: absolute;
  left: 32px;
  top: 46px;
  width: min(360px, 56%);
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(22, 18, 14, 0.08);
}

.training-save-panel strong,
.training-save-panel span,
.training-save-panel button {
  display: block;
}

.training-save-panel strong {
  color: #191919;
  font-size: 24px;
  font-weight: 500;
}

.training-save-panel span {
  margin: 8px 0 20px;
  color: #665f59;
}

.training-save-panel button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
}

.training-history-mini {
  position: absolute;
  right: 30px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, 74px);
  gap: 10px;
}

.training-history-mini div {
  height: 92px;
  border-radius: 8px;
  background: url("modules/interior-selector-demo-4/assets/demo-products/generated-room.png") center / cover no-repeat;
  box-shadow: 0 10px 24px rgba(22, 18, 14, 0.08);
}

.training-callout {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #171717;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.training-callout-top {
  top: 48px;
  right: 30px;
}

.training-callout-right {
  right: 24px;
  top: 132px;
}

.training-callout-bottom {
  right: 28px;
  bottom: 34px;
}

.training-callout-left {
  left: 24px;
  bottom: 24px;
}

.training-checklist {
  margin-top: 28px;
  padding: 30px;
  border-radius: 8px;
  background: #f8f3ee;
}

.training-checklist h2 {
  margin: 0 0 18px;
  color: #171717;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
}

.training-checklist div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.training-checklist p {
  margin: 0;
  padding-top: 12px;
  border-top: 2px solid var(--orange);
  color: #56504a;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .nav { display: none; }
  .training-hero,
  .training-step-card {
    grid-template-columns: 1fr;
  }
  .training-hero {
    align-items: start;
  }
  .training-hero-action {
    justify-self: start;
  }
  .training-checklist div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-main {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }
  .legal-sidebar {
    position: static;
  }
  .legal-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .about-media-grid {
    grid-template-columns: 1fr;
  }
  .about-media-team {
    grid-column: auto;
  }
  .door-showcase, .rug-showcase, .demo-grid, .before-after { grid-template-columns: 1fr; }
  .door-showcase, .rug-showcase { gap: 36px; }
  .door-showcase-copy, .rug-showcase-copy { max-width: 760px; }
  .integration-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 72px; }
  .step::after { display: none; }
  .step strong { min-height: 0; }
  .how-step-media {
    height: 240px;
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  :root { --header-height: 65px; }
  .header { padding: 14px 16px; gap: 12px; }
  .header-login-link { display: none; }
  .dashboard-link {
    min-width: 0;
    width: auto;
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }
  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
  .legal-main {
    padding: 112px 20px 58px;
  }
  .legal-menu {
    grid-template-columns: 1fr;
  }
  .legal-section p,
  .legal-section li {
    font-size: 16px;
  }
  .training-main {
    padding: 96px 20px 58px;
  }
  .training-hero {
    gap: 18px;
    margin-bottom: 24px;
  }
  .training-hero h1 {
    font-size: 34px;
  }
  .training-hero p {
    font-size: 17px;
  }
  .training-step-card {
    gap: 18px;
    padding: 18px;
  }
  .training-step-copy p {
    font-size: 16px;
  }
  .training-shot {
    min-height: 300px;
  }
  .training-upload-panel {
    left: 16px;
    width: calc(100% - 32px);
    min-height: 150px;
  }
  .training-shot-upload::after {
    display: none;
  }
  .training-toolbar {
    grid-template-columns: 1fr;
  }
  .training-products-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .training-products-mini img {
    height: 128px;
  }
  .training-room-preview {
    inset: 56px 18px 92px;
    width: auto;
  }
  .training-generate-button {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 22px;
    min-width: 0;
  }
  .training-callout {
    max-width: calc(100% - 36px);
    font-size: 13px;
  }
  .training-callout-right,
  .training-callout-top {
    top: auto;
    right: 18px;
    bottom: 18px;
  }
  .training-callout-bottom {
    display: none;
  }
  .training-save-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }
  .training-history-mini {
    display: none;
  }
  .training-checklist {
    padding: 22px;
  }
  .training-checklist div {
    grid-template-columns: 1fr;
  }
  .main-banner-copy {
    left: 20px;
    top: 22px;
    max-width: calc(100% - 40px);
  }

  .main-banner-copy > span {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .main-banner-copy strong {
    font-size: 28px;
  }
  .door-showcase { gap: 28px; }
  .door-showcase-copy h2 { font-size: 25px; }
  .door-showcase-copy p { font-size: 15px; }
  .door-showcase-stage { border-radius: 20px; }
  .door-showcase-parallax { inset: -8% -18%; }
  .door-showcase-parallax-bg { opacity: .44; object-position: center top; }
  .visual-how-title {
    margin-bottom: 26px;
    font-size: 25px;
  }
  .rug-showcase { gap: 28px; }
  .rug-showcase-copy h2 { font-size: 25px; }
  .section { padding: 54px 20px; }
  .cta, .footer { flex-direction: column; align-items: stretch; }
  .steps, .integration-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps { gap: 72px; }
  .step::after { display: none; }
  .how h2 { margin-bottom: 64px; }
  .step strong { min-height: 0; }
  .how-step-media {
    height: 210px;
    margin-bottom: 20px;
  }
  .how-step-media-palette {
    padding: 16px 24px;
  }
  .how-step-media-palette img {
    max-width: 62px;
    height: 82px;
  }
  .integration h2,
  .pricing h2 {
    min-height: 104px;
  }
  .pricing h2 { min-height: 0; }
}

@media (max-width: 360px) {
  .door-showcase-copy p { font-size: 13px; }
}

/* CLIENT DESIGN TOOL SECTION */
.asd-client-section{
  width:100%;
  padding:56px 24px 64px;
  background:linear-gradient(180deg,#fff 0%,#fbfcfd 100%);
}

.asd-client-wrap{
  max-width:1480px;
  margin:0 auto;
}

.asd-client-head{
  text-align:center;
  margin-bottom:34px;
}

.asd-client-head h2{
  margin:0;
  font-size:clamp(42px,5.8vw,76px);
  font-weight:300;
  line-height:1.02;
  letter-spacing:-.055em;
}

.asd-client-head .green{
  color:#37aa32;
  font-weight:300;
}

.asd-client-head p{
  max-width:720px;
  margin:22px auto 0;
  color:#5e6673;
  font-size:clamp(18px,2vw,25px);
  line-height:1.45;
  font-weight:400;
}

.asd-tool-grid{
  display:grid;
  grid-template-columns:minmax(300px, .95fr) minmax(300px,.92fr) minmax(520px,1.65fr);
  gap:20px;
  align-items:stretch;
}

.asd-card{
  background:#ffffff;
  border:1px solid #e6e9ef;
  border-radius:22px;
  box-shadow:0 18px 48px rgba(16,24,40,.08);
  padding:26px;
}

.asd-card-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  font-size:18px;
  font-weight:650;
  letter-spacing:-.02em;
}

.asd-icon{
  width:28px;
  height:28px;
  color:#37aa32;
  flex:0 0 auto;
}

.asd-upload-zone{
  min-height: auto;
  border:2px dashed #d8dde5;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  transition:.2s ease;
  cursor:pointer;
  background:#fff;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.asd-upload-zone:hover{
  border-color:#37aa32;
  background:#fbfffb;
}

.asd-upload-zone input{display:none}

.asd-upload-cloud{
  width:88px;
  height:88px;
  color:#555b66;
  margin-bottom:18px;
}

.asd-upload-zone strong{
  display:block;
  font-size:25px;
  margin-bottom:18px;
  letter-spacing:-.02em;
}

.asd-upload-zone span{
  display:block;
  color:#6b7280;
  font-size:19px;
  line-height:1.55;
}

.asd-choice-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:30px;
}

.asd-mode-card{
  position:relative;
  min-height:210px;
  border:1.5px solid #dfe3ea;
  border-radius:16px;
  background:#fff;
  padding:24px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  transition:.18s ease;
}

.asd-mode-card svg{
  width:60px;
  height:60px;
  margin-bottom:16px;
  color:#606873;
}

.asd-mode-card strong{
  font-size:20px;
  margin-bottom:10px;
}

.asd-mode-card span{
  color:#6b7280;
  font-size:16px;
  line-height:1.35;
}

.asd-mode-card.active{
  border-color:#37aa32;
  box-shadow:0 0 0 1px rgba(55,170,50,.15);
}

.asd-mode-card.active svg{color:#37aa32}

.asd-check{
  position:absolute;
  top:-12px;
  right:-10px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#37aa32;
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:18px;
}

.asd-mode-card.active .asd-check{display:flex}

.asd-budget-block{
  padding-top:8px;
  border-top:1px solid #eef1f5;
}

.asd-budget-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin:22px 0 26px;
  font-size:18px;
  font-weight:650;
}

.asd-budget-value{
  text-align:center;
  font-size:42px;
  font-weight:500;
  letter-spacing:-.04em;
  margin-bottom:10px;
}

.asd-budget-per-meter{
  text-align:center;
  font-size:17px;
  color:#4b5563;
  margin-bottom:38px;
}

.asd-range{
  width:100%;
  accent-color:#37aa32;
  cursor:pointer;
}

.asd-range-row{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  color:#6b7280;
  font-size:16px;
}

.asd-styles-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:24px;
}

.asd-style-card{
  position:relative;
  cursor:pointer;
}

.asd-style-img{
  height:90px;
  border-radius:14px;
  border:2px solid transparent;
  overflow:hidden;
  background:#ddd;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.04);
  transition:.18s ease;
}

.asd-style-card.active .asd-style-img{border-color:#37aa32}

.asd-style-card .asd-check{
  top:-10px;
  right:-8px;
  width:31px;
  height:31px;
}

.asd-style-card.active .asd-check{display:flex}

.asd-style-card span{
  display:block;
  text-align:center;
  margin-top:9px;
  font-size:15px;
  font-weight:550;
}

.style-modern{background:linear-gradient(135deg,#ebe6dc,#c7bda9 45%,#151515)}
.style-scandi{background:linear-gradient(135deg,#fff7ec,#d8cdbd 55%,#87a17c)}
.style-minimal{background:linear-gradient(135deg,#f6f1ea,#e7dfd4 60%,#cfc6ba)}
.style-loft{background:linear-gradient(135deg,#2b2018,#9c6435 55%,#111)}
.style-classic{background:linear-gradient(135deg,#6f4d38,#d6bd90 55%,#fff1d5)}
.style-neoclassic{background:linear-gradient(135deg,#f4f1eb,#a0a4a2 60%,#333)}
.style-eco{background:linear-gradient(135deg,#efe1c9,#9bb66b 55%,#263b22)}
.style-japan{background:linear-gradient(135deg,#f0dac0,#b78a5d 58%,#1d1711)}

.asd-color-section{
  border-top:1px solid #eef1f5;
  padding-top:22px;
}

.asd-color-title{
  margin:0 0 16px;
  font-size:17px;
  font-weight:650;
}

.asd-main-colors,
.asd-shades{
  display:grid;
  grid-template-columns:repeat(11,1fr);
  gap:12px;
  align-items:center;
  margin-bottom:22px;
}

.asd-color-btn,
.asd-shade-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:2px solid #fff;
  box-shadow:0 0 0 1px rgba(15,23,42,.18),0 3px 10px rgba(15,23,42,.08);
  cursor:pointer;
  transition:.15s ease;
}

.asd-color-btn.active,
.asd-shade-btn.active{
  box-shadow:0 0 0 3px #fff,0 0 0 5px #37aa32,0 8px 18px rgba(55,170,50,.18);
  transform:translateY(-1px);
}

.asd-cta-wrap{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.asd-create-btn{
  width:min(640px,100%);
  border:0;
  border-radius:12px;
  background:linear-gradient(180deg,#47bd41,#2fa92b);
  color:#fff;
  min-height:70px;
  font-size:28px;
  font-weight:650;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(55,170,50,.22);
  transition:.2s ease;
}

.asd-create-btn:hover{transform:translateY(-1px);box-shadow:0 18px 38px rgba(55,170,50,.28)}

.asd-create-btn svg{width:28px;height:28px}

@media(max-width:1180px){
  .asd-tool-grid{grid-template-columns:1fr 1fr}
  .asd-style-panel{grid-column:1/-1}
}

@media(max-width:760px){
  .asd-client-section{padding:38px 14px 48px}
  .asd-tool-grid{grid-template-columns:1fr}
  .asd-card{padding:20px}
  .asd-upload-zone{min-height:360px}
  .asd-styles-grid{grid-template-columns:repeat(2,1fr)}
  .asd-main-colors,.asd-shades{grid-template-columns:repeat(6,1fr)}
  .asd-client-head h2{font-size:42px}
  .asd-create-btn{font-size:22px;min-height:62px}
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #6f6861;
}

.privacy-consent input {
  width: 16px !important;
  min-width: 16px;
  height: 16px;
  margin-top: 1px;
}
