:root {
  --ink: #10281f;
  --ink-soft: #52665e;
  --forest: #062c20;
  --forest-2: #0a3b2c;
  --green: #13b978;
  --green-dark: #07875a;
  --mint: #dff7ec;
  --cream: #f6f7f1;
  --paper: #ffffff;
  --line: #dfe7e2;
  --gold: #f3b83e;
  --danger: #b73737;
  --shadow: 0 24px 70px rgba(10, 45, 33, .12);
  --radius: 26px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 231, 226, .78);
  background: rgba(246, 247, 241, .86);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  position: relative;
  width: 39px;
  height: 39px;
  border-radius: 13px;
  background: var(--green);
  box-shadow: 0 9px 22px rgba(19, 185, 120, .25);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 10px 9px 11px;
  border: 2px solid #fff;
  border-radius: 5px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  transform: skewY(-35deg);
}
.brand-copy strong { display: block; font-size: 16px; letter-spacing: -.35px; }
.brand-copy small { display: block; margin-top: 1px; color: #6d8078; font-size: 10px; letter-spacing: .035em; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-right: auto; }
.main-nav a { color: #53675f; font-size: 13px; font-weight: 650; transition: color .2s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--green-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-user { display: none; align-items: center; gap: 10px; }
.is-authenticated .nav-user { display: flex; }
.is-authenticated .nav-guest { display: none; }
.nav-user-name { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; font-weight: 750; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; color: var(--ink); }
.menu-toggle span { width: 22px; height: 2px; margin: 4px 0; display: block; border-radius: 2px; background: currentColor; }

.button {
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--green-dark); box-shadow: 0 10px 24px rgba(7, 135, 90, .18); }
.button-primary:hover { background: #046f4a; box-shadow: 0 14px 30px rgba(7, 135, 90, .25); }
.button-light { color: var(--ink); background: #fff; border-color: var(--line); }
.button-ghost { color: var(--ink); background: transparent; }
.button-dark { color: #fff; background: var(--forest); }
.button-wide { width: 100%; }
.button svg { width: 16px; height: 16px; }

.hero { position: relative; overflow: hidden; padding: 82px 0 88px; }
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  background: rgba(83, 225, 165, .15);
  filter: blur(2px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green-dark); font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(19,185,120,.11); }
.hero h1, .page-hero h1 { margin: 20px 0 20px; font-size: clamp(48px, 6vw, 76px); line-height: .99; letter-spacing: -.065em; max-width: 750px; }
.hero h1 em { color: var(--green-dark); font-style: normal; }
.hero-copy > p { max-width: 610px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.hero-actions .button { min-height: 52px; padding-inline: 23px; }
.trust-line { display: flex; flex-wrap: wrap; align-items: center; gap: 19px; margin-top: 29px; color: #667a72; font-size: 12px; }
.trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.trust-line svg { width: 16px; height: 16px; color: var(--green-dark); }

.product-scene { position: relative; min-height: 505px; perspective: 1100px; }
.product-window {
  position: absolute;
  inset: 20px 0 20px 13px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 27px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 40px 90px rgba(6, 44, 32, .3);
  transform: rotateY(-3deg) rotateX(1deg);
  animation: sceneFloat 7s ease-in-out infinite;
}
.window-bar { height: 50px; padding: 0 17px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(255,255,255,.09); }
.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #577367; }
.window-bar i:first-child { background: var(--green); }
.window-address { width: 44%; height: 20px; margin-left: 13px; border-radius: 6px; background: rgba(255,255,255,.07); }
.product-body { display: grid; grid-template-columns: 88px 1fr; height: calc(100% - 50px); }
.mock-sidebar { padding: 18px 12px; background: rgba(0,0,0,.14); }
.mock-logo { width: 25px; height: 25px; border-radius: 8px; background: var(--green); margin-bottom: 25px; }
.mock-navline { height: 7px; border-radius: 8px; margin: 14px 0; background: rgba(255,255,255,.12); }
.mock-main { padding: 31px 28px; background: linear-gradient(145deg, #f8faf7, #edf5f0); color: var(--ink); }
.mock-kicker { width: 88px; height: 8px; border-radius: 6px; background: #8cdcb9; }
.mock-main h3 { margin: 13px 0 6px; font-size: 25px; letter-spacing: -.04em; }
.mock-main > p { margin: 0; color: #71847c; font-size: 9px; }
.mock-search { height: 61px; margin-top: 25px; padding: 11px; display: grid; grid-template-columns: 1.3fr .8fr 74px; gap: 8px; border: 1px solid #dfe8e3; border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(23,65,48,.07); }
.mock-field { border-radius: 7px; background: #f1f5f2; }
.mock-search .mock-field:last-child { background: var(--green-dark); }
.mock-stats { margin-top: 18px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-card { padding: 12px; border: 1px solid #dfe8e3; border-radius: 12px; background: #fff; }
.mock-card i { display: block; width: 25px; height: 25px; margin-bottom: 14px; border-radius: 8px; background: #ddf6ea; }
.mock-card b { display: block; font-size: 18px; }
.mock-card span { display: block; width: 60%; height: 5px; margin-top: 6px; border-radius: 5px; background: #dfe8e3; }
.mock-table { margin-top: 12px; padding: 8px 14px; border: 1px solid #dfe8e3; border-radius: 12px; background: #fff; }
.mock-row { display: grid; grid-template-columns: 27px 1.2fr .8fr 55px; align-items: center; gap: 9px; height: 42px; border-bottom: 1px solid #eef2ef; }
.mock-row:last-child { border: 0; }
.mock-row i { width: 25px; height: 25px; border-radius: 7px; background: #e8efe9; }
.mock-row span { height: 5px; border-radius: 5px; background: #dce5df; }
.mock-row b { height: 18px; border-radius: 6px; background: #dff7ec; }
.floating-card { position: absolute; z-index: 3; border: 1px solid rgba(20, 69, 50, .09); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 22px 48px rgba(13,52,37,.18); backdrop-filter: blur(10px); }
.score-card { right: -28px; top: 34px; width: 155px; padding: 16px; animation: cardFloat 6s ease-in-out infinite .8s; }
.score-card small, .site-card small { color: #71847c; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.score-value { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 8px; }
.score-value strong { font-size: 29px; letter-spacing: -.05em; }
.score-value span { color: var(--green-dark); font-size: 9px; font-weight: 800; }
.score-line { height: 5px; margin-top: 10px; border-radius: 5px; overflow: hidden; background: #e5ece7; }
.score-line i { display: block; width: 84%; height: 100%; background: var(--green); }
.site-card { left: -29px; bottom: 0; width: 190px; padding: 15px; animation: cardFloat 6.5s ease-in-out infinite; }
.site-card-row { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.site-card-icon { width: 35px; height: 35px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--green-dark); }
.site-card-icon svg { width: 17px; }
.site-card strong { display: block; font-size: 11px; }
.site-card span { color: var(--green-dark); font-size: 9px; font-weight: 750; }

.logo-strip { padding: 19px 0 58px; }
.logo-strip-inner { min-height: 78px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.65); }
.logo-strip p { margin: 0; color: #71837b; font-size: 11px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.logo-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 25px; }
.logo-items span { color: #61746c; font-size: 13px; font-weight: 800; }

.section { padding: 96px 0; }
.section-white { background: #fff; }
.section-dark { position: relative; overflow: hidden; color: #fff; background: var(--forest); }
.section-heading { max-width: 680px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 16px 0 14px; font-size: clamp(35px, 4.7vw, 54px); line-height: 1.06; letter-spacing: -.052em; }
.section-heading p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.section-dark .section-heading p { color: #abc1b7; }
.feature-grid { margin-top: 47px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--green-dark); background: var(--mint); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 26px 0 10px; font-size: 19px; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.feature-link { display: inline-flex; gap: 6px; margin-top: 20px; color: var(--green-dark); font-size: 12px; font-weight: 800; }

.workflow-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.workflow-step { position: relative; }
.workflow-step:not(:last-child)::after { content: ""; position: absolute; top: 25px; left: 58px; width: calc(100% - 27px); border-top: 1px dashed rgba(255,255,255,.24); }
.step-number { position: relative; z-index: 2; width: 51px; height: 51px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; color: #8df0c5; background: #0b3c2c; font-size: 12px; font-weight: 850; }
.workflow-step h3 { margin: 23px 0 9px; font-size: 19px; }
.workflow-step p { margin: 0; max-width: 300px; color: #a9bfb5; font-size: 13px; line-height: 1.7; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; }
.benefit-list { margin-top: 29px; display: grid; gap: 16px; }
.benefit { display: flex; gap: 13px; }
.benefit-check { flex: 0 0 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: var(--green-dark); background: var(--mint); }
.benefit-check svg { width: 13px; }
.benefit strong { display: block; font-size: 14px; }
.benefit span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.website-preview { position: relative; min-height: 480px; padding: 25px; border-radius: 30px; background: #dff2e9; }
.website-frame { height: 430px; overflow: hidden; border: 8px solid #fff; border-radius: 21px; background: #fff; box-shadow: 0 25px 55px rgba(16,40,31,.18); transform: rotate(2deg); }
.preview-bar { height: 31px; display: flex; align-items: center; gap: 4px; padding: 0 10px; background: #f0f2ef; }
.preview-bar i { width: 5px; height: 5px; border-radius: 50%; background: #bdc7c0; }
.preview-hero { position: relative; height: 220px; padding: 40px 32px; color: #fff; background: linear-gradient(120deg,#102a21 20%,#174c39); }
.preview-hero::after { content: ""; position: absolute; right: 18px; bottom: -25px; width: 180px; height: 180px; border-radius: 50% 50% 10px 50%; background: linear-gradient(145deg,#c8b18d,#72533d); opacity: .72; }
.preview-hero small { color: #92d9b9; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.preview-hero h3 { width: 57%; margin: 10px 0; font-size: 30px; line-height: 1.05; letter-spacing: -.05em; }
.preview-hero p { width: 48%; color: #bad0c6; font-size: 7px; line-height: 1.6; }
.preview-hero button { margin-top: 7px; padding: 7px 12px; border: 0; border-radius: 5px; color: #fff; background: var(--green); font-size: 6px; font-weight: 800; }
.preview-services { padding: 22px 27px; display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.preview-service { height: 85px; padding: 12px; border: 1px solid #e7ece8; border-radius: 9px; }
.preview-service i { display: block; width: 18px; height: 18px; border-radius: 5px; background: var(--mint); }
.preview-service b { display: block; width: 55%; height: 5px; margin-top: 13px; border-radius: 5px; background: #bac9c0; }
.preview-service span { display: block; width: 82%; height: 4px; margin-top: 7px; border-radius: 4px; background: #e1e7e3; }
.preview-badge { position: absolute; right: -14px; bottom: 35px; padding: 13px 16px; border-radius: 14px; background: #fff; box-shadow: 0 15px 34px rgba(16,40,31,.16); font-size: 10px; font-weight: 800; }
.preview-badge span { color: var(--green-dark); }

.cta-section { padding: 85px 0; }
.cta-card { position: relative; overflow: hidden; padding: 68px; border-radius: 30px; color: #fff; background: var(--forest); }
.cta-card::before, .cta-card::after { content: ""; position: absolute; border-radius: 50%; background: rgba(63,222,155,.11); }
.cta-card::before { width: 300px; height: 300px; right: -70px; top: -165px; }
.cta-card::after { width: 160px; height: 160px; right: 145px; bottom: -115px; }
.cta-card-content { position: relative; z-index: 2; max-width: 700px; }
.cta-card h2 { margin: 0 0 15px; font-size: clamp(35px,4.5vw,54px); line-height: 1.04; letter-spacing: -.055em; }
.cta-card p { max-width: 570px; margin: 0 0 29px; color: #b6c9c0; line-height: 1.7; }
.cta-card .button { color: var(--forest); background: #8df0c5; }

.site-footer { padding: 56px 0 25px; color: #c7d4ce; background: #051e16; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 50px; }
.site-footer .brand-copy strong { color: #fff; }
.footer-brand p { max-width: 310px; margin: 19px 0 0; color: #849c92; font-size: 12px; line-height: 1.7; }
.footer-column h4 { margin: 3px 0 17px; color: #fff; font-size: 12px; }
.footer-column a { display: block; width: fit-content; margin: 10px 0; color: #8fa69c; font-size: 12px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { margin-top: 47px; padding-top: 21px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #6f887d; font-size: 10px; }

.page-hero { padding: 77px 0 55px; text-align: center; }
.page-hero h1 { max-width: 850px; margin-inline: auto; font-size: clamp(43px,6vw,66px); }
.page-hero p { max-width: 650px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.pricing-section { padding: 15px 0 105px; }
.pricing-note { width: fit-content; margin: 0 auto 30px; padding: 9px 14px; border: 1px solid #c9e8d9; border-radius: 999px; color: var(--green-dark); background: #effaf5; font-size: 11px; font-weight: 750; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 17px; }
.price-card { position: relative; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 13px 40px rgba(16,40,31,.05); }
.price-card.featured { color: #fff; border-color: var(--forest); background: var(--forest); box-shadow: 0 26px 60px rgba(6,44,32,.24); transform: translateY(-10px); }
.popular-label { position: absolute; right: 18px; top: 18px; padding: 7px 10px; border-radius: 999px; color: var(--forest); background: #8df0c5; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.price-card > small { color: var(--green-dark); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.price-card.featured > small { color: #8df0c5; }
.price-card h2 { margin: 13px 0 8px; font-size: 27px; letter-spacing: -.04em; }
.price-card > p { min-height: 42px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.price-card.featured > p { color: #acc0b7; }
.price-placeholder { margin: 29px 0 21px; }
.price-placeholder strong { display: block; font-size: 25px; letter-spacing: -.04em; }
.price-placeholder strong small { display: inline; font-size: 11px; font-weight: 700; letter-spacing: 0; opacity: .65; }
.price-placeholder span { color: #75877f; font-size: 10px; }
.price-card.featured .price-placeholder span { color: #9bb1a7; }
.price-card ul { min-height: 154px; margin: 7px 0 26px; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.price-card.featured ul { border-color: rgba(255,255,255,.13); }
.price-card li { position: relative; margin: 12px 0; padding-left: 23px; color: #53675f; font-size: 12px; }
.price-card.featured li { color: #c0d0c9; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.price-card .button { margin-top: auto; }
.pricing-footnote { max-width: 650px; margin: 35px auto 0; text-align: center; color: #6f827a; font-size: 11px; line-height: 1.7; }

.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; background: #fff; }
.auth-visual { position: relative; overflow: hidden; padding: 43px clamp(35px,6vw,90px); display: flex; flex-direction: column; color: #fff; background: var(--forest); }
.auth-visual::before { content: ""; position: absolute; width: 580px; height: 580px; right: -250px; bottom: -270px; border-radius: 50%; border: 100px solid rgba(91,231,170,.07); }
.auth-visual .brand { position: relative; z-index: 2; color: #fff; }
.auth-visual .brand-copy small { color: #90aa9f; }
.auth-message { position: relative; z-index: 2; margin: auto 0; max-width: 560px; }
.auth-message h1 { margin: 20px 0 17px; font-size: clamp(43px,5vw,65px); line-height: 1; letter-spacing: -.06em; }
.auth-message p { max-width: 490px; margin: 0; color: #aac0b6; font-size: 15px; line-height: 1.75; }
.auth-quote { position: relative; z-index: 2; max-width: 470px; padding: 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.045); }
.auth-quote p { margin: 0; color: #d6e2dd; font-size: 12px; line-height: 1.7; }
.auth-quote strong { display: block; margin-top: 9px; color: #8df0c5; font-size: 10px; }
.auth-panel { padding: 40px clamp(28px,6vw,90px); display: flex; flex-direction: column; justify-content: center; }
.auth-mobile-brand { display: none; margin-bottom: 40px; }
.auth-form-wrap { width: 100%; max-width: 430px; margin: 0 auto; }
.auth-form-wrap h2 { margin: 0 0 9px; font-size: 34px; letter-spacing: -.045em; }
.auth-subtitle { margin: 0 0 29px; color: var(--ink-soft); font-size: 13px; }
.auth-subtitle a, .auth-legal a { color: var(--green-dark); font-weight: 750; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 7px; color: #344a41; font-size: 11px; font-weight: 760; }
.input-wrap { position: relative; }
.input-wrap svg { position: absolute; left: 14px; top: 50%; width: 17px; height: 17px; color: #7b8c84; transform: translateY(-50%); }
.form-field input, .form-field select { width: 100%; height: 51px; padding: 0 43px; border: 1px solid #d9e2dc; border-radius: 12px; outline: 0; color: var(--ink); background: #fbfcfa; transition: border .2s ease, box-shadow .2s ease; }
.form-field select { padding-right: 15px; }
.form-field input:focus, .form-field select:focus { border-color: #59c99a; box-shadow: 0 0 0 4px rgba(19,185,120,.1); }
.form-field input::placeholder { color: #9aa7a1; }
.password-toggle { position: absolute; right: 9px; top: 50%; padding: 7px; border: 0; color: #677a71; background: transparent; transform: translateY(-50%); }
.password-toggle svg { position: static; width: 17px; transform: none; }
.form-row { margin: 5px 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #677a72; font-size: 11px; }
.check-label { display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.check-label input { margin: 2px 0 0; accent-color: var(--green-dark); }
.form-row a { color: var(--green-dark); font-weight: 750; }
.form-message { display: none; margin: 0 0 15px; padding: 11px 13px; border-radius: 10px; font-size: 11px; line-height: 1.5; }
.form-message.visible { display: block; }
.form-message.error { color: #8c2929; border: 1px solid #f0caca; background: #fff2f2; }
.form-message.success { color: #086e49; border: 1px solid #bde7d4; background: #effbf5; }
.auth-form .button[disabled] { cursor: wait; opacity: .7; transform: none; }
.auth-legal { margin: 18px 0 0; color: #819089; text-align: center; font-size: 9px; line-height: 1.65; }

.checkout-main { min-height: calc(100vh - 76px); padding: 62px 0 90px; }
.checkout-heading { max-width: 690px; margin-bottom: 34px; }
.checkout-heading h1 { margin: 16px 0 11px; font-size: clamp(36px,5vw,54px); line-height: 1.04; letter-spacing: -.055em; }
.checkout-heading p { margin: 0; color: var(--ink-soft); line-height: 1.7; }
.checkout-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 22px; }
.checkout-card { padding: 28px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: 0 18px 55px rgba(16,40,31,.07); }
.checkout-plan-card { position: sticky; top: 105px; color: #fff; background: var(--forest); border-color: var(--forest); }
.checkout-plan-card > small { color: #8df0c5; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.checkout-plan-card h2 { margin: 13px 0 5px; font-size: 29px; }
.checkout-price { margin: 25px 0; padding: 21px 0; border-block: 1px solid rgba(255,255,255,.12); }
.checkout-price strong { display: block; font-size: 37px; letter-spacing: -.05em; }
.checkout-price span { display: block; margin-top: 4px; color: #a8beb4; font-size: 11px; }
.checkout-plan-card ul { margin: 0; padding: 0; list-style: none; }
.checkout-plan-card li { position: relative; margin: 13px 0; padding-left: 22px; color: #c3d2cb; font-size: 12px; }
.checkout-plan-card li::before { content: "✓"; position: absolute; left: 0; color: #8df0c5; font-weight: 900; }
.payment-account { margin: 18px 0 24px; padding: 18px; display: grid; gap: 13px; border: 1px solid #cbe8da; border-radius: 16px; background: #effaf5; }
.payment-account-row { display: flex; justify-content: space-between; gap: 20px; }
.payment-account span { color: #60756c; font-size: 11px; }
.payment-account strong { font-size: 13px; text-align: right; }
.payment-instructions { margin: 0 0 25px; padding-left: 20px; color: #60736b; font-size: 11px; line-height: 1.7; }
.payment-instructions li { margin: 6px 0; }
.checkout-form .form-field input { padding: 0 15px; }
.checkout-form .form-field input[type="file"] { height: auto; min-height: 51px; padding: 13px; }
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.checkout-status { margin-top: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #f8faf7; }
.checkout-status strong { display: block; font-size: 12px; }
.checkout-status span { display: block; margin-top: 5px; color: #70827a; font-size: 10px; line-height: 1.55; }
.status-pending { border-color: #eedba8; background: #fff9e8; }
.status-approved { border-color: #b9e5d0; background: #effaf5; }
.status-rejected { border-color: #ecc8c8; background: #fff2f2; }
.copy-payment { padding: 0; border: 0; color: var(--green-dark); background: transparent; font-size: 10px; font-weight: 800; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes sceneFloat { 0%,100% { transform: rotateY(-3deg) rotateX(1deg) translateY(0); } 50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-9px); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
  .nav-wrap { min-height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav, .nav-actions { position: fixed; left: 20px; right: 20px; display: none; background: #fff; }
  .main-nav { top: 78px; padding: 20px; flex-direction: column; align-items: flex-start; gap: 18px; border-radius: 17px 17px 0 0; box-shadow: 0 18px 55px rgba(16,40,31,.18); }
  .nav-actions { top: 237px; padding: 0 20px 20px; border-radius: 0 0 17px 17px; }
  .menu-open .main-nav, .menu-open .nav-actions { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { text-align: center; }
  .hero-copy > p, .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .product-scene { max-width: 680px; width: 100%; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card:last-child { grid-column: 1 / -1; }
  .split-section { gap: 45px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card ul { min-height: 0; }
  .auth-page { grid-template-columns: 1fr 1.1fr; }
  .auth-visual { padding: 35px; }
}

@media (max-width: 740px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: clamp(43px,14vw,62px); }
  .product-scene { min-height: 420px; }
  .product-window { inset: 10px 0; }
  .score-card { right: -5px; }
  .site-card { left: -3px; }
  .mock-main { padding: 24px 17px; }
  .mock-search { grid-template-columns: 1fr 60px; }
  .mock-search .mock-field:nth-child(2) { display: none; }
  .logo-strip-inner { padding: 20px; flex-direction: column; align-items: flex-start; }
  .logo-items { justify-content: flex-start; }
  .section { padding: 75px 0; }
  .feature-grid, .workflow-grid, .split-section, .footer-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .workflow-grid { gap: 28px; }
  .workflow-step:not(:last-child)::after { top: 53px; left: 25px; width: 1px; height: 22px; border-top: 0; border-left: 1px dashed rgba(255,255,255,.24); }
  .split-section { gap: 50px; }
  .website-preview { min-height: 410px; padding: 16px; }
  .website-frame { height: 380px; }
  .cta-card { padding: 44px 27px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .auth-page { display: block; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-plan-card { position: static; }
  .checkout-form-grid { grid-template-columns: 1fr; gap: 0; }
  .auth-visual { display: none; }
  .auth-panel { min-height: 100vh; padding: 28px 22px 45px; }
  .auth-mobile-brand { display: inline-flex; }
}

@media (max-width: 470px) {
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(39px, 11.5vw, 47px); }
  .hero-actions .button { width: 100%; }
  .trust-line { align-items: flex-start; flex-direction: column; padding-left: 16px; }
  .product-scene { min-height: 350px; }
  .mock-sidebar { display: none; }
  .product-body { grid-template-columns: 1fr; }
  .floating-card { transform: scale(.9); }
  .score-card { top: 4px; transform-origin: top right; }
  .site-card { bottom: -2px; transform-origin: bottom left; }
  .preview-hero h3 { width: 75%; }
  .preview-services { padding-inline: 15px; }
}

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