:root {
  --teal:    #1a3a5c;
  --teal-m:  #122a44;
  --green:   #2cbc63;
  --green-d: #22a356;
  --sand:    #ffffff;
  --mint:    #eef5f2;
  --text:    #1a1a1a;
  --muted:   #555f6e;
  --border:  #e2e8e5;
  --white:   #ffffff;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; margin: 0; }
h1, h2, h3, h4 { font-family: 'Inter Tight', sans-serif; }

/* ══ NAVBAR ══ */
.tp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0;
  transition: background .3s, box-shadow .3s;
}
.tp-nav.scrolled { background: var(--teal); box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.tp-nav .inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.tp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.tp-logo-img {
  height: 31px;
  width: auto;
  display: block;
}
.tp-nav-cta {
  background: var(--green);
  color: #fff; font-weight: 700; font-size: .88rem;
  padding: 10px 22px; border-radius: 50px;
  text-decoration: none; border: none;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.tp-nav-cta:hover { background: var(--green-d); color: #fff; transform: translateY(-1px); }

/* ══ HERO ══ */
.hero {
  background: var(--teal);
  min-height: 50vh;
  display: flex; align-items: center;
  padding: 80px 0 48px;
  position: relative; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover; object-position: 30% top;
}
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(15,25,40,.72) 0%,
    rgba(15,25,40,.60) 40%,
    rgba(15,25,40,.35) 68%,
    rgba(15,25,40,.05) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .9px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.9); }
.hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  line-height: 1.75; max-width: 500px; margin-bottom: 36px;
}
.btn-green {
  background: var(--green); color: #fff;
  font-weight: 700; font-size: .97rem;
  padding: 14px 28px; border-radius: 50px; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-green:hover { background: var(--green-d); color: #fff; transform: translateY(-1px); }
.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.88);
  font-weight: 600; font-size: .93rem;
  padding: 13px 24px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.75); color: #fff; }
.hero-photo-wrap {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  min-height: 380px;
}
.hero-testi-stack {
  position: relative; width: 320px; height: 320px;
}
.hero-testi-card {
  position: absolute;
  background: #fff; border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  width: 280px;
}
.hero-testi-card:first-child {
  top: 0; left: 0;
  transform: rotate(-3deg);
  animation: floatBob 4s ease-in-out infinite;
}
.hero-testi-card:last-child {
  bottom: 0; right: 0;
  transform: rotate(2.5deg);
  animation: floatBob 4s ease-in-out infinite reverse;
  animation-delay: .8s;
}
.hero-testi-card .quote-mark {
  font-size: 1.8rem; line-height: 1;
  color: var(--green); font-family: Georgia, serif;
  margin-bottom: 6px; display: block;
}
.hero-quote-card p {
  font-size: .82rem; color: #333;
  line-height: 1.55; margin: 0 0 10px; font-style: italic;
}
.hero-quote-card .author {
  font-size: .74rem; font-weight: 700; color: var(--teal); margin: 0;
}
.hero-quote-card .role {
  font-size: .68rem; color: var(--muted); margin: 0;
}
.hero-testi-card p {
  font-size: .83rem; color: #333;
  line-height: 1.55; margin: 0 0 10px; font-style: italic;
}
.hero-testi-card .author {
  font-size: .75rem; font-weight: 700; color: var(--teal); margin: 0;
}
.hero-testi-card .role {
  font-size: .69rem; color: var(--muted); margin: 0;
}
.hero-testi-stars { color: #f59e0b; font-size: .78rem; margin-bottom: 6px; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px; flex-wrap: wrap;
}
.av-stack { display: flex; }
.av-item {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.2); color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
}
.av-item:first-child { margin-left: 0; }
.trust-text { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.4; }
.trust-text strong { color: #fff; }

/* ══ WAVE DIVIDER ══ */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ══ STATS BAR ══ */
.stats-bar { background: var(--white); padding: 40px 0; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: 2.4rem; color: var(--teal); display: block; line-height: 1;
}
.stat-num sup { font-size: 1.2rem; color: var(--green); }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.stat-divider {
  width: 1px; background: var(--border);
  align-self: stretch; margin: 8px 0;
}

/* ══ SECTION SHARED ══ */
.sec-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px; display: block;
}
.sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900; color: var(--teal); margin-bottom: 12px;
}
.sec-sub {
  color: var(--muted); font-size: .97rem;
  line-height: 1.75; max-width: 540px; margin: 0 auto;
}

