*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: white;
  margin: 0;
}

:focus-visible {
  outline: 2px solid #00D3FF;
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.c {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(28px, 11.2%, 215px);
  padding-right: clamp(28px, 11.2%, 215px);
}
.c-nav {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3.44%, 66px);
  padding-right: clamp(16px, 3.44%, 66px);
}

@keyframes wave-draw {
  from { clip-path: inset(0 100% 0 0 round 0px); }
  to   { clip-path: inset(0 0%   0 0 round 0px); }
}
@keyframes wave-float {
  0%   { transform: translateX(0)     translateY(0); }
  33%  { transform: translateX(-0.8%) translateY(-0.5%); }
  66%  { transform: translateX(0.6%)  translateY(0.4%); }
  100% { transform: translateX(0)     translateY(0); }
}
.hero-wave {
  animation:
    wave-draw  2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
    wave-float 16s 2.8s ease-in-out infinite;
  will-change: transform, clip-path;
}
@media (max-width: 1024px) {
  .hero-wave {
    left: -5% !important;
    top: auto !important;
    bottom: 0 !important;
    width: 110% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: bottom !important;
    opacity: 0.6 !important;
    transform: scale(1.5) !important;
    transform-origin: center bottom !important;
  }
}

.cta-btn {
  background: linear-gradient(90deg, #2B6777 0%, #00D3FF 100%);
  display: inline-flex;
  align-items: center;
  gap: 29px;
  padding: 16px 30px;
  border-radius: 40px;
  text-decoration: none;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, transform 0.25s ease, filter 0.3s ease;
}
.cta-btn:hover {
  box-shadow: 0 8px 32px rgba(0, 211, 255, 0.4);
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.cta-btn span {
  color: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  white-space: nowrap;
}
.cta-btn svg { flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cta-btn:hover svg { transform: translateX(6px); }

.cta-btn-sm {
  background: linear-gradient(90deg, #2B6777 0%, #00D3FF 100%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 29px;
  border-radius: 40px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.25s ease, filter 0.3s ease;
}
.cta-btn-sm:hover {
  box-shadow: 0 6px 24px rgba(0, 211, 255, 0.35);
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.cta-btn-sm span {
  color: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  white-space: nowrap;
}
.cta-btn-sm svg { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cta-btn-sm:hover svg { transform: translateX(5px); }

.text-gradient {
  background: linear-gradient(90deg, #2B6777 0%, #00D3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: white;
  padding-top: clamp(16px, 1.56vw, 30px);
  padding-bottom: clamp(16px, 1.56vw, 30px);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}
.site-logo {
  width: clamp(80px, 9.06vw, 174px);
  flex-shrink: 0;
  transition: width 0.3s ease;
}
#site-header.scrolled .site-logo {
  width: 104px;
}

.lbl {
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 600;
  color: #2B6777;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.f-64  { font-size: clamp(24px, 3.33vw, 64px);  line-height: 1.2;  }
.f-65  { font-size: clamp(28px, 3.39vw, 65px);  line-height: 1.15; }
.f-48  { font-size: clamp(22px, 2.5vw,  48px);  line-height: 1.25; }
.f-35  { font-size: clamp(18px, 1.82vw, 35px);  line-height: 1.35; }
.f-25  { font-size: clamp(15px, 1.3vw,  25px);  line-height: 1.52; }
.f-20  { font-size: clamp(14px, 1.04vw, 20px);  line-height: 1.5;  }
.f-17  { font-size: clamp(13px, 0.89vw, 17px);  line-height: 1.5;  }
.f-100 { font-size: clamp(42px, 5.2vw,  100px); line-height: 1;    }

.cta-btn    { padding: clamp(8px, 0.83vw, 16px) clamp(10px, 1.56vw, 30px); gap: clamp(8px, 1.51vw, 29px); }
.cta-btn span    { font-size: clamp(15px, 1.04vw, 20px); line-height: 1.5; }
.cta-btn-sm { padding: clamp(7px, 0.78vw, 15px) clamp(10px, 1.51vw, 29px); gap: clamp(6px, 0.52vw, 10px); }
.cta-btn-sm span { font-size: clamp(15px, 1.04vw, 20px); line-height: 1.5; }

.gap-hero-next   { margin-top: clamp(60px,  8.23vw, 158px); }
.gap-section-md  { margin-top: clamp(50px,  8.17vw, 157px); }
.gap-section-sm  { margin-top: clamp(40px,  5.42vw, 104px); }
.gap-section-lg  { margin-top: clamp(60px,  8vw,    154px); }
.gap-section-186 { margin-top: clamp(60px,  9.69vw, 186px); }
.gap-section-185 { margin-top: clamp(60px,  9.64vw, 185px); }

.value-card {
  background: #F5F5F5;
  border-radius: 24px;
  cursor: default;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 2.5vw, 48px) clamp(16px, 1.56vw, 30px);
}
.value-card:hover {
  background: #2B6777;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
@media (min-width: 1280px) {
  .value-cards-row {
    align-items: center;
    height: clamp(260px, 21.77vw, 418px);
    overflow: hidden;
  }
  .value-card        { height: clamp(200px, 16.67vw, 320px); }
  .value-card:hover  { height: clamp(260px, 21.77vw, 418px); }
}
.value-card .card-icon { color: #2B6777; transition: color 0.35s ease; }
.value-card:hover .card-icon { color: #ffffff; }
.value-card .card-icon-box {
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(32px, 4.17vw, 54px);
  height: clamp(32px, 4.17vw, 54px);
}
.value-card .card-icon-box svg {
  width: 100%;
  height: 100%;
}
.value-card .card-title { color: #2B6777; transition: color 0.35s ease; }
.value-card:hover .card-title { color: #ffffff; }
.value-card .card-desc {
  color: rgba(255,255,255,0.9);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  font-weight: 300;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.value-card:hover .card-desc { max-height: 200px; opacity: 1; margin-top: 10px; }

.left-col-47 { width: 100%; }
@media (min-width: 1024px) {
  .left-col-47 {
    width: min(47.6%, 709px);
    flex-shrink: 0;
    position: sticky;
    top: 101px;
    align-self: flex-start;
  }
}

.for-whom-left { width: 100%; }
@media (min-width: 1280px) {
  .for-whom-left {
    width: min(29.7%, 442px);
    flex-shrink: 0;
    position: sticky;
    top: 101px;
    align-self: flex-start;
  }
}

#site-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#site-nav.open { transform: translateX(0); }

#site-nav li { display: contents; }

#site-nav a:not(.cta-btn) {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #00141C;
  text-decoration: none;
  transition: color 0.2s;
}
#site-nav a:not(.cta-btn):hover { color: #2B6777; }

.nav-cta-mobile { margin-top: 8px; }

.nav-cta-desktop { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 50;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #00141C;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 1024px) {
  #site-nav,
  #site-nav.open {
    position: static;
    flex-direction: row;
    background: transparent;
    transform: none;
    gap: clamp(24px, 2.08vw, 40px);
    z-index: auto;
    padding: 0;
    inset: auto;
  }
  #site-nav a:not(.cta-btn) {
    font-size: clamp(14px, 1.04vw, 20px);
    white-space: nowrap;
  }
  .nav-cta-mobile  { display: none; }
  .nav-cta-desktop { display: inline-flex; }
  .nav-toggle      { display: none; }
}

body.nav-open { overflow: hidden; }

@media (max-width: 768px) {
  .c {
    padding-left: clamp(20px, 6vw, 40px) !important;
    padding-right: clamp(20px, 6vw, 40px) !important;
  }
  .ltw-hero .cta-btn {
    justify-content: center !important;
    padding: 14px 30px !important;
    gap: 14px !important;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  .ltw-hero .cta-btn span {
    font-size: 13px !important;
    white-space: normal !important;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .cta-btn span, .cta-btn-sm span { white-space: normal; }
}

@media (max-width: 640px) {
  .cta-btn { max-width: 300px; }
  .cta-btn span { font-size: 13px !important; white-space: nowrap; }
}
@media (max-width: 800px) {
  .cta-main { width: min(300px, 100%) !important; padding: 13px 20px !important; }
  .cta-main span { font-size: 13px !important; white-space: nowrap !important; }
}
@media (max-width: 1024px) {
  #about { padding-bottom: 0 !important; }
  #about .about-card { padding: 0 !important; }
  .why-now-right { padding-left: 0 !important; }
  .nav-cta-mobile.cta-btn { padding: 16px 28px !important; }
  .nav-cta-mobile.cta-btn span { font-size: 17px !important; }
}

@keyframes num-glow {
  0%, 100% { opacity: 0.28; }
  50%       { opacity: 0.45; text-shadow: 0 0 120px rgba(0,211,255,0.25); }
}
.ltw-num-404 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(140px, 22vw, 420px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 211, 255, 0.6);
  display: block;
  letter-spacing: -0.02em;
  -webkit-user-select: none;
  user-select: none;
  animation: num-glow 4s ease-in-out infinite;
}

.legal-content {
  max-width: min(800px, 100%);
}
.legal-content h2 {
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 600;
  color: #00141C;
  margin-top: clamp(32px, 3.13vw, 60px);
  margin-bottom: 12px;
  line-height: 1.3;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li {
  font-size: clamp(14px, 0.89vw, 17px);
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
.legal-content ul li { list-style: disc; margin-bottom: 6px; }
.legal-content strong { font-weight: 600; color: #00141C; }
.legal-content a { color: #2B6777; text-decoration: underline; }
.legal-content a:hover { color: #00D3FF; }
.legal-content .wp-block-group,
.legal-content .highlight-box {
  background: #F5F5F5;
  border-left: 3px solid #2B6777;
  padding: clamp(16px, 1.56vw, 24px) clamp(20px, 2.08vw, 32px);
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
}
.legal-content .wp-block-group p:last-child,
.legal-content .highlight-box p:last-child { margin-bottom: 0; }
.ltw-legal-date {
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 300;
  color: #828282;
  margin-bottom: clamp(32px, 3.13vw, 60px);
}

.ltw-wysiwyg p {
  font-size: clamp(14px, 1.04vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.4em;
}
.ltw-wysiwyg p:last-child { margin-bottom: 0; }
.ltw-wysiwyg strong { font-weight: 600; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: white;
  color: #00141C;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #00D3FF; outline-offset: 2px; }

.site-logo img { width: 100%; height: auto; display: block; }
.site-logo svg { width: 100%; height: auto; display: block; }

.ltw-heading-mt      { margin-top: clamp(16px, 1.56vw, 30px); }
.ltw-text-white      { color: #ffffff; }
.ltw-text-cyan       { color: #00D3FF; }

.ltw-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #00141C;
  min-height: clamp(600px, 52.9vw, 1016px);
}
.ltw-hero-headline   { max-width: min(1256px, 100%); }

.ltw-section-about     { padding-top: clamp(60px, 8.23vw, 158px); padding-bottom: clamp(140px, 14.58vw, 280px); }

.ltw-section-why-now {
  overflow: clip;
  background: #00141C;
  padding-top: clamp(50px, 4.9vw, 94px);
  padding-bottom: clamp(50px, 4.9vw, 94px);
}
.ltw-why-now-content { padding-left: 0; }
@media (min-width: 1024px) {
  .ltw-why-now-content { padding-left: clamp(0px, 8.18vw, 157px); }
}

.ltw-section-how-it-works     { padding-bottom: clamp(60px, 8vw, 154px); }

.ltw-section-for-whom {
  overflow: clip;
  background: #00141C;
  padding-top: clamp(50px, 7.87vw, 151px);
  padding-bottom: clamp(60px, 10.05vw, 193px);
}

.ltw-page-404 {
  position: relative;
  background: #00141C;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ltw-404-headline    { margin-top: clamp(-10px, -1vw, 0px); }
.ltw-404-white       { color: #ffffff; }
.ltw-404-cyan        { color: #00D3FF; }

.site-footer         { margin-top: clamp(60px, 9.64vw, 185px); }
.footer-top {
  padding-top: clamp(16px, 1.56vw, 30px);
  padding-bottom: clamp(16px, 1.56vw, 30px);
}
.footer-linkedin {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-linkedin-label {
  color: #828282;
  font-size: clamp(14px, 0.89vw, 17px);
  line-height: 1.5;
}
.footer-linkedin a {
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 10px;
}
.footer-linkedin a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.45);
}
.footer-gradient {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,211,255,0) 0%, rgba(0,211,255,0.08) 45%, rgba(0,211,255,0.55) 80%, rgba(0,211,255,0.85) 100%);
  height: clamp(120px, 12.7vw, 244px);
}
.footer-bottom {
  height: 100%;
}
.footer-copyright    { font-size: 16px; letter-spacing: 0.02em; }
.footer-scroll-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(16px, 2.03vw, 39px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.42vw, 8px);
  background: none;
  border: none;
  cursor: pointer;
}
.footer-scroll-top:focus-visible { outline: 2px solid #00D3FF; outline-offset: 4px; border-radius: 4px; }

.scroll-top-icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}
.scroll-top-label { display: none; font-size: 14px; }
@media (min-width: 640px) {
  .scroll-top-icon  { width: 112px; height: 112px; }
  .scroll-top-label { display: block; }
}

.card-icon-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.wp-block-acf-ltw-hero,
.wp-block-acf-ltw-o-co-chodzi,
.wp-block-acf-ltw-dlaczego-teraz,
.wp-block-acf-ltw-jak-to-dziala,
.wp-block-acf-ltw-dla-kogo,
.wp-block-acf-ltw-wartosci,
.wp-block-acf-ltw-jak-dolaczyc {
  max-width: none !important;
  width: 100% !important;
}

.home .wp-block-post-title {
  display: none !important;
}

.flex        { display: flex; }
.block       { display: block; }
.grid        { display: grid; }
.hidden      { display: none; }
.flex-col    { flex-direction: column; }
.flex-1      { flex: 1 1 0%; min-width: 0; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap   { flex-wrap: wrap; }
.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-y-0 { top: 0; bottom: 0; }
.left-0    { left: 0; }
.w-full { width: 100%; }
.z-10   { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.select-none { -webkit-user-select: none; user-select: none; }
.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }
.font-semibold { font-weight: 600; }
.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.bg-white   { background-color: #ffffff; }
.rounded-full { border-radius: 9999px; }

@media (min-width: 640px) {
  .sm\:flex-row    { flex-direction: row; }
  .sm\:flex-wrap   { flex-wrap: wrap; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:gap-x-\[70px\]          { column-gap: 70px; }
  .sm\:w-\[calc\(50\%-12px\)\] { width: calc(50% - 12px); }
}
@media (min-width: 1024px) {
  .lg\:block    { display: block; }
  .lg\:flex     { display: flex; }
  .lg\:hidden   { display: none; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:mt-0     { margin-top: 0; }
  .lg\:gap-\[37px\] { gap: 37px; }
}
@media (min-width: 1280px) {
  .xl\:flex-row    { flex-direction: row; }
  .xl\:flex-nowrap { flex-wrap: nowrap; }
}
