/* ==========================================================================
   WhatsApp Group Sender — Max Solution
   Design tokens
   ========================================================================== */
:root {
  --bg: #071310;
  --bg-soft: #0a1a15;
  --panel: #0e211b;
  --panel-strong: #12281f;
  --panel-line: rgba(255, 255, 255, 0.09);
  --panel-line-strong: rgba(255, 255, 255, 0.16);

  --text: #eef8f3;
  --text-muted: #9ab8ac;
  --text-faint: #638375;

  --emerald: #18b981;
  --emerald-strong: #2fe39f;
  --emerald-dim: rgba(24, 185, 129, 0.14);
  --emerald-line: rgba(24, 185, 129, 0.4);

  --sent: #2fe39f;
  --failed: #e2604a;
  --pending: #7d9a8f;
  --stopped: #d9a441;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-lift: 0 24px 60px -28px rgba(0, 0, 0, 0.65);
  --shadow-tight: 0 10px 26px -16px rgba(0, 0, 0, 0.55);

  --container: 1180px;
  --font-ar: "Segoe UI", Tahoma, "Dubai", "Noto Kufi Arabic", "Noto Sans Arabic", Arial, sans-serif;
  --font-latin: "Segoe UI", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cyr: "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body: var(--font-ar);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typography per language — same sizes/weights/spacing everywhere,
   only the typeface stack changes so each script renders natively. */
html[lang="en"],
html[lang="es"] {
  --font-body: var(--font-latin);
}
html[lang="ru"] {
  --font-body: var(--font-cyr);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
dt {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.num {
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--emerald-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -60px;
  background: var(--emerald);
  color: #04140f;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 16px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--emerald-strong);
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--emerald-strong);
}
.eyebrow.center {
  display: flex;
  justify-content: center;
}

.center {
  text-align: center;
}
.muted {
  color: var(--text-muted);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  display: grid;
  gap: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--emerald);
  color: #052018;
}
.btn-primary:hover {
  background: var(--emerald-strong);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--panel-line-strong);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--emerald-line);
  color: var(--emerald-strong);
}
.btn-ghost {
  color: var(--text-muted);
  padding: 13px 10px;
}
.btn-ghost:hover {
  color: var(--text);
}
.btn-text {
  color: var(--emerald-strong);
  padding: 13px 6px;
}
.btn-text:hover {
  gap: 13px;
}
.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-line);
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 97%, transparent);
  box-shadow: var(--shadow-tight);
}
.header-inner {
  min-height: 88px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ---- brand lockup (text-only, no mark) ---- */
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
  min-width: 0;
  max-width: 100%;
}
.brand-parent {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.brand-product {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.main-nav a {
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}
.main-nav .mobile-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* ---- language switcher (desktop, in header) ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  margin-inline-end: 4px;
  padding-inline-end: 20px;
  border-inline-end: 1px solid var(--panel-line);
}
.lang-switch a {
  color: var(--text-faint);
  font-weight: 600;
}
.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--text);
}
.lang-switch a[aria-current="true"] {
  color: var(--emerald-strong);
}

/* ---- language switcher (mobile, inside the nav dropdown) ---- */
.lang-switch-mobile {
  display: none;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 16px 4px 6px;
  margin-top: 8px;
  border-top: 1px solid var(--panel-line);
  font-size: 14px;
}
.lang-switch-mobile a {
  color: var(--text-muted);
  font-weight: 600;
}
.lang-switch-mobile a[aria-current="true"] {
  color: var(--emerald-strong);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.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);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 9px 0;
  margin: 0;
  font-size: 11.5px;
  color: var(--text-faint);
  opacity: 0.85;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-inline: 7px;
  color: var(--text-faint);
  opacity: 0.6;
}
.breadcrumbs a {
  color: var(--text-faint);
  text-decoration: none;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--emerald-strong);
}
.breadcrumbs li[aria-current] {
  color: var(--text-muted);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 84px 0 96px;
  background:
    radial-gradient(60% 55% at 78% 8%, rgba(24, 185, 129, 0.13), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  line-height: 1.14;
}
.hero-copy h1 span {
  color: var(--emerald-strong);
}
.hero-copy .lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 46ch;
}
.hero-copy .eyebrow {
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-stats {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--panel-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero-stats dt {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.hero-stats dd {
  margin-top: 5px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---- desktop window mockup (shared component) ---- */
.window-mock {
  background: var(--panel);
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.window-titlebar {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--panel-strong);
  border-bottom: 1px solid var(--panel-line);
  position: relative;
}
.window-titlebar .dots {
  display: flex;
  gap: 7px;
}
.window-titlebar .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--panel-line-strong);
}
.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12.5px;
  color: var(--text-faint);
  font-weight: 600;
}
.window-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 340px;
}

