
:root {
  --bg: #070a16;
  --bg-soft: #0c1022;
  --surface: rgba(18, 24, 49, 0.66);
  --surface-strong: rgba(21, 28, 59, 0.82);
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(112, 146, 255, 0.34);
  --text: #f7f8ff;
  --muted: #aeb5ca;
  --muted-2: #7f879f;
  --orange: #ff7a1a;
  --orange-2: #ff9b4a;
  --blue: #3687ff;
  --purple: #8d4cff;
  --green: #63d49c;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 8%, rgba(54, 135, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(141, 76, 255, 0.12), transparent 30%),
    var(--bg);
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--compact {
  padding: 88px 0;
}

.glass {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02)),
    rgba(10, 14, 31, 0.56);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.page-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  filter: blur(110px);
  opacity: 0.16;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.page-glow--one {
  top: 20%;
  left: -220px;
  background: var(--blue);
}

.page-glow--two {
  top: 55%;
  right: -220px;
  background: var(--purple);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 50;
}

.nav-shell {
  height: 68px;
  border-radius: 22px;
  padding: 0 18px 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 104px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #dce0ef;
  font-size: 0.94rem;
}

.main-nav a,
.footer-links a {
  transition: color .2s ease, opacity .2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--orange-2);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 4px;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button--primary {
  color: white;
  background: linear-gradient(135deg, #ff6d0c, #ff8f2e);
  border: 1px solid rgba(255, 194, 142, 0.7);
  box-shadow: 0 12px 34px rgba(255, 112, 17, 0.28);
}

.button--secondary {
  color: white;
  border: 1px solid rgba(102, 135, 255, 0.58);
  background: linear-gradient(145deg, rgba(42, 52, 98, 0.65), rgba(16, 21, 46, 0.75));
}

.button--full {
  width: 100%;
}

.hero {
  min-height: 820px;
  padding-top: 150px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,10,22,0.1), rgba(7,10,22,0.72) 78%, var(--bg)),
    url("../assets/aurora-bg.svg") center bottom / cover no-repeat;
  z-index: -1;
  opacity: 0.98;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #c7cbda;
  background: rgba(10,14,31,0.55);
  font-size: .86rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -0.035em;
}

.hero h1 span,
.section-heading h2 span,
.trust-card h2 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 570px;
  margin-top: 22px;
  color: var(--muted-2);
  font-size: .86rem;
}

.info-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 1px solid #7382a5;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #c9d2ee;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 2px;
}

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

.phone-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(78,120,255,0.2), transparent 55%),
    conic-gradient(from 40deg, rgba(255,122,26,.6), rgba(141,76,255,.45), rgba(54,135,255,.7), rgba(255,122,26,.6));
  filter: blur(28px);
  opacity: .38;
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 310px;
  transform: translate(-50%, -50%) rotate(5deg);
  z-index: 4;
}

.phone-frame {
  padding: 10px;
  border-radius: 48px;
  background: linear-gradient(145deg, #586075, #171a24 30%, #020308 70%, #4b5262);
  box-shadow:
    0 40px 100px rgba(0,0,0,.58),
    0 0 0 2px rgba(255,255,255,.12);
}

.phone-screen {
  position: relative;
  min-height: 610px;
  padding: 30px 18px 16px;
  overflow: hidden;
  border-radius: 39px;
  background:
    radial-gradient(circle at 100% 0%, rgba(77,91,170,.35), transparent 32%),
    linear-gradient(180deg, #0b1022, #070a15);
}

.phone-notch {
  position: absolute;
  width: 108px;
  height: 28px;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: #020307;
  z-index: 5;
}

.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #d8dceb;
}

.phone-topline img {
  width: 54px;
}

.phone-menu,
.phone-flame {
  font-size: .86rem;
}

.phone-kicker,
.phone-caption {
  margin: 0;
  color: #d8dceb;
  font-size: .84rem;
}

.result-ring {
  width: 168px;
  height: 168px;
  margin: 18px auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--orange) 0 36%, #7d53ff 36% 68%, #318fff 68% 100%);
  box-shadow: 0 0 42px rgba(74,108,255,.24);
}

.result-ring__inner {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: #0b1020;
  box-shadow: inset 0 0 36px rgba(56,91,183,.12);
}

.result-ring__inner strong {
  display: block;
  font-size: 2.9rem;
  line-height: 1;
}

.result-ring__inner span {
  font-size: .95rem;
  color: #cad1e7;
}

.phone-caption {
  text-align: center;
  margin-bottom: 18px;
  color: #8892ad;
}

.phone-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.phone-card__title {
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: #e8eaf2;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: .74rem;
  color: #aeb6cd;
}

.metric strong {
  color: #f0f2f8;
}

