* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #16a34a;
  --green-dark: #12823d;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #e7e7ea;
  --soft: #f5f5f7;
  --white: #fff;
  --container: 1240px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input {
  font-family: inherit;
}

/* HEADER */

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s ease, background .25s ease;
}

.header-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
}

.logo,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
}

.logo img,
.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  color: #303033;
}

.header nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--green);
}

/* BASE */

.section,
.hero {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 760;
}

h2 {
  font-size:clamp(34px,3.7vw,54px);
  line-height: 1.05;
  letter-spacing: -2.4px;
  font-weight: 740;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.btn,
button {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: .25s ease;
}

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

.primary,
button {
  background: var(--green);
  color: #fff;
}

.primary:hover,
button:hover {
  background: var(--green-dark);
}

.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding-top: 118px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}

.hero-copy p {
  max-width: 660px;
  margin: 34px 0 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero small {
  display: block;
  max-width: 580px;
  color: #8a8a8f;
  font-size: 13px;
  line-height: 1.5;
}

.hero-photo {
  display: flex;
  justify-content: flex-end;
}

.hero-photo img {
  width: 100%;
  max-width: 560px;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 40px 120px rgba(0,0,0,.12);
}

/* SECTIONS */

.section-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.section-text p + p {
  margin-top: 24px;
}

.center-head {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.center-head p {
  margin-top: 18px;
}

.problem {
  border-top: 1px solid var(--line);
}

/* CARDS */

.video-card,
.expert,
.method,
.form-card {
  padding: 64px;
  border-radius: 42px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.video-box {
  min-height: 440px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.25)),
    #e9eef0;
  display: grid;
  place-items: center;
  color: #8a8a8f;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

.video-copy p,
.expert-copy p,
.method-copy p,
.form-copy p {
  margin: 24px 0 32px;
}

.story-video {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 34px;
  display: block;
}

/* EXPERT */

.expert-photo {
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
}

.expert-photo img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: center bottom;
}

/* MOCKUPS */

.mockups {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.mockup {
  min-height: 300px;
  overflow: hidden;
  border-radius: 32px;
  background: #f7f8fa;
  border: 1px solid rgba(15, 23, 42, .06);
  position: relative;
  color: #8a8f98;
  font-weight: 650;
  text-align: center;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .045);
}

.mockup.large {
  min-height: 624px;
  grid-row: span 2;
}

.mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}

.mockup:hover img {
  transform: scale(1.025);
}

.coming-soon {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 163, 74, .07), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  color: #8a8f98;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.coming-soon::after {
  content: "Analizy rynku i komentarze";
  position: absolute;
  left: 28px;
  bottom: 26px;
  color: #9aa4b2;
  font-size: 15px;
  font-weight: 500;
}

/* METHOD */

.method {
  grid-template-columns: .9fr 1.1fr;
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-list div,
.faq-row {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.method-list span,
.process-line span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.method-list p,
.process-line p,
.objection-list p,
.faq-row p {
  margin-top: 10px;
  font-size: 16px;
}

/* GRIDS */

.process-line,
.objection-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-line div,
.objection-list div {
  padding: 34px;
  min-height: 230px;
  border-radius: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
}

/* PROOF */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proof-card {
  overflow: hidden;
  border-radius: 30px;
  background: #f7f8fa;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 18px 60px rgba(15, 23, 42, .04);
  transition: transform .35s ease, box-shadow .35s ease;
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, .08);
}

.proof-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1.15;
  object-fit: cover;
  transition: transform .5s ease;
}

.proof-card:hover img {
  transform: scale(1.03);
}

/* FAQ */

.faq {
  width: min(1040px, 92%);
}

.faq-wrap h2 {
  margin-bottom: 42px;
}

/* FORM */

.form-section {
  padding-bottom: 140px;
}

.form-card {
  grid-template-columns: .9fr 1.1fr;
  background: #f5f5f7;
}

form {
  display: grid;
  gap: 14px;
}

input {
  width: 100%;
  min-height: 60px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  outline: none;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,.1);
}

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

.phone-field,
.phone-field .iti {
  width: 100%;
}

.phone-field .iti__selected-country {
  padding-left: 16px;
  border-radius: 18px 0 0 18px;
}

.phone-field .iti__selected-dial-code {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.phone-field .iti__country-container:hover .iti__selected-country {
  background: rgba(22, 163, 74, .06);
}

.phone-field .iti__dropdown-content {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.phone-field input[type="tel"] {
  padding-left: 108px !important;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6e6e73;
  font-size: 12px;
  line-height: 1.45;
}

.checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--green);
}

form button {
  width: 100%;
  min-height: 60px;
}

/* FOOTER */

.footer {
  background: #f5f5f7;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
}

/* ANIMATION */

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

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