/* ---- real product screenshot frame (shared component) ---- */
.shot-frame {
  background: var(--panel);
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  line-height: 0;
}
.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.mock-sidebar {
  border-inline-end: 1px solid var(--panel-line);
  padding: 16px 14px;
  background: color-mix(in srgb, var(--panel) 92%, black 8%);
}
.mock-search {
  font-size: 12px;
  color: var(--text-faint);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  margin-bottom: 14px;
}
.mock-group-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  padding: 8px 6px;
  border-radius: 8px;
  color: var(--text-muted);
}
.mock-group-list li.checked {
  background: var(--emerald-dim);
  color: var(--text);
  font-weight: 600;
}
.mock-check {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.5px solid var(--panel-line-strong);
  flex-shrink: 0;
}
.mock-group-list li.checked .mock-check {
  background: var(--emerald);
  border-color: var(--emerald);
  position: relative;
}
.mock-group-list li.checked .mock-check::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 4px;
  border-inline-start: 1.6px solid #052018;
  border-bottom: 1.6px solid #052018;
  transform: rotate(-45deg) translate(0.5px, -1px);
}
.mock-main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-composer {
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--panel) 90%, black 10%);
}
.mock-composer p {
  color: var(--text);
}
.mock-attachment {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-faint);
  border: 1px dashed var(--panel-line-strong);
  border-radius: 999px;
  padding: 5px 12px;
}
.mock-queue {
  display: grid;
  gap: 8px;
}
.mock-queue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 9px 12px;
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  color: var(--text-muted);
}
.status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.status.sent {
  color: var(--sent);
  background: rgba(47, 227, 159, 0.12);
}
.status.sending {
  color: var(--stopped);
  background: rgba(217, 164, 65, 0.12);
}
.status.pending {
  color: var(--pending);
  background: rgba(125, 154, 143, 0.14);
}
.status.failed {
  color: var(--failed);
  background: rgba(226, 96, 74, 0.14);
}
.status.stopped {
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Value section
   ========================================================================== */
.value {
  padding: 100px 0;
  border-top: 1px solid var(--panel-line);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 64px;
  align-items: center;
}
.value-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  max-width: 16ch;
}
.value-list {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}
.value-list li {
  padding-inline-start: 22px;
  position: relative;
  font-size: 15.5px;
  color: var(--text-muted);
}
.value-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--emerald);
  transform: rotate(45deg);
}
.value-list strong {
  color: var(--text);
  font-weight: 700;
}

.detail-card {
  background: var(--panel);
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-tight);
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--panel-line);
  font-size: 14.5px;
  color: var(--text-muted);
}
.detail-row b {
  font-size: 22px;
  color: var(--text);
  font-weight: 800;
}
.detail-row b.accent {
  color: var(--emerald-strong);
}
.detail-row.small {
  font-size: 13px;
  padding: 9px 0;
}
.detail-row.small b {
  font-size: 15px;
}
.detail-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--panel-strong);
  overflow: hidden;
  margin: 4px 0 6px;
}
.detail-progress .bar {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-strong));
  border-radius: 999px;
}

/* ==========================================================================
   Workflow
   ========================================================================== */
.workflow {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
}
.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 64px;
}
.workflow-line {
  position: absolute;
  top: 15px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: repeating-linear-gradient(to left, var(--panel-line-strong) 0 8px, transparent 8px 16px);
}
.workflow-step {
  position: relative;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--emerald-line);
  color: var(--emerald-strong);
  font-size: 12.5px;
  font-weight: 800;
  display: grid;
  place-items: center;
  z-index: 2;
}
.step-mock {
  width: 100%;
  max-width: 230px;
  height: 150px;
  background: var(--panel);
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-tight);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: start;
}
.workflow-step h3 {
  font-size: 17px;
}
.workflow-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 26ch;
}

