:root {
  --bg: #eef4ea;
  --paper: #fffdf7;
  --paper-soft: #f7f3e9;
  --green: #24543f;
  --green-dark: #163829;
  --green-soft: #416b56;
  --muted: #60766b;
  --line: rgba(36, 84, 63, 0.16);
  --line-strong: rgba(36, 84, 63, 0.28);
  --shadow: 0 24px 70px rgba(36, 84, 63, 0.13);
  --shadow-soft: 0 14px 34px rgba(36, 84, 63, 0.09);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 430;
  color: var(--green-dark);
  background:
    radial-gradient(circle at 88% 6%, rgba(203, 219, 199, 0.82), transparent 26%),
    radial-gradient(circle at 4% 90%, rgba(203, 219, 199, 0.72), transparent 26%),
    linear-gradient(rgba(36, 84, 63, 0.032) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 100% 36px, auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 14%, rgba(255, 255, 255, 0.62), transparent 20%),
    radial-gradient(circle at 22% 88%, rgba(255, 255, 255, 0.54), transparent 22%);
  opacity: 0.85;
}

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

.page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  padding: 28px 0 46px;
}

/* Header */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 54px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 780;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.app-logo {
  width: 76px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a,
.button,
.lang-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition: 0.18s ease;
}

.nav-links a:hover,
.button:hover,
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown summary {
  list-style: none;
}

.lang-dropdown summary::-webkit-details-marker {
  display: none;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  user-select: none;
}

.lang-toggle::after {
  content: "▾";
  font-size: 10px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 186px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.97);
  box-shadow: var(--shadow);
  z-index: 50;
  display: grid;
  gap: 6px;
}

.lang-menu a {
  display: block;
  text-align: left;
  padding: 11px 12px;
  border-radius: 12px;
  box-shadow: none;
  background: transparent;
}

.lang-menu a:hover {
  background: #e6efe4;
}

/* Typography */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--green);
  font-size: clamp(50px, 6.4vw, 74px);
  line-height: 0.96;
  font-weight: 780;
  letter-spacing: -0.07em;
  margin-bottom: 0;
}

h2 {
  color: var(--green);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.048em;
  margin-bottom: 0;
}

h3 {
  color: var(--green);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
}

p,
li {
  color: #345545;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 430;
  letter-spacing: -0.01em;
}

.lead {
  color: #2f4f40;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 430;
  max-width: 680px;
  margin-top: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4c8a67;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 760;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6fc58d;
  box-shadow: 0 0 14px rgba(111, 197, 141, 0.72);
}

/* Common blocks */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.hero-card,
.panel,
.legal,
.cta {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 247, 0.82));
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 48px 44px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary {
  color: #fffdf7;
  background: var(--green);
  border-color: var(--green);
  font-weight: 680;
  box-shadow: 0 16px 34px rgba(36, 84, 63, 0.18);
}

.primary:hover {
  color: #fffdf7;
  background: #183d2d;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.badge {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--green);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 560;
}

/* App preview */

.visual {
  min-height: 500px;
  padding: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(220, 231, 216, 0.9), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(246, 242, 233, 0.56));
}