.metric--last {
  margin-top: 3px;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
  margin-top: 19px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .62rem;
  color: #707992;
}

.phone-nav span::before {
  content: "•";
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.phone-nav .active {
  color: var(--orange);
}

.floating-card {
  position: absolute;
  z-index: 6;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.floating-card img {
  width: 36px;
  flex: 0 0 auto;
}

.floating-card--one {
  right: -5px;
  top: 80px;
  width: 170px;
}

.floating-card--one strong {
  font-size: 1.8rem;
  color: var(--orange-2);
}

.floating-card--one strong span {
  color: #c25bff;
}

.floating-card--two,
.floating-card--three {
  right: -28px;
  width: 215px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.floating-card--two { top: 240px; }
.floating-card--three { top: 390px; }

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-label {
  margin: 0 0 10px;
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 600;
  font-size: .76rem;
}

.section-heading h2,
.trust-card h2,
.download-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.section-heading p:not(.section-label),
.trust-card p,
.download-card p {
  color: var(--muted);
}

.steps-grid,
.features-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.feature-card,
.price-card,
.trial-card {
  border-radius: var(--radius);
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
}

.step-card h3,
.feature-card h3,
.price-card h3,
.trial-card h3 {
  margin: 22px 0 8px;
  font-size: 1.12rem;
}

.step-card p,
.feature-card p,
.trial-card p {
  color: var(--muted);
  margin: 0;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,.11);
  font-size: 2.2rem;
  font-weight: 700;
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
}

.icon-box img {
  width: 30px;
  height: 30px;
}

.icon-box--orange {
  background: linear-gradient(145deg, rgba(255,122,26,.34), rgba(110,42,10,.22));
  box-shadow: inset 0 0 32px rgba(255,122,26,.12);
}

.icon-box--blue {
  background: linear-gradient(145deg, rgba(54,135,255,.34), rgba(15,55,120,.22));
  box-shadow: inset 0 0 32px rgba(54,135,255,.12);
}

.icon-box--purple {
  background: linear-gradient(145deg, rgba(141,76,255,.34), rgba(65,22,120,.22));
  box-shadow: inset 0 0 32px rgba(141,76,255,.12);
}

.ww-icon {
  color: var(--orange-2);
  font-size: 1rem;
  font-weight: 700;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 180px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-card h3 {
  margin: 0 0 6px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 36px;
  border-radius: 30px;
}

.trust-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(100,92,255,.16);
  filter: blur(35px);
}

.trust-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  margin-top: 14px;
}

.trust-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
}

.trust-icon img {
  width: 38px;
}

.trust-icon--blue {
  background: radial-gradient(circle, rgba(54,135,255,.3), rgba(54,135,255,.08));
  box-shadow: 0 0 44px rgba(54,135,255,.16);
}

.trust-icon--orange {
  background: radial-gradient(circle, rgba(255,122,26,.3), rgba(255,122,26,.08));
  box-shadow: 0 0 44px rgba(255,122,26,.16);
}

.check-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #d6dbea;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #8da4ff;
  font-weight: 700;
}

.text-link {
  color: var(--orange-2);
  font-weight: 600;
}

.pricing-grid {
  grid-template-columns: 1fr 1fr .92fr;
  align-items: stretch;
}

.price-card,
.trial-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
}

.price-card--featured {
  border-color: rgba(255,122,26,.55);
  box-shadow: 0 28px 90px rgba(255,100,10,.12);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: .75rem;
  font-weight: 700;
}

.price-name {
  margin: 0;
  color: #d8dceb;
  font-weight: 600;
}

.price-value {
  margin: 22px 0 6px;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.price-value span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
  letter-spacing: 0;
  font-weight: 600;
}

.trial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trial-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(141,76,255,.16);
  border: 1px solid rgba(141,76,255,.34);
}

.trial-icon img {
  width: 38px;
}

.trial-card small {
  color: var(--muted-2);
}

.download-card {
  padding: 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(circle at 85% 30%, rgba(141,76,255,.17), transparent 32%),
    radial-gradient(circle at 20% 110%, rgba(54,135,255,.16), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.download-card h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-button {
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,7,15,.75);
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .72;
}

.store-button small,
.store-button strong {
  display: block;
  text-align: left;
}

.store-button small {
  color: #8d95ab;
  font-size: .67rem;
}

.store-button strong {
  font-size: 1rem;
}

.store-icon {
  font-size: 1.4rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  width: 92px;
}

.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: .82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: .86rem;
}

.legal-page {
  min-height: 100vh;
  padding: 130px 0 80px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 28px;
}

