:root {
  --ink: #0d1729;
  --ink-2: #16243a;
  --muted: #5b6a82;
  --line: #d9e4f2;
  --soft: #eef5fb;
  --white: #ffffff;
  --blue: #2da8e8;
  --cyan: #27c7c2;
  --green: #22b66f;
  --pink: #e62e75;
  --amber: #f5aa24;
  --red: #e73a4f;
  --shadow: 0 24px 70px rgba(13, 23, 41, .14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eaf2f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

.site-header {
  min-height: 860px;
  padding-bottom: 130px;
  color: var(--white);
  background:
    linear-gradient(rgba(13, 23, 41, .86), rgba(13, 23, 41, .91)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
  position: relative;
  overflow: hidden;
}

.nav-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 3;
}

.brand img {
  width: 154px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  max-width: calc(100vw - 280px);
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .nav-cta {
  color: var(--ink);
  background: var(--white);
}

.language-picker {
  position: relative;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
  cursor: pointer;
}

.language-button:hover {
  color: var(--ink);
  background: #fff;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(7, 18, 37, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.language-menu.is-open {
  display: grid;
  gap: 6px;
}

.language-menu button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.language-menu button:hover {
  color: var(--ink);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  font-size: 28px;
}

.hero {
  width: min(1320px, calc(100% - 40px));
  margin: 68px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: start;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 790px;
  margin: 18px 0;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 650;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #c9f3ff;
  background: rgba(45, 168, 232, .16);
  border: 1px solid rgba(45, 168, 232, .36);
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #136d96;
  background: #e1f4ff;
  border-color: #bfe7fb;
}

.eyebrow.light {
  color: #e8fbff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.hero-actions,
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  position: relative;
  z-index: 4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: #071225;
  box-shadow: 0 18px 42px rgba(7, 18, 37, .28);
}

.btn-secondary,
.btn-plan {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
}

.plans .btn-plan {
  color: var(--ink);
  background: #eef6ff;
  border-color: #d3e6f7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.trust-row span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.sales-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin-top: 28px;
}

.sales-proof strong {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.hero-dashboard {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 18px;
  margin-top: 12px;
}

.hero-visual {
  min-height: 610px;
  position: relative;
}

.phone-fan {
  position: relative;
  min-height: 610px;
  perspective: 1200px;
}

.fan-shot {
  position: absolute;
  top: 0;
  width: 310px;
  max-width: 58%;
  aspect-ratio: 740 / 1600;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, .92);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  background: #0d1729;
}

.fan-shot-left {
  left: 0;
  transform: rotate(-9deg) translateY(44px);
  z-index: 1;
}

.fan-shot-right {
  right: 6px;
  transform: rotate(7deg);
  z-index: 2;
}

.fan-shot:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  z-index: 5;
}

.fan-shot-left:hover {
  transform: rotate(-2deg) translateY(10px) scale(1.02);
}

.fan-badge {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 6;
  width: min(340px, 88%);
  transform: translateX(-50%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 18, 37, .86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.fan-badge i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 14px;
  color: #9fe7ff;
  background: rgba(45, 168, 232, .18);
}

.fan-badge strong {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}

.fan-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.45;
}

.dash-top {
  display: flex;
  gap: 7px;
  padding: 12px;
}

.dash-top span,
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric {
  min-height: 132px;
  padding: 20px;
  border-radius: 20px;
  color: var(--white);
}

.metric i {
  font-size: 30px;
}

.metric strong {
  display: block;
  margin-top: 12px;
  font-size: 32px;
}

.metric small {
  color: rgba(255, 255, 255, .78);
}

.pink {
  background: var(--pink);
}

.cyan {
  background: var(--cyan);
}

.green {
  background: var(--green);
}

.kanban-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  background: #f5f9fd;
  color: var(--ink);
}

.kanban-preview span {
  min-height: 100px;
  padding: 12px;
  border-radius: 16px;
  background: #dde8f4;
  font-size: 13px;
}

.section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.intro-strip {
  margin-top: -68px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}

.intro-strip strong {
  font-size: 19px;
}

.intro-strip span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.intro-strip a {
  color: #116f9b;
  white-space: nowrap;
}

.video-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding-top: 74px;
}

.video-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(13, 23, 41, .08);
}

.video-copy h2 {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.video-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.video-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.video-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #d7e6f2;
  border-radius: 16px;
  color: #19334f;
  background: #f7fbff;
  font-weight: 900;
}

.video-points i {
  color: var(--blue);
}

