:root {
  color-scheme: light;
  --navy: #194e70;
  --navy-dark: #10384f;
  --orange: #ee9521;
  --orange-soft: #ffc983;
  --green: #c5de8d;
  --paper: #f7f7f7;
  --white: #ffffff;
  --ink: #26333d;
  --muted: #63717c;
  --line: #d9e1e6;
  --shadow: 0 18px 48px rgba(25, 78, 112, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 230, 0.8);
  backdrop-filter: blur(14px);
}

.site-header.is-menu-open {
  box-shadow: 0 18px 40px rgba(25, 78, 112, 0.12);
}

.brand img {
  width: 126px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.1rem;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 850;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.language-switcher {
  position: relative;
  color: var(--navy);
  font-weight: 850;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--navy);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 40;
  display: grid;
  min-width: 126px;
  padding: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  color: var(--navy);
  text-decoration: none;
  border-radius: var(--radius);
}

.language-menu a:hover,
.language-menu a:focus,
.language-menu a[aria-current="page"] {
  background: var(--paper);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.5rem);
  z-index: 30;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--navy);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 850;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  background: var(--paper);
}

.mobile-menu a:last-child {
  color: var(--white);
  background: var(--orange);
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: min(820px, calc(100svh - 78px));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-copy,
.section-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h1 {
  color: var(--navy);
  max-width: 14.5ch;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  letter-spacing: 0;
}

html[lang="de"] h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 3.65vw, 3.35rem);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3.3vw, 3.1rem);
}

p {
  overflow-wrap: anywhere;
}

h3 {
  color: var(--navy-dark);
  font-size: 1rem;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 600px;
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

#pobierz {
  scroll-margin-top: 140px;
}

.badge-link {
  display: inline-flex;
  min-height: 62px;
  border-radius: var(--radius);
  transition: transform 160ms ease;
}

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

.badge-link img {
  width: 187px;
  height: 62px;
  object-fit: contain;
}

.trial-note {
  margin: 0.9rem 0 0;
  color: var(--navy-dark);
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  align-items: end;
  padding: clamp(1rem, 3vw, 2rem);
  min-height: 560px;
  background:
    radial-gradient(circle at 82% 12%, rgba(238, 149, 33, 0.32), transparent 30%),
    radial-gradient(circle at 20% 86%, rgba(197, 222, 141, 0.42), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #e9f0f4 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-phones picture {
  display: block;
}

.hero-phones picture:nth-child(2) {
  transform: translateY(2.4rem);
}

.hero-phones img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(25, 78, 112, 0.18));
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.metric-band div {
  padding: 1.3rem;
  background: var(--white);
}

.metric-band strong,
.metric-band span {
  display: block;
}

.metric-band strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.metric-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section-copy > p {
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.benefit-block,
.pricing-grid article,
.quote-grid blockquote,
.step-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-list article,
.benefit-block,
.pricing-grid article,
.step-grid li {
  padding: 1.25rem;
}

.feature-list p,
.benefit-block p,
.pricing-grid p,
.step-grid p {
  margin: 0.55rem 0 0;
}

.screen-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 560px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 22% 82%, rgba(197, 222, 141, 0.46), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(238, 149, 33, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf3f6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.screen-showcase picture {
  flex: 0 1 230px;
}

.screen-showcase picture:nth-child(2) {
  transform: translateY(1.2rem);
}

.screen-showcase img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(25, 78, 112, 0.18));
}

.integrations {
  width: 100%;
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  background: var(--navy);
}

.integrations h2,
.integrations p {
  color: var(--white);
}

.integrations .eyebrow {
  color: var(--green);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.video-section {
  padding-top: 2rem;
}

.video-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--navy-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
}

.video-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 78, 112, 0.18), rgba(16, 56, 79, 0.42));
}

.video-cover:hover img {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid white;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--navy-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.logo-cloud a {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.logo-cloud a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.logo-cloud img {
  width: 100%;
  max-width: 150px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.step-grid,
.pricing-grid,
.quote-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-grid span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.65rem;
  color: var(--navy);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 900;
}

.pricing {
  padding-top: 2rem;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid strong {
  display: block;
  margin-top: 1rem;
  color: var(--orange);
  font-size: 1.75rem;
  line-height: 1;
}

.pricing-note {
  max-width: 860px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.quote-grid blockquote {
  margin: 0;
  padding: 1.4rem;
}

.quote-logo {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 72px;
  margin-bottom: 1rem;
}

.quote-logo img {
  width: auto;
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.quote-logo.tall img {
  max-height: 76px;
}

.quote-grid p {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.quote-grid cite {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--green);
}

.final-actions {
  margin-top: 0;
}

.eu-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eu-banner img {
  width: min(400px, 100%);
  height: auto;
  flex: 0 0 auto;
}

.eu-banner p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .brand {
    order: 1;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero,
  .intro,
  .split,
  .proof,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .metric-band,
  .step-grid,
  .pricing-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .logo-cloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-actions {
    justify-content: flex-start;
  }

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

  .eu-banner p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 0.9rem;
  }

  .site-header {
    gap: 0.5rem;
    padding-inline: 0.75rem;
  }

  .language-switcher summary {
    justify-content: center;
    width: 40px;
    min-height: 40px;
    padding: 0;
    font-size: 0.88rem;
  }

  .language-switcher summary span:last-child,
  .language-switcher summary::after {
    display: none;
  }

  .language-menu {
    right: -44px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.62rem, 7.2vw, 2.05rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .eyebrow {
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    justify-items: center;
  }

  .badge-link,
  .badge-link img {
    width: 187px;
  }

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

  .screen-showcase {
    gap: 0.4rem;
    padding: 0.8rem;
    min-height: auto;
  }

  .hero-phones {
    padding: 0.8rem;
  }

  .hero-phones picture:nth-child(2) {
    transform: translateY(1.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