.legal-shell h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.legal-shell h2 {
  margin-top: 34px;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.placeholder {
  padding: 14px 16px;
  border: 1px solid rgba(255,122,26,.35);
  border-radius: 14px;
  background: rgba(255,122,26,.08);
  color: #ffd1af !important;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange-2);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  padding: 24px;
  border-radius: 20px;
}

.contact-card p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
    font-size: .88rem;
  }

  .header-cta {
    display: none;
  }

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

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    min-height: 650px;
  }

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

  .trial-card {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section,
  .section--compact {
    padding: 70px 0;
  }

  .site-header {
    top: 8px;
  }

  .nav-shell {
    height: 60px;
    padding: 0 14px 0 18px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 88px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    padding: 18px;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    border-radius: 20px;
    background: rgba(8,11,25,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,.05);
  }

  .hero {
    min-height: auto;
    padding-top: 115px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 580px;
  }

  .phone {
    width: 270px;
  }

  .phone-screen {
    min-height: 540px;
  }

  .floating-card--one {
    right: 0;
    top: 40px;
    width: 142px;
  }

  .floating-card--two {
    top: 390px;
    right: 0;
    width: 180px;
  }

  .floating-card--three {
    left: 0;
    right: auto;
    top: 440px;
    width: 165px;
  }

  .steps-grid,
  .features-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trial-card {
    grid-column: auto;
  }

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

  .trust-card,
  .legal-shell {
    padding: 26px;
  }

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

  .store-buttons {
    width: 100%;
  }

  .store-button {
    flex: 1 1 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-links {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}


/* Lżejsza, bardziej subtelna typografia */
body {
  font-weight: 400;
}

.hero h1,
.section-heading h2,
.trust-card h2,
.download-card h2,
.legal-shell h1 {
  font-weight: 500;
}

.step-card h3,
.feature-card h3,
.trial-card h3,
.faq-item summary,
.price-name {
  font-weight: 600;
}

.hero-lead,
.step-card p,
.feature-card p,
.trust-card p,
.trial-card p,
.faq-item p,
.legal-shell p,
.legal-shell li {
  font-weight: 400;
}

.button,
.text-link,
.main-nav,
.footer-links {
  font-weight: 500;
}

.section-label,
.eyebrow {
  font-weight: 500;
}

.result-ring__inner strong,
.price-value {
  font-weight: 600;
}

.phone-card__title,
.metric strong {
  font-weight: 500;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .section-heading h2,
  .trust-card h2,
  .download-card h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }
}


/* Typografia zgodna z aplikacją Diabi */
body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
}

.hero h1,
.section-heading h2,
.trust-card h2,
.download-card h2,
.legal-shell h1 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.hero-lead,
.step-card p,
.feature-card p,
.trust-card p,
.trial-card p,
.faq-item p,
.legal-shell p,
.legal-shell li {
  font-weight: 300;
}