/* ══ PAIN ══ */
.pain-section { background: var(--sand); padding: 80px 0; }
.pain-card {
  background: var(--white);
  border-radius: 20px; padding: 28px 24px;
  height: 100%;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,58,92,.1);
}
.pain-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
}
.pain-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 8px;
}
.pain-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ══ ABOUT ══ */
.about-section { background: var(--white); padding: 80px 0; }
.about-img-wrap { position: relative; }
.about-img-circle {
  width: 100%; max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26,58,92,.14);
  aspect-ratio: 1 / 1;
  position: relative;
}
.about-img-circle video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--teal); color: #fff;
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  font-size: .82rem; text-align: center;
}
.about-badge strong { display: block; font-size: 1.4rem; color: var(--green); }
.about-check { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .92rem; color: var(--text); }
.about-check i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* ══ HOW ══ */
.how-section { background: var(--sand); padding: 80px 0; }
.step-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 32px; }
.step-item:last-child { margin-bottom: 0; }
.step-num {
  min-width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-body h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.step-body p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.65; }
.raport-card {
  background: var(--teal); border-radius: 24px;
  padding: 32px; color: #fff; position: relative; overflow: hidden;
}
.raport-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(44,188,99,.2) 0%, transparent 70%);
  pointer-events: none;
}
.raport-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 6px; }
.raport-card .sub { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.raport-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,.07);
  border-radius: 10px; margin-bottom: 8px;
  font-size: .85rem; color: rgba(255,255,255,.88);
  opacity: 0; transform: translateX(-12px);
  transition: opacity .4s ease, transform .4s ease;
}
.raport-row.visible { opacity: 1; transform: translateX(0); }
.raport-row i { color: var(--green); width: 16px; flex-shrink: 0; }

/* ══ TESTIMONIALS ══ */
.testi-section { background: var(--white); padding: 80px 0; }
.testi-card {
  background: var(--white); border-radius: 20px;
  padding: 28px; height: 100%;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(26,58,92,.08); transform: translateY(-3px); }
.stars { color: var(--green); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: .9rem; color: #333; line-height: 1.75; margin: 0 0 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author .name { font-weight: 700; font-size: .88rem; color: var(--teal); margin: 0; }
.testi-author .role { font-size: .76rem; color: var(--muted); margin: 0; }

/* ══ FAQ ══ */
.faq-section { background: var(--sand); padding: 80px 0; }
.accordion-item {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important; margin-bottom: 10px; overflow: hidden;
}
.accordion-button {
  font-weight: 600; font-size: .95rem; color: var(--teal);
  background: var(--white); padding: 18px 22px;
}
.accordion-button:not(.collapsed) { color: var(--green); background: var(--white); box-shadow: none; }
.accordion-body { font-size: .88rem; color: var(--muted); line-height: 1.75; padding: 0 22px 18px; }

/* ══ CTA SECTION ══ */
.cta-section { background: var(--teal); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute;
  bottom: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(44,188,99,.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  top: -80px; left: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(44,188,99,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-section h2 em { font-style: italic; color: var(--green); }
.cta-sub { color: rgba(255,255,255,.68); font-size: .97rem; line-height: 1.75; max-width: 400px; margin-bottom: 0; }
.cta-marcin {
  display: flex; align-items: center; gap: 14px; margin-top: 28px;
}
.cta-marcin-photo {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  border: 3px solid rgba(44,188,99,.5); flex-shrink: 0;
}
.cta-marcin .name { font-weight: 700; font-size: .92rem; color: #fff; margin: 0; }
.cta-marcin .role { font-size: .78rem; color: rgba(255,255,255,.6); margin: 0; }
.cta-marcin .cert { font-size: .74rem; color: var(--green); margin-top: 2px; }
.cta-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.cta-check { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.75); }
.cta-check i { color: var(--green); font-size: .95rem; flex-shrink: 0; }
.cta-form { position: relative; z-index: 2; }
.form-field {
  width: 100%; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); border-radius: 12px;
  padding: 13px 16px; color: #fff; font-size: .93rem;
  margin-bottom: 12px; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, background .2s;
}
.form-field::placeholder { color: rgba(255,255,255,.38); }
.form-field:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,.15); }
select.form-field option { background: var(--teal); color: #fff; }
.btn-submit {
  width: 100%; background: var(--green); color: #fff;
  font-weight: 700; font-size: .97rem;
  padding: 15px; border: none; border-radius: 50px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--green-d); transform: translateY(-1px); }
.form-note { font-size: .74rem; color: rgba(255,255,255,.35); text-align: center; margin-top: 10px; }

/* ══ FOOTER ══ */
footer { background: var(--teal); border-top: 1px solid rgba(255,255,255,.1); padding: 40px 0; text-align: center; }
.footer-logo { display: flex; justify-content: center; margin-bottom: 12px; }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); }
footer p { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 4px; }
footer a { color: rgba(255,255,255,.5); text-decoration: none; }
footer a:hover { color: var(--green); }

