
  :root{
    --pink:#d10c9a;
    --pink-dark:#aa087d;
    --black:#111111;
    --gray:#737373;
    --light:#f7f7f7;
    --border:#e5e5e5;
    --white:#ffffff;
    --green:#198754;
    --amber:#ad6d00;
  }

  .ltuw-gap-root, .ltuw-gap-root *{box-sizing:border-box}
  .ltuw-gap-root{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--black);
    background:#fff;
    line-height:1.5;
  }

  .lt-wrap{
    max-width:1120px;
    margin:0 auto;
    padding:32px 18px 70px;
  }

  .lt-hero{
    text-align:center;
    max-width:850px;
    margin:0 auto 30px;
  }

  .lt-kicker{
    display:inline-block;
    color:var(--pink);
    font-weight:800;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:10px;
  }

  .ltuw-gap-root h1,.ltuw-gap-root h2,.ltuw-gap-root h3,.ltuw-gap-root p{margin-top:0}
  .ltuw-gap-root h1{
    font-size:clamp(34px,5vw,62px);
    line-height:1.02;
    margin-bottom:18px;
    letter-spacing:-.03em;
  }

  .ltuw-gap-root h1 span{color:var(--pink)}
  .lt-lead{
    font-size:18px;
    color:#444;
    max-width:760px;
    margin:0 auto;
  }

  .lt-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 16px 45px rgba(0,0,0,.07);
    overflow:hidden;
  }

  .lt-formbox{
    padding:26px;
  }

  .lt-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }

  .lt-field label{
    display:block;
    font-weight:750;
    margin-bottom:7px;
    font-size:15px;
  }

  .lt-field small{
    display:block;
    color:var(--gray);
    margin-top:6px;
    font-size:12px;
  }

  .lt-field input,
  .lt-field select{
    width:100%;
    border:1px solid #cfcfcf;
    border-radius:12px;
    padding:14px 13px;
    font-size:16px;
    background:#fff;
    color:#111;
    outline:none;
  }

  .lt-field input:focus,
  .lt-field select:focus{
    border-color:var(--pink);
    box-shadow:0 0 0 3px rgba(209,12,154,.12);
  }

  .lt-btn{
    width:100%;
    border:0;
    border-radius:13px;
    padding:16px 22px;
    margin-top:20px;
    background:var(--pink);
    color:#fff;
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    transition:.18s ease;
  }

  .lt-btn:hover{background:var(--pink-dark);transform:translateY(-1px)}

  .lt-note{
    margin-top:14px;
    color:var(--gray);
    font-size:12px;
    text-align:center;
  }


  #lt-analysis-loader{
    display:none;
    margin-top:34px;
    padding:34px 24px;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 16px 45px rgba(0,0,0,.07);
  }
  .lt-analysis-spinner{
    width:46px;
    height:46px;
    margin:0 auto 16px;
    border:4px solid #eeeeee;
    border-top-color:var(--pink);
    border-radius:50%;
    animation:lt-spin .8s linear infinite;
  }
  #lt-analysis-loader strong{
    display:block;
    font-size:22px;
    margin-bottom:6px;
  }
  #lt-analysis-loader span{color:var(--gray)}
  @keyframes lt-spin{to{transform:rotate(360deg)}}

  #lt-results{
    display:none;
    margin-top:34px;
  }

  .lt-result-head{
    background:var(--black);
    color:#fff;
    padding:28px;
  }

  .lt-result-head .lt-kicker{margin-bottom:8px}
  .lt-result-head h2{
    font-size:clamp(28px,4vw,44px);
    line-height:1.08;
    margin-bottom:8px;
  }

  .lt-big-number{
    color:#fff;
    font-size:clamp(38px,7vw,72px);
    font-weight:900;
    line-height:1;
    margin:12px 0;
  }

  .lt-result-head p{color:#d7d7d7;margin-bottom:0}

  .lt-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-bottom:1px solid var(--border);
  }

  .lt-stat{
    padding:24px;
    text-align:center;
    border-right:1px solid var(--border);
  }

  .lt-stat:last-child{border-right:0}
  .lt-stat span{
    display:block;
    color:var(--gray);
    font-size:13px;
    margin-bottom:5px;
  }
  .lt-stat strong{
    font-size:24px;
    line-height:1.1;
  }

  .lt-section{padding:28px}
  .lt-section + .lt-section{border-top:1px solid var(--border)}
  .lt-section h3{font-size:25px;margin-bottom:7px}
  .lt-section-intro{color:var(--gray);margin-bottom:22px}

  .lt-timeline{display:grid;gap:13px}
  .lt-year-row{
    display:grid;
    grid-template-columns:70px 1fr 145px;
    align-items:center;
    gap:12px;
  }
  .lt-year-label{font-weight:800}
  .lt-bar-bg{
    height:18px;
    background:#eeeeee;
    border-radius:999px;
    overflow:hidden;
  }
  .lt-bar{
    height:100%;
    background:linear-gradient(90deg,var(--pink),#f164c7);
    border-radius:999px;
    min-width:4px;
  }
  .lt-year-value{text-align:right;font-weight:800}

  .lt-gap-visual{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    align-items:center;
  }

  .lt-stack{
    height:265px;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    border:1px solid var(--border);
    background:#f3f3f3;
  }

  .lt-gap-loss{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:var(--pink-dark);
    border-bottom:1px solid var(--border);
    font-weight:900;
    text-align:center;
    padding:10px;
    min-height:45px;
  }

  .lt-gap-ac{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#171717;
    color:#fff;
    font-weight:900;
    text-align:center;
    padding:10px;
    min-height:45px;
  }

  .lt-explain{
    background:var(--light);
    border-radius:18px;
    padding:22px;
  }

  .lt-explain-row{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:11px 0;
    border-bottom:1px solid #ddd;
  }
  .lt-explain-row:last-child{border-bottom:0}
  .lt-explain-row span{color:var(--gray)}
  .lt-explain-row strong{text-align:right}

  .lt-recommend{
    background:#ffffff;
    border:2px solid var(--pink);
    border-radius:18px;
    padding:24px;
  }

  .lt-recommend-number{
    font-size:clamp(34px,6vw,58px);
    color:var(--pink);
    font-weight:900;
    line-height:1;
    margin:10px 0 14px;
  }

  .lt-pill{
    display:inline-block;
    border-radius:999px;
    padding:7px 11px;
    font-weight:800;
    font-size:13px;
    background:#ececec;
  }

  .lt-cta{
    text-align:center;
    background:var(--black);
    color:#fff;
    padding:34px 26px;
  }
  .lt-cta h3{font-size:30px;margin-bottom:10px}
  .lt-cta p{color:#d5d5d5;max-width:700px;margin:0 auto 20px}
  .lt-cta a{
    display:inline-block;
    background:var(--pink);
    color:#fff;
    text-decoration:none;
    padding:15px 24px;
    border-radius:12px;
    font-weight:900;
  }

  .lt-disclaimer{
    margin-top:20px;
    color:var(--gray);
    font-size:12px;
    line-height:1.55;
  }

  @media(max-width:760px){
    .lt-grid,.lt-gap-visual{grid-template-columns:1fr}
    .lt-stats{grid-template-columns:1fr}
    .lt-stat{border-right:0;border-bottom:1px solid var(--border)}
    .lt-stat:last-child{border-bottom:0}
    .lt-year-row{grid-template-columns:54px 1fr 108px;font-size:13px}
    .lt-formbox,.lt-section{padding:21px}
    .lt-result-head{padding:24px 21px}
  }

.ltuw-gap-root .lt-recommend{background:#fff !important;}



.ltuw-gap-root .lt-gap-contact{
  max-width:760px;
  margin:34px auto 0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px 26px 22px;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}
.ltuw-gap-root .lt-gap-contact h3{
  font-size:26px;
  line-height:1.15;
  margin:0 0 7px;
}
.ltuw-gap-root .lt-gap-contact > p{
  color:#555;
  margin:0 0 18px;
  font-size:15px;
  line-height:1.45;
}

/* Contact Form 7 – układ jak wcześniejszy formularz: zwarty, 2 kolumny */
.ltuw-gap-root .lt-gap-contact .wpcf7-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:16px;
  row-gap:11px;
  margin:0;
}
/* CF7 zawiera własny wrapper .gap-form — ma zajmować całą szerokość karty formularza. */
.ltuw-gap-root .lt-gap-contact .wpcf7-form > .gap-form{
  grid-column:1 / -1;
  width:100%;
  max-width:none;
}
.ltuw-gap-root .lt-gap-contact .wpcf7-form > p{
  margin:0 !important;
  min-width:0;
}
/* Pola, które powinny zajmować pełną szerokość */
.ltuw-gap-root .lt-gap-contact .wpcf7-form > p:has(textarea),
.ltuw-gap-root .lt-gap-contact .wpcf7-form > p:has(.wpcf7-acceptance),
.ltuw-gap-root .lt-gap-contact .wpcf7-form > p:has(input[type="submit"]),
.ltuw-gap-root .lt-gap-contact .wpcf7-form > p:has(.wpcf7-radio),
.ltuw-gap-root .lt-gap-contact .wpcf7-form > p:has(input[type="checkbox"]){
  grid-column:1 / -1;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 label{
  display:block;
  font-weight:650;
  color:#111;
  font-size:13px;
  line-height:1.25;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="text"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="email"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="tel"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="number"],
.ltuw-gap-root .lt-gap-contact .wpcf7 select{
  width:100% !important;
  height:40px !important;
  min-height:40px !important;
  margin-top:5px !important;
  background:#fff !important;
  color:#111 !important;
  border:1px solid #d1d1d1 !important;
  border-radius:9px !important;
  padding:7px 10px !important;
  font-family:inherit !important;
  font-size:14px !important;
  line-height:1.2 !important;
  box-shadow:none !important;
  outline:none !important;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 textarea{
  width:100% !important;
  height:82px !important;
  min-height:82px !important;
  max-height:120px !important;
  margin-top:5px !important;
  background:#fff !important;
  color:#111 !important;
  border:1px solid #d1d1d1 !important;
  border-radius:9px !important;
  padding:8px 10px !important;
  font-family:inherit !important;
  font-size:14px !important;
  line-height:1.35 !important;
  box-shadow:none !important;
  outline:none !important;
  resize:vertical;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 input:focus,
.ltuw-gap-root .lt-gap-contact .wpcf7 select:focus,
.ltuw-gap-root .lt-gap-contact .wpcf7 textarea:focus{
  border-color:var(--pink) !important;
  box-shadow:0 0 0 2px rgba(209,12,154,.09) !important;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="radio"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="checkbox"]{
  width:auto !important;
  height:auto !important;
  min-height:0 !important;
  margin-right:5px !important;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 .wpcf7-list-item{
  margin:3px 12px 0 0 !important;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 .wpcf7-list-item-label,
.ltuw-gap-root .lt-gap-contact .wpcf7 .wpcf7-acceptance{
  font-size:12px;
  line-height:1.35;
  font-weight:400;
  color:#444;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="submit"]{
  width:auto !important;
  min-width:220px;
  border:0;
  border-radius:10px;
  padding:12px 22px;
  background:var(--pink);
  color:#fff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  margin:2px 0 0 !important;
}
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="submit"]:hover{
  background:var(--pink-dark);
}
.ltuw-gap-root .lt-gap-contact .wpcf7-spinner{
  margin:0 0 0 8px;
}
.ltuw-gap-root .lt-gap-contact .wpcf7-response-output{
  grid-column:1 / -1;
  margin:6px 0 0 !important;
  font-size:13px;
}

@media(max-width:760px){
  .ltuw-gap-root .lt-gap-contact{
    max-width:none;
    padding:18px;
    border-radius:18px;
  }
  .ltuw-gap-root .lt-gap-contact h3{font-size:23px}
  .ltuw-gap-root .lt-gap-contact .wpcf7-form{
    grid-template-columns:1fr;
  }
  .ltuw-gap-root .lt-gap-contact .wpcf7-form > p{
    grid-column:1 !important;
  }
  .ltuw-gap-root .lt-gap-contact .wpcf7 input[type="submit"]{
    width:100% !important;
  }
}


/* Fix Safari text color in CF7 */
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="text"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="email"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="tel"],
.ltuw-gap-root .lt-gap-contact .wpcf7 input[type="number"],
.ltuw-gap-root .lt-gap-contact .wpcf7 textarea{
  color:#111 !important;
  -webkit-text-fill-color:#111 !important;
  caret-color:#111 !important;
}