.mockup.reveal,
.process-line div.reveal,
.objection-list div.reveal,
.proof-card.reveal {
  transition-delay: .08s;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .header {
    padding: 0 24px;
  }

  .header nav a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .section-split,
  .video-card,
  .expert,
  .method,
  .form-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
    gap: 44px;
  }

  .hero-photo {
    justify-content: center;
  }

  .mockups,
  .process-line,
  .objection-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .mockup.large {
    min-height: 420px;
    grid-row: auto;
  }

  .footer-inner {
    flex-direction: column;
    padding: 32px 0;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

  .logo span {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }

  p {
    font-size: 16px;
  }

  .video-card,
  .expert,
  .method,
  .form-card {
    padding: 26px;
    border-radius: 28px;
  }

  .hero-photo img {
    border-radius: 28px;
  }

  .video-box,
  .story-video {
    min-height: 280px;
  }

  .expert-photo img {
    height: 380px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mockup,
  .coming-soon {
    min-height: 260px;
    border-radius: 26px;
  }

  .proof-card {
    border-radius: 26px;
  }
}

/* ===========================
   HIGHLIGHTS
=========================== */

.highlights{
    padding-top:40px;
}

.highlight-card{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.highlight-item{

    padding:36px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:28px;

    transition:.3s;

}

.highlight-item:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.highlight-item span{

    display:inline-block;

    color:var(--green);

    font-size:13px;

    font-weight:700;

    letter-spacing:.14em;

    text-transform:uppercase;

    margin-bottom:18px;

}

.highlight-item h3{

    font-size:24px;

    margin-bottom:14px;

}

.highlight-item p{

    font-size:16px;

    line-height:1.7;

    color:var(--muted);

}

@media(max-width:1050px){

.highlight-card{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:640px){

.highlight-card{

grid-template-columns:1fr;

}

}

.proof-card p{

padding:16px 20px;

font-size:14px;

line-height:1.55;

}

/* ==========================
   PHILOSOPHY
========================== */

.philosophy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px;
  border-radius: 42px;
  background: #f5f5f7;
  text-align: center;
}

.philosophy-card h2 {
  max-width: 820px;
  margin: 0 auto 28px;
}

.philosophy-card p {
  max-width: 760px;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .philosophy-card {
    padding: 34px 24px;
    border-radius: 28px;
  }
}

.form-note{

margin-top:18px;

font-size:13px;

text-align:center;

color:#8b8b8f;

line-height:1.6;

}

/* THANK YOU PAGE */

/* LEGAL PAGES */

.legal-page {
  min-height: calc(100vh - 112px);
  padding: 72px 24px;
  background:
    radial-gradient(circle at 10% 0, rgba(22, 163, 74, .1), transparent 28%),
    var(--soft);
}

.legal-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 64px 72px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 38px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(22, 49, 31, .08);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 44px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease;
}

.legal-back:hover {
  color: var(--green);
  transform: translateX(-3px);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -2.8px;
}

.legal-card .legal-date {
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: #8a8a8f;
  font-size: 13px;
}

.legal-card h2 {
  margin: 42px 0 14px;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.5px;
}

.legal-card p,
.legal-card li {
  color: #55555b;
  font-size: 16px;
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-card li {
  padding-left: 7px;
}

.legal-card li + li {
  margin-top: 9px;
}

.legal-card li::marker {
  color: var(--green);
}

@media (max-width: 700px) {
  .legal-page {
    padding: 20px 12px;
  }

  .legal-card {
    padding: 34px 22px;
    border-radius: 26px;
  }

  .legal-back {
    margin-bottom: 32px;
  }

  .legal-card h1 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .legal-card .legal-date {
    margin-bottom: 30px;
  }

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

  .legal-card p,
  .legal-card li {
    font-size: 15px;
    line-height: 1.7;
  }
}

.thanks-page {
  position: relative;
  min-height: calc(100vh - 112px);
  padding: 64px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(22, 163, 74, .13), transparent 32%),
    radial-gradient(circle at 90% 85%, rgba(22, 163, 74, .08), transparent 28%),
    var(--soft);
}

.thanks-page::before,
.thanks-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(22, 163, 74, .12);
  pointer-events: none;
}

.thanks-page::before {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -130px;
}

.thanks-page::after {
  width: 280px;
  height: 280px;
  bottom: -170px;
  left: -90px;
}

.thanks-card {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  padding: 54px 64px 46px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 42px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 36px 100px rgba(22, 49, 31, .11);
  text-align: center;
}

.thanks-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #303033;
  font-size: 14px;
  font-weight: 650;
}

.thanks-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.thanks-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 38px rgba(22, 163, 74, .28);
  font-size: 34px;
  font-weight: 800;
}

.thanks-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -2.6px;
}

.thanks-card > p:not(.thanks-note) {
  max-width: 660px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
}

.thanks-steps {
  margin: 38px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.thanks-steps div {
  min-height: 142px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
}

.thanks-steps strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(22, 163, 74, .12);
  font-size: 14px;
}

.thanks-steps span {
  color: #424247;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.thanks-actions {
  display: flex;
  justify-content: center;
}

.thanks-actions .btn {
  min-width: 250px;
}

.thanks-note {
  max-width: 640px;
  margin: 28px auto 0;
  color: #8a8a8f;
  font-size: 12px;
  line-height: 1.55;
}

.premium-footer .footer-inner > p {
  max-width: 470px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.premium-footer .footer-brand strong {
  font-size: 13px;
  line-height: 1.05;
}

@media (max-width: 700px) {
  .thanks-page {
    min-height: auto;
    padding: 24px 14px;
  }

  .thanks-card {
    padding: 34px 20px 28px;
    border-radius: 28px;
  }

  .thanks-logo {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .thanks-logo img {
    width: 34px;
    height: 34px;
  }

  .thanks-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    font-size: 28px;
  }

  .thanks-card h1 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .thanks-card > p:not(.thanks-note) {
    font-size: 16px;
  }

  .thanks-steps {
    margin: 30px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .thanks-steps div {
    min-height: auto;
    padding: 17px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .thanks-steps strong {
    flex: 0 0 32px;
  }

  .thanks-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
