@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #d8d8da;
  --text: #616668;
  --text-strong: #1e1c1f;
  --text-mid: #8f9098;
  --white: #ffffff;
  --card: #ececec;
  --line: #8a8a8a;
  --brand-red: #ff2e3e;
  --brand-orange: #f7904f;
  --brand-orange-strong: #ef6813;
  --brand-orange-flat: #ff7a1f;
  --brand-green: #28ad73;
  --grad-main: linear-gradient(100deg, #ff2e3e 0%, #ff4b45 38%, #f7904f 100%);
  --grad-pill: linear-gradient(95deg, #ff2e3e 0%, #f7904f 100%);
  --grad-card: linear-gradient(180deg, #ff8800 0%, #e2d9b8 100%);
  --radius-xl: 46px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-card: 0 18px 28px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: linear-gradient(90deg, #f1f2f4 0%, #ebedf0 18%, #d8d8da 48%, #d8d8da 100%);
  color: var(--text);
  line-height: 1.28;
}

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

a {
  color: inherit;
}

.container {
  width: min(1760px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding-top: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.menu-cluster {
  flex: 1;
  max-width: 1460px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 300px;
}

.pill-nav {
  flex: 1;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--grad-pill);
  color: #f9f2ee;
  padding: 12px 26px;
  font-size: calc(clamp(18px, 1.45vw, 47px) / 1);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-link {
  text-decoration: none;
  opacity: 0.96;
  transition: opacity 120ms ease;
}

.nav-link:hover {
  opacity: 1;
}


.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.22);
  font-size: 22px;
  line-height: 1;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.lang-flag:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.92);
}

.lang-flag.active {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.95);
}


.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.22);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.34);
}

.section {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
  gap: 58px;
  align-items: center;
}

.hero-banner {
  background: var(--grad-main);
  border-radius: var(--radius-lg);
  border-top-left-radius: var(--radius-md);
  padding: 54px 56px;
  clip-path: polygon(0 0, 93% 0, 100% 23%, 100% 100%, 0 100%);
}

.hero-title {
  margin: 0;
  font-size: calc(clamp(36px, 3.8vw, 86px) / 2);
  font-weight: 500;
  color: #fff7f2;
  line-height: 1.12;
}

.hero-title strong {
  font-weight: 800;
}

.hero-lead {
  margin: 52px 0 0;
  max-width: 1120px;
  font-size: calc(clamp(22px, 2.1vw, 54px) / 2);
  text-transform: uppercase;
  color: #6a6b6e;
}

.hero-lead strong {
  font-weight: 800;
  color: #4f5052;
}

.hero-cta-stack {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 54px;
  font-size: calc(clamp(19px, 1.7vw, 52px) / 2);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  cursor: pointer;
}

.btn-main {
  color: #fff4ef;
  background: var(--grad-pill);
}

.btn-muted {
  color: #f2f2f2;
  background: #aeacad;
}

.chat-wrap {
  display: flex;
  justify-content: flex-end;
}

.chat-mock {
  width: min(760px, 100%);
  filter: drop-shadow(var(--shadow-card));
}

h2 {
  margin: 0;
  font-size: calc(clamp(42px, 4.3vw, 116px) / 2);
  font-weight: 500;
  color: #787d7f;
}

h2 strong {
  color: #64696c;
  font-weight: 800;
}

.subhead {
  margin: 26px 0 0;
  font-size: calc(clamp(20px, 2.1vw, 56px) / 2);
  color: var(--text-mid);
}