.step-card h3,
.feature-card h3,
.trial-card h3,
.faq-item summary,
.price-name,
.phone-card__title,
.metric strong {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.button,
.text-link,
.main-nav,
.footer-links,
.section-label,
.eyebrow {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.result-ring__inner strong,
.price-value {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.ww-icon,
.step-number {
  font-family: "Roboto SemiCondensed", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}


/* Korekta rozmiaru ikon w kartach */
.icon-box {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
}

.icon-box img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.feature-card .icon-box {
  align-self: flex-start;
  flex-shrink: 0;
}

.step-card .icon-box {
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .icon-box {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    flex-basis: 54px;
    border-radius: 17px;
  }

  .icon-box img {
    width: 28px;
    height: 28px;
  }
}

/* =========================================================
   DIABI — spokojniejsza skala typografii
   ========================================================= */

body {
  font-size: 16px;
}

.hero h1 {
  font-size: clamp(3.35rem, 5.1vw, 4.65rem);
  line-height: 1.02;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 620px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 3.45vw, 3.15rem);
  line-height: 1.08;
}

.section-heading p:not(.section-label) {
  font-size: 0.98rem;
  line-height: 1.65;
}

.section-label {
  font-size: 0.72rem;
}

.eyebrow {
  font-size: 0.82rem;
}

.main-nav {
  font-size: 0.88rem;
}

.button {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.94rem;
}

.disclaimer {
  font-size: 0.84rem;
}

.step-card {
  min-height: 250px;
  padding: 24px;
}

.step-card h3,
.feature-card h3,
.trial-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.step-card p,
.feature-card p,
.trial-card p {
  font-size: 0.94rem;
  line-height: 1.65;
}

.step-number {
  font-size: 2rem;
}

.feature-card {
  min-height: 155px;
  padding: 22px;
}

.trust-card {
  min-height: 350px;
  padding: 30px;
}

.trust-card h2 {
  font-size: clamp(1.95rem, 2.75vw, 2.7rem);
  line-height: 1.1;
}

.trust-card p,
.check-list li {
  font-size: 0.96rem;
  line-height: 1.65;
}

.price-value {
  font-size: 1.7rem;
}

.price-name {
  font-size: 1rem;
}

.price-card,
.trial-card {
  min-height: 340px;
  padding: 26px;
}

.download-card h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.faq-item summary {
  font-size: 1rem;
}

.faq-item p {
  font-size: 0.94rem;
}

.legal-shell h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-shell h2 {
  font-size: 1.45rem;
}

.legal-shell p,
.legal-shell li {
  font-size: 0.98rem;
}

.footer-links {
  font-size: 0.84rem;
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: clamp(3rem, 7vw, 4rem);
  }

  .section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .trust-card h2 {
    font-size: clamp(1.85rem, 3.3vw, 2.4rem);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .section-heading h2,
  .trust-card h2,
  .download-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .step-card h3,
  .feature-card h3,
  .trial-card h3 {
    font-size: 1rem;
  }

  .step-card p,
  .feature-card p,
  .trial-card p,
  .trust-card p,
  .check-list li,
  .faq-item p {
    font-size: 0.92rem;
  }

  .button {
    font-size: 0.92rem;
  }

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


/* =========================================================
   POPRAWKA PRAWDZIWYCH SCREENÓW W MOCKUPIE TELEFONU
   ========================================================= */

.phone-frame {
  padding: 9px;
}

.phone-notch {
  display: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 9 / 19.5;
  padding: 0;
  overflow: hidden;
  border-radius: 39px;
  background: #060914;
}

.phone-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.phone-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
}

.phone-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.app-screen {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.phone-dots {
  left: 50%;
  bottom: 14px;
  z-index: 10;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(4, 7, 18, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.phone-dots button {
  width: 7px;
  height: 7px;
}

@media (max-width: 760px) {
  .phone-screen {
    border-radius: 34px;
  }
}



/* Ukrycie kropek slidera */
.phone-dots {
  display: none !important;
}


/* =========================================================
   POPRAWIONY NAGŁÓWEK Z LOGO PNG I PRZEŁĄCZNIKIEM JĘZYKA
   ========================================================= */

.nav-shell {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  justify-self: center;
}

.language-switch {
  position: static;
  margin: 0;
  align-self: center;
  justify-self: end;
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .nav-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .main-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .brand img {
    height: 38px;
    max-width: 150px;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    gap: 8px;
  }

  .brand img {
    height: 34px;
    max-width: 125px;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .main-nav {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   OFICJALNE BADGE'E SKLEPÓW
   ========================================================= */

.store-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: block;
  height: 58px;
  border-radius: 10px;
  transition: transform .2s ease, opacity .2s ease;
}

.store-badge img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.store-badge:not(.is-disabled):hover {
  transform: translateY(-2px);
}

.store-badge.is-disabled {
  opacity: .62;
  cursor: default;
  pointer-events: none;
}

.footer-logo {
  width: auto;
  height: 36px;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .store-badges {
    width: 100%;
    gap: 12px;
  }

  .store-badge {
    height: 52px;
  }

  .footer-logo {
    height: 32px;
    max-width: 130px;
  }
}

/* =========================================================
   UPROSZCZONA STRONA KONTAKTOWA
   ========================================================= */

.contact-shell {
  max-width: 760px;
}

.single-contact-card {
  margin-top: 30px;
  padding: 34px;
  border-radius: 24px;
}

.single-contact-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .92rem;
}

.contact-email {
  display: inline-block;
  color: var(--orange-2);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  word-break: break-word;
}

.contact-email:hover {
  text-decoration: underline;
}

.single-contact-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .94rem;
}


/* =========================================================
   LINKI SPOŁECZNOŚCIOWE
   ========================================================= */

.footer-social-link,
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.footer-social-link:hover,
.contact-social-link:hover {
  color: var(--orange-2);
  text-decoration: none;
}

.facebook-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-social-card {
  margin-top: 18px;
}

.contact-social-link {
  margin-top: 4px;
  color: var(--orange-2);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 500;
}

.contact-social-link .facebook-icon {
  width: 28px;
  height: 28px;
}


/* =========================================================
   FOOTER SOCIAL — compact version
   ========================================================= */
.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-actions .footer-links {
  justify-content: flex-end;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.footer-social-link {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: var(--muted) !important;
  font-size: .84rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

.footer-social-link:hover {
  color: var(--orange-2) !important;
  text-decoration: none !important;
}

.footer-social-link .facebook-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  display: block !important;
  flex: 0 0 18px !important;
  fill: currentColor !important;
}

@media (max-width: 760px) {
  .footer-actions {
    align-items: flex-start;
  }

  .footer-actions .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}