.video-shell {
  padding: 12px;
  border: 1px solid #cfe0ef;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #edf8ff 52%, #effcf6 100%);
  box-shadow: 0 28px 80px rgba(13, 23, 41, .14);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #cfe0ef;
  border-radius: 28px;
  background: #071225;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 18, 37, .82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  font-size: 13px;
  font-weight: 900;
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 8px 4px;
}

.video-caption strong {
  color: var(--ink);
  font-size: 17px;
}

.video-caption span {
  max-width: 520px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 14px 0 8px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.plan-card,
.screen-card,
.mockup-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(13, 23, 41, .08);
}

.feature-card:hover,
.mockup-card:hover,
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(13, 23, 41, .13);
}

.feature-card,
.mockup-card,
.plan-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
}

.feature-card i {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #0b6f9b;
  background: #e4f6ff;
  font-size: 25px;
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.focus-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 40px;
}

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.focus-card h2 {
  max-width: 620px;
  margin: 20px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
}

.focus-card p {
  max-width: 720px;
  color: inherit;
  font-size: 18px;
  line-height: 1.65;
}

.crm-focus {
  color: var(--white);
  background: #0d1729;
}

.crm-focus::after,
.social-focus::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 42px;
  transform: rotate(18deg);
  background: rgba(56, 189, 248, .12);
}

.social-focus {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 62%, #effcf6 100%);
}

.social-focus .eyebrow.light {
  color: #0b5e84;
  background: #e8f7ff;
}

.focus-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.focus-list > span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.social-focus .focus-list > span {
  border-color: #d7e6f2;
  background: rgba(255, 255, 255, .72);
}

.focus-list i {
  color: var(--green);
}

.screenshots {
  padding-top: 40px;
}

.mockup-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mockup-card {
  padding: 18px;
  min-height: 310px;
}

.mockup-card.wide {
  grid-column: span 2;
}

.mockup-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 18px;
}

.mockup-label i {
  color: var(--blue);
}

.mockup-browser {
  min-height: 236px;
  border: 1px solid #cfe0ef;
  border-radius: 18px;
  background: #f8fbfe;
  padding: 14px;
  overflow: hidden;
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.browser-dots span {
  background: #b5c6d8;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-stat-row div,
.screen-metrics div {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbe8f4;
}

.dash-stat-row i,
.screen-metrics i {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.dash-stat-row b,
.screen-metrics b {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.dash-stat-row small {
  color: var(--muted);
}

.mock-chart {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mock-chart span,
.survey-bars span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.mini-kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.mini-kanban section {
  min-height: 190px;
  padding: 14px;
  border-radius: 16px;
  background: #dde8f4;
  border: 1px solid #cad9e9;
}

.mini-kanban h4 {
  margin: 0;
  font-size: 20px;
}

.mini-kanban em {
  display: inline-block;
  margin: 12px 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: #9a3e08;
  background: #fff3dc;
  font-style: normal;
  font-size: 12px;
}

.mini-kanban p {
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.lead-pill {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 23, 41, .08);
}

.lead-pill::after {
  content: "";
  float: right;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.lead-pill.red::after {
  background: var(--red);
}

.status-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #087344;
  background: #dcfce9;
}

.qr-box {
  display: grid;
  place-items: center;
  gap: 10px;
  margin-top: 18px;
  min-height: 160px;
  border: 1px dashed #a8c6df;
  border-radius: 18px;
  color: var(--muted);
}

.qr-box i {
  font-size: 54px;
  color: var(--blue);
}

.store-hero {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.store-products span {
  height: 68px;
  border-radius: 14px;
  background: #e2edf8;
}

.store-mock button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  background: var(--amber);
  font-weight: 900;
}

.donut {
  width: 130px;
  height: 130px;
  margin: 12px auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 70%, var(--amber) 70% 86%, var(--red) 86% 100%);
  position: relative;
  font-size: 30px;
}

.donut::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #fff;
}

.donut {
  isolation: isolate;
}

.donut::after {
  content: "4.8";
  position: relative;
  z-index: 1;
}

.survey-bars {
  display: grid;
  gap: 10px;
}

.social-connects {
  display: grid;
  gap: 12px;
}

.social-connects span {
  padding: 13px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbe8f4;
}

.social-connects i {
  color: var(--blue);
  margin-right: 8px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbe8f4;
  margin-bottom: 10px;
}

.admin-row.head {
  color: var(--muted);
  background: #edf5fc;
  text-transform: uppercase;
  font-size: 12px;
}

.admin-row em {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #dcfce9;
  color: #087344;
  font-style: normal;
}

.legacy-screens {
  display: none;
}

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

.plan-card {
  padding: 28px;
}

.plan-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-10px);
}

.plan-card.master {
  border-color: #9ce7bd;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(24, 185, 106, .12);
}

.plan-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #8b3b00;
  background: #fff0d6;
  font-size: 12px;
  text-transform: uppercase;
}