.qr-mock {
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.qr-grid {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  background: var(--text);
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
}
.qr-grid span {
  background: var(--bg);
  border-radius: 1px;
}
.qr-caption {
  font-size: 11px;
  color: var(--text-faint);
}

.groups-mock .mock-search {
  margin-bottom: 10px;
}
.groups-mock .mini-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
  padding: 5px 0;
}
.groups-mock .mini-list li.checked {
  color: var(--text);
  font-weight: 600;
}
.groups-mock .mini-check {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1.4px solid var(--panel-line-strong);
  flex-shrink: 0;
}
.groups-mock .mini-list li.checked .mini-check {
  background: var(--emerald);
  border-color: var(--emerald);
}

.send-mock {
  justify-content: center;
  gap: 10px;
}
.send-mock .mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  padding: 7px 10px;
}
.send-mock .status {
  font-size: 9.5px;
  padding: 2px 7px;
}

/* ==========================================================================
   Showcase (tabs)
   ========================================================================== */
.showcase {
  padding: 104px 0;
}
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 40px 0 44px;
  border: 1px solid var(--panel-line);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin-inline: auto;
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.tab:hover {
  color: var(--text);
}
.tab.active {
  background: var(--emerald-dim);
  color: var(--emerald-strong);
}
.showcase-stage {
  max-width: 860px;
  margin: 0 auto;
}
.showcase-panel {
  display: none;
}
.showcase-panel.active {
  display: block;
  animation: fadein 0.4s var(--ease);
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.license-mock {
  max-width: 380px;
  margin: 40px auto 0;
  padding: 30px 28px;
  text-align: center;
}
.license-mock .lock-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--emerald-dim);
  color: var(--emerald-strong);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.license-mock h4 {
  font-size: 15.5px;
  font-weight: 800;
}
.license-mock p {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 6px;
}
.license-input {
  margin-top: 20px;
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.08em;
}
.license-mock .btn {
  width: 100%;
  margin-top: 14px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing {
  padding: 104px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
}
.pricing-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--emerald-line);
}
.plan-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
}
.plan-price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .amt {
  font-size: 32px;
  font-weight: 800;
}
.plan-price .cur {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}
.plan-period {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 3px;
}
.plan-divider {
  height: 1px;
  background: var(--panel-line);
  margin: 18px 0;
}
.plan-features {
  display: grid;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.plan-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 1px;
  background: var(--emerald);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.plan .spacer {
  flex: 1;
}
.plan .btn {
  margin-top: 22px;
}
.plan.featured {
  border-color: var(--emerald);
  box-shadow: var(--shadow-lift);
  position: relative;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}
.plan-badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 18px;
  background: var(--emerald);
  color: #052018;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
}
.pricing-foot {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 90px 0;
  border-top: 1px solid var(--panel-line);
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-md);
  background: var(--panel);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: var(--emerald-strong);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 68ch;
}

/* ==========================================================================
   Notice
   ========================================================================== */
.notice {
  padding: 76px 0;
}
.notice-box {
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.notice-box h3 {
  font-size: 16px;
}
.notice-box p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 70ch;
}

/* ==========================================================================
   Studio band
   ========================================================================== */
.studio {
  padding: 60px 0 90px;
}
.studio-inner {
  text-align: center;
  border-top: 1px solid var(--panel-line);
  padding-top: 56px;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.studio-inner p:first-child {
  font-size: 17px;
  font-weight: 700;
}
.studio-inner .btn {
  margin-top: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--panel-line);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a:hover {
  color: var(--emerald-strong);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .main-nav {
    position: absolute;
    top: 88px;
    inset-inline: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--panel-line);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 20px 22px;
    display: none;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--panel-line);
  }
  .main-nav .mobile-cta {
    display: flex;
    margin-top: 16px;
  }
  .lang-switch {
    display: none;
  }
  .lang-switch-mobile {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-track {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .workflow-line {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .window-body {
    grid-template-columns: 1fr;
  }
  .mock-sidebar {
    border-inline-end: 0;
    border-bottom: 1px solid var(--panel-line);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .showcase-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