.phone {
  min-height: 428px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(36, 84, 63, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(247, 244, 237, 0.94));
  box-shadow:
    0 24px 60px rgba(36, 84, 63, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.status {
  color: var(--green);
  border: 2px solid var(--green-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
}

.phone-dot {
  width: 42px;
  height: 42px;
  background: url("/assets/logo.svg") center / contain no-repeat;
  font-size: 0;
}

.big-number {
  margin-top: 34px;
  color: var(--green);
  font-size: 68px;
  line-height: 0.92;
  font-weight: 780;
  letter-spacing: -0.06em;
}

.phone-text {
  max-width: 420px;
  margin-top: 16px;
  color: #345545;
  font-size: 15px;
  line-height: 1.46;
}

.mini-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini {
  padding: 15px 16px;
  min-height: 74px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 84, 63, 0.10);
  box-shadow: 0 12px 28px rgba(36, 84, 63, 0.07);
}

.mini b {
  display: block;
  color: var(--green);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 650;
  margin-bottom: 5px;
}

.mini span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 430;
}

/* Content sections */

.section-title {
  margin: 56px 0 18px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 36px;
  align-items: start;
}

.section-title p {
  max-width: 620px;
  margin: 25px 0 0;
  color: #345545;
  font-size: 16px;
  line-height: 1.58;
}

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

.panel {
  padding: 24px;
  min-height: 150px;
}

.panel p {
  margin-bottom: 0;
}

.trust-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.trust-item b {
  display: block;
  color: var(--green);
  font-size: 15px;
  font-weight: 660;
  margin-bottom: 6px;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

/* CTA */

.cta {
  margin-top: 40px;
  padding: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(215, 228, 215, 0.82), transparent 34%),
    rgba(255, 253, 247, 0.86);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  margin: 0;
  max-width: 680px;
}

/* Legal */

.legal {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
}

.legal h1 {
  font-size: clamp(36px, 4.8vw, 56px);
}

.legal h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal h3 {
  margin-top: 22px;
}

.legal a {
  color: var(--green);
  font-weight: 620;
  border-bottom: 1px solid rgba(36, 84, 63, 0.24);
}

.legal ul {
  padding-left: 22px;
}

.footer {
  margin-top: 48px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* Responsive */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .visual {
    min-height: auto;
  }

  .phone {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-title p {
    margin-top: 0;
  }

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

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background-size: auto, auto, 100% 30px, auto;
  }

  .page {
    width: min(100% - 22px, 1120px);
    padding-top: 14px;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
  }

  .brand {
    justify-content: flex-start;
    font-size: 22px;
  }

  .app-logo {
    width: 54px;
    height: 42px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 2px 9px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a,
  .lang-toggle {
    min-width: max-content;
    padding: 9px 12px;
    font-size: 12px;
  }

  .lang-dropdown {
    min-width: max-content;
  }

  .lang-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    min-width: auto;
  }

  .hero {
    gap: 16px;
  }

  .hero-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  h1 {
    font-size: 42px;
    line-height: 0.98;
    letter-spacing: -0.058em;
  }

  h2 {
    font-size: 27px;
    letter-spacing: -0.038em;
  }

  h3 {
    font-size: 18px;
  }

  p,
  li {
    font-size: 15.5px;
    line-height: 1.56;
  }

  .lead {
    font-size: 16px;
    line-height: 1.54;
    margin-top: 18px;
  }

  .kicker {
    font-size: 10px;
    letter-spacing: 0.13em;
    margin-bottom: 15px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    padding: 13px 14px;
  }

  .badge-row {
    margin-top: 18px;
  }

  .badge {
    font-size: 11px;
    padding: 7px 10px;
  }

  .visual {
    padding: 14px;
    border-radius: 26px;
  }

  .phone {
    padding: 20px;
    border-radius: 23px;
  }

  .status {
    font-size: 12px;
    padding: 7px 13px;
  }

  .phone-dot {
    width: 36px;
    height: 36px;
  }

  .big-number {
    font-size: 48px;
    margin-top: 22px;
  }

  .phone-text {
    font-size: 14px;
    line-height: 1.42;
  }

  .mini-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .mini {
    min-height: auto;
    padding: 13px 14px;
    border-radius: 17px;
  }

  .section-title {
    margin-top: 34px;
    margin-bottom: 14px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.52;
  }

  .grid {
    gap: 12px;
  }

  .panel {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .cta {
    margin-top: 26px;
    padding: 22px;
    border-radius: 24px;
  }

  .legal {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .legal h1 {
    font-size: 34px;
  }

  .legal h2 {
    font-size: 22px;
    margin-top: 28px;
  }

  .footer {
    margin-top: 30px;
    padding-bottom: 18px;
  }
}

@media (max-width: 430px) {
  .page {
    width: min(100% - 18px, 1120px);
  }

  .brand {
    font-size: 21px;
  }

  .app-logo {
    width: 50px;
    height: 38px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-card {
    padding: 26px 20px;
  }
}

/* Home layout professional fix */
.section-title {
  margin: 64px auto 22px;
  display: block;
  max-width: 760px;
  text-align: center;
}

.section-title .kicker {
  justify-content: center;
  margin-bottom: 14px;
}

.section-title h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-title p {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.62;
  color: #345545;
}

.grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.panel {
  min-height: 190px;
  padding: 30px 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.panel h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.panel p {
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

.trust-strip {
  max-width: 1040px;
  margin: 48px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  min-height: 112px;
  padding: 22px;
}

.trust-item b {
  font-size: 16px;
  margin-bottom: 8px;
}

.trust-item span {
  font-size: 14px;
  line-height: 1.45;
}

.cta {
  max-width: 1040px;
  margin: 44px auto 0;
}

.hero {
  margin-bottom: 10px;
}

/* Make first screen more balanced */
@media (min-width: 1181px) {
  .hero-card,
  .visual {
    min-height: 520px;
  }
}

/* Tablet */
@media (max-width: 920px) {
  .section-title {
    max-width: 720px;
    text-align: left;
  }

  .section-title .kicker {
    justify-content: flex-start;
  }

  .section-title h2,
  .section-title p {
    margin-left: 0;
    margin-right: 0;
  }

  .grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .panel {
    min-height: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    max-width: 720px;
  }

  .cta {
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .section-title {
    margin-top: 42px;
    margin-bottom: 16px;
    text-align: left;
  }

  .section-title .kicker {
    justify-content: flex-start;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .section-title p {
    font-size: 16px;
    line-height: 1.56;
    margin-top: 12px;
  }

  .grid {
    gap: 12px;
  }

  .panel {
    padding: 22px;
    border-radius: 24px;
  }

  .panel h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .panel p {
    font-size: 15.5px;
    line-height: 1.54;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 10px;
  }

  .trust-item {
    min-height: auto;
    padding: 18px;
  }

  .cta {
    margin-top: 28px;
  }
}

/* Premium calm layout fix */
.section-title {
  margin: 54px auto 18px;
  max-width: 720px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 720;
}

.section-title p {
  max-width: 600px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.55;
  color: #456456;
}

.grid {
  max-width: 1000px;
  gap: 18px;
}

.panel {
  min-height: 148px;
  padding: 24px 24px;
  border-radius: 26px;
}

.panel h3 {
  font-size: 18px;
  line-height: 1.22;
  font-weight: 650;
  margin-bottom: 10px;
}

.panel p {
  font-size: 15px;
  line-height: 1.55;
  color: #345545;
}

.kicker {
  font-size: 10px;
  letter-spacing: 0.17em;
  margin-bottom: 12px;
}

/* Special correction for long flow headline */
.section-title h2 {
  text-wrap: balance;
}

.section-title h2 br {
  display: none;
}

/* Make flow section less aggressive */
.section-title h2 {
  word-spacing: -0.04em;
}

/* Softer card rhythm */
.trust-strip {
  max-width: 1000px;
  margin-top: 34px;
}

.trust-item {
  min-height: 96px;
  padding: 18px;
  border-radius: 20px;
}

.trust-item b {
  font-size: 14px;
}

.trust-item span {
  font-size: 13px;
}

/* Hero stays premium, not oversized */
.hero-card {
  min-height: 470px;
  padding: 42px 40px;
}

.visual {
  min-height: 470px;
  padding: 32px;
}

.phone {
  min-height: 400px;
}

/* Mobile calm fix */
@media (max-width: 760px) {
  .section-title {
    margin-top: 36px;
    margin-bottom: 14px;
    text-align: left;
  }

  .section-title h2 {
    font-size: 25px;
    line-height: 1.14;
    letter-spacing: -0.032em;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .panel {
    padding: 18px;
    border-radius: 22px;
  }

  .panel h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .panel p {
    font-size: 14.5px;
    line-height: 1.48;
  }

  .hero-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .visual {
    min-height: auto;
    padding: 14px;
  }

  .phone {
    min-height: auto;
  }
}

/* Mobile compact professional fix */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 20px, 1120px) !important;
    padding-top: 12px !important;
    padding-bottom: 32px !important;
  }

  .nav {
    margin-bottom: 20px !important;
  }

  .brand {
    font-size: 21px !important;
  }

  .app-logo {
    width: 48px !important;
    height: 36px !important;
  }

  .nav-links a,
  .lang-toggle {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  .hero {
    gap: 14px !important;
  }

  .hero-card {
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }

  .hero-card h1 {
    font-size: 38px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  .lead {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-top: 14px !important;
  }

  .kicker {
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 12px !important;
  }

  .actions {
    margin-top: 18px !important;
    gap: 8px !important;
  }

  .button {
    font-size: 12px !important;
    padding: 11px 12px !important;
  }

  .badge-row {
    margin-top: 16px !important;
    gap: 7px !important;
  }

  .badge {
    font-size: 10.5px !important;
    padding: 7px 9px !important;
  }

  .visual {
    padding: 12px !important;
    border-radius: 24px !important;
  }

  .phone {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .status {
    font-size: 11px !important;
    padding: 7px 11px !important;
  }

  .big-number {
    font-size: 42px !important;
    margin-top: 18px !important;
  }

  .phone-text {
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    margin-top: 12px !important;
  }

  .mini-grid {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .mini {
    padding: 11px 12px !important;
    border-radius: 16px !important;
  }

  .mini b {
    font-size: 13.5px !important;
    margin-bottom: 3px !important;
  }

  .mini span {
    font-size: 12px !important;
  }

  .section-title {
    margin-top: 30px !important;
    margin-bottom: 12px !important;
  }

  .section-title h2 {
    font-size: 23px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.028em !important;
  }

  .section-title p {
    font-size: 14px !important;
    line-height: 1.46 !important;
    margin-top: 8px !important;
  }

  .grid {
    gap: 10px !important;
  }

  .panel {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .panel h3 {
    font-size: 15.5px !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }

  .panel p {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
  }

  .trust-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
    margin-top: 24px !important;
  }

  .trust-item {
    min-height: auto !important;
    padding: 13px !important;
    border-radius: 18px !important;
  }

  .trust-item b {
    font-size: 13.5px !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
  }

  .trust-item span {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .cta {
    margin-top: 24px !important;
    padding: 20px 18px !important;
    border-radius: 22px !important;
  }

  .cta h2 {
    font-size: 24px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.03em !important;
  }

  .cta p {
    font-size: 14px !important;
    line-height: 1.48 !important;
  }

  .footer {
    margin-top: 26px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  .hero-card h1 {
    font-size: 36px !important;
  }

  .section-title h2 {
    font-size: 22px !important;
  }

  .trust-strip {
    grid-template-columns: 1fr !important;
  }

  .trust-item {
    padding: 14px 15px !important;
  }
}

/* Compact premium content system */
.section-title {
  margin-top: 46px !important;
  margin-bottom: 16px !important;
  max-width: 660px !important;
}

.section-title h2 {
  font-size: clamp(26px, 2.25vw, 34px) !important;
  line-height: 1.12 !important;
}

.section-title p {
  max-width: 540px !important;
  font-size: 15px !important;
  line-height: 1.48 !important;
  margin-top: 10px !important;
}

.grid {
  max-width: 960px !important;
  gap: 14px !important;
}

.panel {
  min-height: 118px !important;
  padding: 20px 20px !important;
  border-radius: 22px !important;
}

.panel h3 {
  font-size: 16px !important;
  margin-bottom: 7px !important;
}

.panel p {
  font-size: 14px !important;
  line-height: 1.42 !important;
}

.trust-strip {
  max-width: 960px !important;
  margin-top: 28px !important;
  gap: 10px !important;
}

.trust-item {
  min-height: auto !important;
  padding: 14px 15px !important;
  border-radius: 18px !important;
}

.trust-item b {
  font-size: 13px !important;
  margin-bottom: 4px !important;
}

.trust-item span {
  font-size: 12px !important;
  line-height: 1.28 !important;
}

.cta {
  max-width: 760px !important;
  margin-top: 28px !important;
  padding: 24px !important;
  border-radius: 24px !important;
}

.cta h2 {
  font-size: clamp(24px, 2.2vw, 32px) !important;
}

.cta p {
  font-size: 15px !important;
  line-height: 1.45 !important;
}

/* Hide secondary visual noise on mobile */
@media (max-width: 760px) {
  .section-title {
    margin-top: 28px !important;
    margin-bottom: 10px !important;
  }

  .section-title h2 {
    font-size: 22px !important;
  }

  .section-title p {
    font-size: 13.5px !important;
    line-height: 1.42 !important;
  }

  .grid {
    gap: 9px !important;
  }

  .panel {
    padding: 14px 15px !important;
    border-radius: 18px !important;
    min-height: auto !important;
  }

  .panel h3 {
    font-size: 14.5px !important;
    margin-bottom: 4px !important;
  }

  .panel p {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr !important;
    margin-top: 18px !important;
  }

  .trust-item {
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .trust-item b {
    font-size: 12.5px !important;
  }

  .trust-item span {
    font-size: 11px !important;
  }

  .cta {
    padding: 18px !important;
    margin-top: 20px !important;
  }

  .cta h2 {
    font-size: 21px !important;
  }

  .cta p {
    font-size: 13px !important;
  }

  /* keep page visual, hide excess after essential blocks */
  .section-title:nth-of-type(n+4),
  .section-title:nth-of-type(n+4) + .grid {
    display: none !important;
  }
}

/* Legal pages compact premium style */
.legal {
  max-width: 860px !important;
  padding: 34px 36px !important;
  border-radius: 30px !important;
}

.legal .kicker {
  margin-bottom: 14px !important;
}

.legal h1 {
  font-size: clamp(30px, 3.6vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 14px !important;
}

.legal .lead {
  font-size: 15.5px !important;
  line-height: 1.5 !important;
  max-width: 760px !important;
  margin: 0 0 24px !important;
  color: #426353 !important;
}

.legal h2 {
  font-size: 20px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  margin: 26px 0 8px !important;
  padding-top: 2px !important;
}

.legal h3 {
  font-size: 16px !important;
  line-height: 1.25 !important;
  margin: 18px 0 6px !important;
}

.legal p,
.legal li {
  font-size: 14.5px !important;
  line-height: 1.52 !important;
  color: #345545 !important;
}

.legal p {
  margin: 0 0 10px !important;
}

.legal ul {
  margin: 8px 0 14px !important;
  padding-left: 20px !important;
}

.legal li {
  margin-bottom: 6px !important;
}

.legal a {
  font-weight: 620 !important;
  color: #24543f !important;
}

.legal strong {
  font-weight: 650 !important;
  color: #1f4937 !important;
}

/* Make legal navigation clean */
.legal + .footer {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile legal pages */
@media (max-width: 760px) {
  .legal {
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  .legal h1 {
    font-size: 28px !important;
    line-height: 1.12 !important;
  }

  .legal .lead {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
  }

  .legal h2 {
    font-size: 17px !important;
    margin-top: 22px !important;
    margin-bottom: 6px !important;
  }

  .legal h3 {
    font-size: 14.5px !important;
  }

  .legal p,
  .legal li {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .legal ul {
    padding-left: 18px !important;
  }
}

/* Final app logo in header */
.brand {
  gap: 0 !important;
}

.brand .app-logo {
  width: 330px !important;
  height: 84px !important;
  object-fit: contain !important;
}

.brand span {
  display: none !important;
}

@media (max-width: 760px) {
  .brand .app-logo {
    width: 260px !important;
    height: 68px !important;
  }
}

@media (max-width: 430px) {
  .brand .app-logo {
    width: 225px !important;
    height: 58px !important;
  }
}

/* Final logo + favicon pass */
.brand {
  display: flex;
  align-items: center;
  gap: 0 !important;
}

.brand .app-logo,
.brand img {
  width: 340px !important;
  max-width: 100%;
  height: auto !important;
  display: block;
}

@media (max-width: 760px) {
  .brand .app-logo,
  .brand img {
    width: 250px !important;
  }
}

@media (max-width: 430px) {
  .brand .app-logo,
  .brand img {
    width: 220px !important;
  }
}

/* Logo final v48 */
.brand {
  gap: 0 !important;
}

.brand span {
  display: none !important;
}

.brand .app-logo,
.brand img.app-logo {
  width: 340px !important;
  height: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

.phone-dot {
  background-image: url("/assets/mymotivator-favicon.svg?v=48") !important;
}

@media (max-width: 760px) {
  .brand .app-logo,
  .brand img.app-logo {
    width: 255px !important;
  }
}

@media (max-width: 430px) {
  .brand .app-logo,
  .brand img.app-logo {
    width: 220px !important;
  }
}

/* Header/logo emergency fix v49 */
.nav {
  align-items: center !important;
  margin-bottom: 34px !important;
}

.brand {
  flex: 0 1 auto !important;
  min-width: 0 !important;
}

.brand span {
  display: none !important;
}

.brand .app-logo,
.brand img.app-logo {
  width: 255px !important;
  max-width: 255px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.nav-links {
  gap: 8px !important;
}

.nav-links a,
.lang-toggle {
  font-size: 13px !important;
  line-height: 1 !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

@media (min-width: 761px) {
  .nav {
    flex-direction: row !important;
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: stretch !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  .brand .app-logo,
  .brand img.app-logo {
    width: 205px !important;
    max-width: 205px !important;
  }

  .nav-links {
    gap: 7px !important;
  }

  .nav-links a,
  .lang-toggle {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }
}

@media (max-width: 430px) {
  .brand .app-logo,
  .brand img.app-logo {
    width: 185px !important;
    max-width: 185px !important;
  }
}
