:root{
  --navy:#13213c;
  --pink:#ef4f91;
  --pink-dark:#d9387b;
  --pink-soft:#fff0f6;
  --ink:#17223b;
  --muted:#657187;
  --line:#dfe5ed;
  --soft:#f5f7fa;
  --white:#fff;
  --success:#157347;
  --danger:#b42318;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--soft);
  color:var(--ink);
  font-family:Inter,Arial,sans-serif;
}
.hidden{display:none!important}
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.header-inner{
  width:min(1120px,calc(100% - 32px));
  min-height:82px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand-logo{
  display:block;
  width:min(245px,56vw);
  height:auto;
  object-fit:contain;
}
.secure-label{
  padding:9px 13px;
  border-radius:999px;
  background:var(--pink-soft);
  color:var(--pink-dark);
  font-size:.78rem;
  font-weight:700;
}
.page-shell{
  width:min(1000px,calc(100% - 28px));
  margin:0 auto;
  padding:46px 0 64px;
}
.hero{
  max-width:820px;
  margin:0 auto 28px;
  text-align:center;
}
.eyebrow,.section-kicker{
  margin:0 0 8px;
  color:var(--pink-dark);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
}
h1,h2,h3{
  font-family:Fredoka,Inter,sans-serif;
  color:var(--navy);
}
h1{
  margin:0;
  font-size:clamp(2rem,5vw,3.4rem);
  font-weight:400;
  line-height:1.05;
}
.hero-copy{
  max-width:720px;
  margin:18px auto 0;
  color:var(--muted);
  font-family:Fredoka,Inter,sans-serif;
  font-size:1.12rem;
  font-weight:300;
  line-height:1.6;
}
.notice{
  padding:18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--white);
  text-align:center;
}
.notice-error{
  border-color:#f0b6b2;
  background:#fff1f0;
  color:var(--danger);
}
.agreement{
  display:grid;
  gap:18px;
}
.card{
  padding:clamp(22px,4vw,38px);
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--white);
  box-shadow:0 14px 42px rgba(19,33,60,.06);
}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:22px;
}
.card h2{
  margin:0;
  font-size:clamp(1.45rem,3vw,2rem);
  font-weight:400;
}
.card h3{
  margin:0 0 8px;
  font-size:1.15rem;
  font-weight:400;
}
.reference-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 11px;
  border-radius:999px;
  background:var(--pink-soft);
  color:var(--pink-dark);
  font-size:.76rem;
  font-weight:700;
  white-space:nowrap;
}
.summary-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--line);
}
.summary-item{
  min-height:94px;
  padding:18px;
  background:var(--white);
  display:grid;
  align-content:center;
  gap:7px;
}
.summary-item span{
  color:var(--muted);
  font-size:.76rem;
}
.summary-item strong{
  color:var(--navy);
  font-size:.98rem;
  overflow-wrap:anywhere;
}
.vat-note,.small-copy,.section-intro,.evidence-note,.step-status{
  color:var(--muted);
  line-height:1.55;
}
.vat-note{margin:16px 0 0;font-size:.82rem}
.highlight-card{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  border-color:#f2c2d6;
  background:linear-gradient(145deg,#fff,#fff4f9);
}
.highlight-card p{
  margin:12px 0 0;
  line-height:1.65;
}
.icon-circle{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:18px;
  background:var(--pink);
  color:var(--white);
  font-family:Fredoka,Inter,sans-serif;
  font-size:1.45rem;
  font-weight:500;
}
.terms-list{
  display:grid;
  gap:12px;
  margin-top:20px;
}
.terms-list>div{
  display:grid;
  grid-template-columns:32px 1fr;
  gap:12px;
  align-items:start;
}
.terms-list span{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--pink-soft);
  color:var(--pink-dark);
  font-size:.78rem;
  font-weight:700;
}
.terms-list p{
  margin:3px 0 0;
  line-height:1.6;
}
.document-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.document-links a{
  padding:10px 13px;
  border:1px solid var(--line);
  border-radius:10px;
  color:var(--navy);
  font-size:.82rem;
  font-weight:700;
  text-decoration:none;
}
.document-links a:hover{border-color:var(--pink);color:var(--pink-dark)}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
  margin-top:20px;
}
label{
  display:grid;
  gap:8px;
  color:var(--navy);
  font-size:.82rem;
  font-weight:700;
}
input{
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1.5px solid #bac4d1;
  border-radius:12px;
  background:var(--white);
  color:var(--ink);
  font:400 1rem Fredoka,Inter,sans-serif;
}
input:focus{
  outline:3px solid rgba(239,79,145,.17);
  border-color:var(--pink);
}
.checkboxes{
  display:grid;
  gap:12px;
  margin:22px 0;
}
.check-row{
  grid-template-columns:21px 1fr;
  gap:11px;
  align-items:start;
  font-weight:500;
  line-height:1.5;
  cursor:pointer;
}
.check-row input{
  width:19px;
  min-height:19px;
  margin:2px 0 0;
  accent-color:var(--pink);
}
.signature-field{
  max-width:560px;
}
.primary-button,.secondary-button{
  min-height:52px;
  padding:12px 20px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  font:500 1rem Fredoka,Inter,sans-serif;
}
.primary-button{
  margin-top:22px;
  background:linear-gradient(135deg,var(--pink),var(--pink-dark));
  color:var(--white);
  box-shadow:0 10px 24px rgba(239,79,145,.22);
}
.secondary-button{
  margin-top:16px;
  background:var(--navy);
  color:var(--white);
}
.primary-button:disabled,.secondary-button:disabled{
  cursor:not-allowed;
  opacity:.48;
  box-shadow:none;
}
.form-error{
  margin-top:16px;
  padding:12px 14px;
  border-radius:10px;
  background:#fff1f0;
  color:var(--danger);
}
.evidence-note{
  margin:14px 0 0;
  font-size:.78rem;
}
.payment-card.locked{opacity:.68}
.payment-steps{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.payment-step{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:13px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fafbfc;
}
.step-number{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:var(--pink);
  color:var(--white);
  font-weight:700;
}
.payment-step p{line-height:1.55}
.step-status{margin:11px 0 0;font-size:.79rem}
.completion-card{text-align:center}
.success-icon{
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  margin:0 auto 15px;
  border-radius:50%;
  background:#e8f6ee;
  color:var(--success);
  font-size:1.7rem;
  font-weight:700;
}
.completion-card p{
  max-width:650px;
  margin:12px auto 0;
  color:var(--muted);
  line-height:1.6;
}
.site-footer{
  padding:32px 20px;
  background:var(--navy);
  color:var(--white);
  text-align:center;
}
.site-footer p{margin:4px 0}
.site-footer p:nth-child(2){color:#f8b6d2}
@media(max-width:700px){
  .page-shell{padding-top:28px}
  .summary-grid,.form-grid,.payment-steps{grid-template-columns:1fr}
  .section-heading{display:grid}
  .highlight-card{grid-template-columns:1fr}
  .header-inner{min-height:72px}
  .secure-label{display:none}
}
