:root{
  --brand-primary:#1FAE5A;
  --brand-secondary:#5FA8D3;
  --brand-dark:#0E2A3A;

  --bg-soft:#F6F9FB;
  --card:#FFFFFF;
  --border:#E6ECF1;
  --text:#1B2A3A;
  --muted:#6B7A88;

  --radius:16px;
  --shadow:0 20px 50px rgba(0,0,0,.06);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  background:
    linear-gradient(180deg,
      rgba(31,174,90,.06),
      rgba(95,168,211,.04) 40%,
      var(--bg-soft) 100%);
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:48px 20px 64px;
}

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.topbar{margin-bottom:28px}

.brandline{
  display:flex;
  align-items:center;
  gap:16px;
}

.brandline img{
  height:72px;        /* groter logo - was 56px */
  width:auto;
  display:block;
}

@media(max-width:700px){
  .brandline img{height:60px;} /* was 50px */
}

.brandmeta .title{
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;     /* groter */
  line-height:1.1;
}

.brandmeta .sub{
  font-size:14px;     /* groter */
  color:var(--muted);
  margin-top:2px;
}

.hero{
  max-width:760px;
  margin-bottom:36px;
}
.hero h1{
  font-size:40px;
  line-height:1.15;
  margin:0 0 10px;
}
.hero p{
  margin:0;
  font-size:17px;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns:1.25fr .85fr;
  gap:28px;
}
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
}

.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px;
}

.muted{color:var(--muted)}
.small{font-size:13px}

/* Form */
.formCard h2{margin:0 0 8px}
.formCard label{
  display:block;
  font-size:13px;
  font-weight:700;
  margin-bottom:6px;
}
.formCard input,
.formCard select,
.formCard textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:15px;
  background:#fff;
}
.formCard input:focus,
.formCard select:focus,
.formCard textarea:focus{
  border-color:rgba(31,174,90,.45);
  box-shadow:0 0 0 4px rgba(31,174,90,.10);
  outline:none;
}
.formCard textarea{min-height:92px}

.formCard .row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}
@media(max-width:700px){
  .formCard .row{grid-template-columns:1fr}
}

select option[disabled]{color:#9aa6b2}

/* Small inline note under a field (subtle) */
.fieldNote{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  line-height:1.35;
}

/* Checkbox rows */
.chkline{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.chkline:last-child{border-bottom:0}

.chkline input[type="checkbox"]{
  width:18px;
  height:18px;
  min-width:18px;
  accent-color:var(--brand-primary);
}

/* Price card */
.priceCard{
  position:sticky;
  top:24px;
  background:
    linear-gradient(160deg,
      rgba(31,174,90,.08),
      rgba(95,168,211,.08));
}
@media(max-width:900px){
  .priceCard{position:relative}
}

.price{
  font-size:26px;
  font-weight:900;
}
.total{
  margin-top:16px;
  padding-top:16px;
  border-top:1px dashed var(--border);
}

/* Error */
.fieldError{
  margin-top:12px;
  padding:12px 14px;
  border:1px solid #f1c7c7;
  background:#fff5f5;
  border-radius:12px;
}
.fieldError strong{display:block}

/* Button */
.btn{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:0;
  background:linear-gradient(135deg,var(--brand-primary),var(--brand-secondary));
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}

/* Footer */
.footer{
  margin-top:48px;
  border-radius:16px;
  padding:18px 22px;
  color:#fff;
  background:
    radial-gradient(1200px 220px at 10% 0%, rgba(255,255,255,.16), rgba(255,255,255,0) 60%),
    linear-gradient(135deg,#1FAE5A,#12904C 45%,rgba(14,42,58,.22));
}
.footer a{color:#fff;text-decoration:underline}

.footerGrid{
  display:grid;
  grid-template-columns:1.1fr 1.3fr .8fr;
  gap:18px;
}
@media(max-width:900px){
  .footerGrid{grid-template-columns:1fr}
}

.footerContact{font-size:13px;line-height:1.6}
.footerRight{display:flex;justify-content:flex-end}
@media(max-width:900px){
  .footerRight{justify-content:flex-start}
}

.trustBadge{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:12px;
}
.trustBadge img{height:26px}
.trustBadge .txt{font-size:12px;line-height:1.35;opacity:.95}