/* ══ STICKY MOBILE ══ */
.sticky-mob {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 16px; z-index: 999; display: none;
}
@media (max-width: 767px) { .sticky-mob { display: block; } }
.sticky-mob button {
  width: 100%; background: var(--green); color: #fff;
  font-weight: 700; font-size: .93rem; padding: 13px;
  border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif;
}

/* ══ ANIMATIONS ══ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .7s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-quote-card { animation: floatBob 4.2s ease-in-out infinite; }

@keyframes ringPulse { 0%,100% { box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 0 rgba(44,188,99,.3); } 50% { box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 12px rgba(44,188,99,0); } }
.hero-photo-circle { animation: ringPulse 3.5s ease-in-out infinite; }

.navbar-scrolled { background: var(--teal) !important; }

/* Responsive */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-photo-wrap { margin-top: 40px; }
  .hero-photo-circle { width: 280px; height: 280px; }
  .hero-quote-card { left: 10px; bottom: -10px; max-width: 220px; }
  .about-badge { right: 0; }
  .about-img-circle { aspect-ratio: 3 / 4; max-width: 100%; }
}
@media (max-width: 767px) {
  .stat-divider { display: none; }
  .about-section { overflow: hidden; }
  .about-img-wrap { overflow: visible; }
  .about-badge { position: absolute; bottom: 16px; right: 12px; }
  .hero-photo-wrap { min-height: 240px; margin-top: 28px; }
  .hero-testi-stack {
    position: relative; width: 100%; height: 240px;
  }
  .hero-testi-card {
    padding: 14px 16px;
    width: 230px;
    animation: none !important;
  }
  .hero-testi-card:first-child {
    top: 20px; left: 0;
    transform: rotate(-2deg);
    z-index: 1;
  }
  .hero-testi-card:last-child {
    bottom: 0; right: 0;
    transform: rotate(1.5deg);
    z-index: 2;
  }
  .hero-testi-card p { font-size: .76rem; }
  .hero-testi-card .author { font-size: .70rem; }
  .hero-testi-card .role { font-size: .64rem; }
  .hero-testi-stars { font-size: .70rem; }
  .hero-testi-card .quote-mark { font-size: 1.4rem; }
}

/* ══ COOKIE BANNER ══ */
#tpCookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0f1a14;
  border-top: 1px solid rgba(44,188,99,.3);
  padding: 16px 24px;
}
.tp-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tp-cookie-text {
  flex: 1;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.tp-cookie-text strong { color: #fff; }
.tp-cookie-text a { color: #2cbc63; text-decoration: underline; }
.tp-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.tp-cookie-btn-green {
  background: #2cbc63;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.tp-cookie-btn-green:hover { background: #25a356; }
.tp-cookie-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.tp-cookie-btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
@media(max-width:768px) {
  .tp-nav .inner { padding: 12px 16px; }
  .tp-logo-img { height: 24px; }
}
@media(max-width:600px) {
  .tp-cookie-inner { flex-direction: column; align-items: stretch; }
  .tp-cookie-btns { flex-direction: column; }
}
