.elementor-575 .elementor-element.elementor-element-0752349{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a1f44;
  --royal:       #1e56c8;
  --royal-light: #2d6ae0;
  --royal-pale:  #dde8f8;
  --white:       #ffffff;
  --off-white:   #f4f7fc;
  --border:      #d0daf0;
  --text:        #111827;
  --muted:       #4b5563;
  --success:     #15803d;
  --error:       #dc2626;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  min-height: 100vh;
}

/* HEADER */
.header-div {
  background: var(--navy);
  padding: 18px 24px;
  text-align: center;
}
.brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  color: var(--white);
  padding: 52px 24px 44px;
  text-align: center;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* NOSCRIPT */
.noscript-banner {
  background: #7f1d1d;
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
}

/* STEP TRACKER */
.step-tracker {
  max-width: 680px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.step-dot.active {
  background: var(--royal);
  color: var(--white);
}
.step-dot.done {
  background: var(--navy);
  color: var(--white);
}
.step-line {
  flex: 1;
  height: 3px;
  background: var(--border);
  transition: background 0.3s;
}
.step-line.done { background: var(--navy); }

/* CARD */
.card-wrap {
  max-width: 680px;
  margin: 24px auto 60px;
  padding: 0 24px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 28px rgba(10,31,68,0.1);
  display: none;
}
.card.active { display: block; }

.step-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
}
.card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.card .hint {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* WASTE TYPE CHECKBOXES */
.waste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) { .waste-grid { grid-template-columns: 1fr; } }

.waste-option input[type="checkbox"] {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  border: 0; overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.waste-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.waste-option:hover { border-color: var(--royal); background: #eef3fb; }
.waste-option.selected { border-color: var(--royal); background: var(--royal-pale); }
.waste-option input[type="checkbox"]:focus-visible + .waste-check { outline: 3px solid var(--royal); outline-offset: 2px; }
.waste-check {
  width: 22px; height: 22px;
  border-radius: 5px;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 1px;
}
.waste-option.selected .waste-check {
  background: var(--royal);
  border-color: var(--royal);
}
.waste-check svg { display: none; }
.waste-option.selected .waste-check svg { display: block; }
.waste-label { font-size: 0.98rem; font-weight: 500; color: var(--text); line-height: 1.4; }

/* INPUTS */
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.field .field-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.field input[type="number"],
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.field input[type="number"]:focus,
.field select:focus {
  outline: none;
  border-color: var(--royal);
}
.field input[type="number"]::placeholder { color: #9ca3af; }

/* TOGGLE: salary vs hourly */
.toggle-wrap {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}
.toggle-btn {
  flex: 1;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.toggle-btn.active {
  background: var(--royal);
  color: var(--white);
}

/* INPUT WITH PREFIX */
.input-row {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.input-row:focus-within { border-color: var(--royal); }
.input-prefix {
  padding: 14px 16px;
  background: var(--off-white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  border-right: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.input-row input[type="number"] {
  border: none;
  border-radius: 0;
  flex: 1;
}
.input-row input[type="number"]:focus { border-color: transparent; }

/* ERROR */
.error-msg {
  color: var(--error);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  display: none;
}

/* NAV BUTTONS */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--royal); color: var(--white); }
.btn-primary:hover { background: var(--royal-light); }
.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--royal); color: var(--royal); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-calculate {
  background: var(--navy);
  color: var(--white);
  padding: 16px 28px;
}
.btn-calculate:hover { background: var(--royal); }

@media (max-width: 520px) {
  .nav-buttons { flex-direction: column-reverse; }
  .btn { width: 100%; text-align: center; }
}

/* RESULTS */
#results {
  display: none;
  max-width: 680px;
  margin: 24px auto 60px;
  padding: 0 24px;
}
.result-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  border-radius: 16px 16px 0 0;
  padding: 40px;
  color: var(--white);
  text-align: center;
}
.result-hero .eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-bottom: 10px;
}
.result-hero .waste-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.waste-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.result-hero .big-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  margin-bottom: 8px;
}
.result-hero .big-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 28px;
}
.cost-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cost-item {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.cost-item .cost-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.cost-item .cost-period {
  font-size: 0.82rem;
  opacity: 0.75;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.result-body {
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 28px rgba(10,31,68,0.1);
  overflow: hidden;
}
.result-section {
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
}
.result-section:last-child { border-bottom: none; }
.result-section h3 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.result-section p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}
.conservative-note {
  background: var(--off-white);
  border-left: 4px solid var(--royal);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.cta-box {
  background: var(--off-white);
  border-top: 4px solid var(--royal);
  padding: 36px 40px;
  text-align: center;
}
.cta-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  background: var(--royal);
  color: var(--white) !important;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--navy); }

.recalc-wrap { text-align: center; margin-top: 20px; }
.btn-recalc {
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--border);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.toggle-btn:hover,
.btn-recalc:hover {
    border-color: var(--royal); 
    color: var(--royal);
    background-color: transparent !important;
}

/* FOOTER */
.footer-div {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.86rem;
}

@media (max-width: 520px) {
  .card { padding: 28px 20px; }
  .result-hero { padding: 28px 20px; }
  .result-section { padding: 24px 20px; }
  .cta-box { padding: 28px 20px; }
  .cost-breakdown { grid-template-columns: 1fr 1fr; }
}/* End custom CSS */