.plan-card.master .plan-badge {
  color: #05613c;
  background: #dcfce7;
}

.plan-card h3 {
  margin: 20px 0 8px;
  font-size: 27px;
}

.plan-price {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.featured .plan-price {
  color: rgba(255, 255, 255, .76);
}

.featured .plan-price strong {
  color: var(--white);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.plan-card li {
  color: var(--muted);
}

.featured li {
  color: rgba(255, 255, 255, .82);
}

.plan-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
}

.plan-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.plan-card li::before {
  content: "\2713";
}

.security,
.cta-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
  padding: 46px;
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.security h2,
.cta-band h2 {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
}

.security p,
.cta-band p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
  font-size: 18px;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list span {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
}

.security-list i {
  color: var(--green);
  margin-right: 8px;
}

.cta-band {
  width: min(1320px, calc(100% - 40px));
  margin: 60px auto;
  grid-template-columns: 1fr auto;
  background: #0b172b;
}

.site-footer {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.site-footer img {
  width: 140px;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.language-suggestion {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: min(420px, calc(100vw - 28px));
  padding: 22px;
  border: 1px solid #cfe0ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 70px rgba(13, 23, 41, .22);
  backdrop-filter: blur(16px);
}

.language-suggestion strong {
  display: block;
  padding-right: 36px;
  font-size: 20px;
}

.language-suggestion p {
  margin: 8px 0 16px;
  color: var(--muted);
  line-height: 1.45;
}

.language-suggestion > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-suggestion .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.language-suggestion .btn-secondary {
  color: var(--ink);
  background: #eef6ff;
  border-color: #d3e6f7;
}

.suggestion-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  background: #eaf2f8;
}

.legal-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.legal-logo img {
  width: 150px;
  margin: 0 auto 28px;
}

.legal-card {
  padding: 34px;
}

.legal-card h1 {
  margin: 12px 0 8px;
  font-size: clamp(34px, 5vw, 56px);
}

.legal-card h2 {
  margin-top: 28px;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-notice {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin: 28px 0;
  border: 1px solid #bfe7fb;
  border-radius: 18px;
  background: #effaff;
}

.legal-notice i {
  color: var(--blue);
  font-size: 28px;
}

.legal-notice a {
  color: #0b72a1;
}

@media (max-width: 1050px) {
  .site-header {
    min-height: auto;
    padding-bottom: 120px;
  }

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

  .nav-links {
    max-width: none;
  }

  .feature-grid,
  .mockup-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-grid,
  .security,
  .cta-band,
  .focus-section,
  .video-section {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding-bottom: 100px;
  }

  .nav-shell,
  .section,
  .intro-strip,
  .cta-band,
  .site-footer {
    width: min(100% - 24px, 1320px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(13, 23, 41, .96);
  }

  .language-picker,
  .language-button {
    width: 100%;
  }

  .language-button {
    justify-content: space-between;
  }

  .language-menu {
    position: static;
    margin-top: 8px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    width: min(100% - 24px, 1320px);
    margin-top: 44px;
  }

  .hero-visual,
  .phone-fan {
    min-height: 520px;
  }

  .fan-shot {
    width: 245px;
    border-width: 7px;
    border-radius: 28px;
  }

  .fan-shot-left {
    left: 2px;
    transform: rotate(-8deg) translateY(58px);
  }

  .fan-shot-right {
    right: 2px;
    transform: rotate(7deg) translateY(6px);
  }

  .fan-badge {
    bottom: 0;
  }

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

  .hero p {
    font-size: 17px;
  }

  .dash-grid,
  .kanban-preview,
  .feature-grid,
  .mockup-showcase,
  .plan-grid,
  .dash-stat-row,
  .sales-proof {
    grid-template-columns: 1fr;
  }

  .mockup-card.wide {
    grid-column: auto;
  }

  .mini-kanban {
    grid-template-columns: repeat(4, 190px);
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .intro-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .security,
  .cta-band,
  .legal-card,
  .video-copy {
    padding: 24px;
  }

  .video-frame {
    border-radius: 20px;
  }

  .focus-list {
    grid-template-columns: 1fr;
  }

  .video-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-caption span {
    text-align: left;
  }
}