.problem-row {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.problem-card {
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  padding: 42px 42px 48px;
  min-height: 470px;
  color: #fff5ee;
  border: 1px solid rgba(240, 240, 240, 0.45);
}

.problem-card h3 {
  margin: 0;
  font-size: calc(clamp(36px, 2.9vw, 78px) / 2);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.problem-card p {
  margin: 48px 0 0;
  font-size: calc(clamp(23px, 1.88vw, 46px) / 2);
  line-height: 1.24;
  font-weight: 700;
}

.problem-footer {
  margin-top: 28px;
}

.timeline {
  margin-top: 66px;
  width: min(1410px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
  padding-bottom: 38px;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-orange-flat);
  margin: 3px auto 0;
  position: relative;
  z-index: 2;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 47px;
  top: 63px;
  width: 3px;
  height: calc(100% - 12px);
  background: #7b7b7b;
  opacity: 0.8;
}

.timeline-text h4 {
  margin: 0;
  font-size: calc(clamp(25px, 2.05vw, 52px) / 2);
  font-weight: 700;
  color: #5d6063;
}

.timeline-text p {
  margin: 5px 0 0;
  font-size: calc(clamp(22px, 1.85vw, 44px) / 2);
  color: #8a8e90;
}

.timeline-divider {
  border: 0;
  border-top: 1px solid #9f9f9f;
  margin: 10px 0;
}

.timeline-cta-row {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.split {
  margin-top: 84px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  min-height: 560px;
}

.split-left {
  background: var(--grad-main);
  color: #fff3eb;
  padding: 72px 72px;
}

.split-title {
  margin: 0;
  font-size: calc(clamp(44px, 4.2vw, 100px) / 2);
  line-height: 1.1;
  font-weight: 500;
}

.split-title strong {
  font-weight: 800;
}

.split-copy {
  margin-top: 66px;
  font-size: calc(clamp(22px, 1.85vw, 45px) / 2);
  max-width: 700px;
}

.split-copy + .split-copy {
  margin-top: 52px;
}

.split-cta {
  margin-top: 70px;
}

.split-right {
  background: #d9d9da;
  padding: 72px 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.trust-pill {
  border-radius: 999px;
  border: 2px solid #d0d0d0;
  background: #ddddde;
  padding: 40px 58px;
}

.trust-pill h4 {
  margin: 0;
  color: var(--brand-orange-strong);
  font-size: calc(clamp(26px, 2vw, 50px) / 2);
  font-weight: 700;
}

.trust-pill p {
  margin: 8px 0 0;
  font-size: calc(clamp(24px, 1.75vw, 41px) / 2);
  color: #636567;
}

.try-row {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 320px minmax(370px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.partners-img {
  width: min(100%, 871px);
}

.arrow-wrap {
  position: relative;
  height: 128px;
}

.arrow-body {
  position: absolute;
  left: 0;
  top: 14px;
  width: 240px;
  height: 100px;
  background: var(--grad-main);
}

.arrow-head {
  position: absolute;
  left: 240px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 100px solid #ff5f49;
}

.simulator-stack {
  position: relative;
  width: min(100%, 880px);
  margin-left: auto;
  min-height: 820px;
}

.simulator-back {
  width: 62%;
  height: 336px;
  border-radius: 54px;
  background: #ff781e;
}

.simulator-front {
  position: absolute;
  right: 0;
  top: 90px;
  width: 86%;
  border-radius: 30px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.pricing-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.pricing-left,
.pricing-right {
  padding: 76px 72px;
}

.pricing-left {
  background: #d6d6d7;
}

.pricing-right {
  background: var(--grad-main);
  color: #fff3ea;
}

.pricing-panel {
  margin-top: 72px;
  background: #ddddde;
  border-radius: 40px;
  padding: 68px 64px;
}

.pricing-panel h3 {
  margin: 0;
  color: #ff4e46;
  font-size: calc(clamp(44px, 3.3vw, 78px) / 2);
  line-height: 1.2;
}

.price-card {
  margin-top: 66px;
  background: #ddddde;
  border-radius: 40px;
  padding: 52px 64px;
  color: #f6681f;
}

.price-card h3 {
  margin: 0;
  font-size: calc(clamp(54px, 4.4vw, 112px) / 2);
  font-weight: 800;
}

.price-card ul {
  margin: 24px 0 0;
  padding-left: 28px;
  font-size: calc(clamp(27px, 2.1vw, 54px) / 2);
  line-height: 1.36;
}

.page-eltern .container,
.page-eltern-1 .container {
  width: min(1760px, 92vw);
}

.page-eltern .section:first-child {
  padding-top: 74px;
}

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

.eltern-button-wrap {
  margin-top: 64px;
}

.page-eltern-1 {
  min-height: 100vh;
}

.page-eltern-1 .single-try {
  padding-top: 96px;
}

.page-eltern-1 .try-row {
  margin-top: 66px;
}

.page-eltern-1 .top-title {
  margin: 0;
  font-size: calc(clamp(50px, 4.5vw, 118px) / 2);
  font-weight: 500;
  color: #666b6d;
}

.page-eltern-1 .top-title strong {
  font-weight: 800;
}

.anchor-offset {
  scroll-margin-top: 120px;
}

@media (max-width: 1380px) {
  .container {
    width: min(1280px, 94vw);
  }

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

  .menu-cluster {
    width: 100%;
    margin-left: 0;
  }

  .pill-nav {
    width: 100%;
    max-width: none;
    font-size: calc(24px / 1);
  }

  .hero-grid,
  .problem-row,
  .split,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .chat-wrap {
    justify-content: center;
  }

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

  .arrow-wrap {
    display: none;
  }

  .simulator-stack {
    margin: 0;
    width: 100%;
    min-height: 0;
  }

  .simulator-back {
    width: 72%;
    margin: 0 auto;
  }

  .simulator-front {
    position: relative;
    top: -80px;
    width: min(88%, 900px);
    margin: 0 auto;
  }

  .pricing-right,
  .pricing-left,
  .split-left,
  .split-right {
    padding: 60px 42px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-top: 62px;
  }

  .brand-logo {
    width: 220px;
  }

  .pill-nav {
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
    padding: 10px 16px;
    font-size: calc(18px / 1);
  }

  .menu-cluster {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 8px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: end;
  }

  .lang-switch {
    padding-top: 0;
  }

  .social-switch {
    gap: 6px;
  }

  .lang-flag,
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .hero-banner {
    padding: 34px 28px;
  }

  .hero-lead {
    margin-top: 32px;
  }

  .problem-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .problem-card p {
    margin-top: 22px;
  }

  .timeline {
    margin-top: 42px;
  }

  .timeline-item {
    grid-template-columns: 66px 1fr;
    gap: 14px;
    padding-bottom: 28px;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
  }

  .timeline-item:not(:last-child)::after {
    left: 31px;
    top: 46px;
    width: 2px;
  }

  .timeline-cta-row {
    gap: 20px;
  }

  .btn {
    width: 100%;
    max-width: 520px;
    padding: 13px 22px;
    text-align: center;
  }

  .hero-cta-stack {
    width: 100%;
  }

  .pricing-panel,
  .price-card,
  .trust-pill {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .split-title,
  h2 {
    line-height: 1.15;
  }
}
