/* sim-styles.css — Qarry simulator page */

:root {
  --yellow: #F2C94C;
  --yellow-light: #FDF7E3;
  --yellow-dark: #d4a800;
  --black: #1A1A1A;
  --text: #2D2D2D;
  --muted: #6B6B6B;
  --light: #F7F7F5;
  --border: #E5E5E3;
  --white: #FFFFFF;
  --red: #D95454;
  --green: #27ae60;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:var(--white); color:var(--text);
  font-family:'Inter',sans-serif; font-size:16px;
  line-height:1.6; -webkit-font-smoothing:antialiased;
}

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px; height:72px;
  background:var(--white); border-bottom:1px solid var(--border);
}
.nav-logo img { height:24px; display:block; }
.nav-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--black); color:var(--white);
  font-size:14px; font-weight:700; padding:11px 22px; border-radius:100px;
  text-decoration:none; transition:background .2s;
}
.nav-btn:hover { background:#333; }

/* HERO */
.hero {
  margin-top:72px;
  min-height:calc(100vh - 72px);
  display:grid; grid-template-columns:1fr 1fr;
}
.hero-img { position:relative; overflow:hidden; }
.hero-img img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(26,26,26,.2) 0%, transparent 60%);
}
.hero-img-caption {
  position:absolute; bottom:36px; left:36px;
  background:var(--yellow); border-radius:100px;
  padding:8px 18px; font-size:12px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--black);
}
.hero-form-panel {
  padding:56px 60px 56px 56px;
  display:flex; flex-direction:column; justify-content:center;
  background:var(--white); border-left:1px solid var(--border);
}
.hero-eyebrow { display:inline-flex; margin-bottom:18px; }
.hero-eyebrow span {
  font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--black);
  background:var(--yellow); padding:5px 14px; border-radius:100px;
}
.hero-form-panel h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,2.8vw,40px); font-weight:500;
  line-height:1.12; letter-spacing:-.5px; color:var(--black); margin-bottom:10px;
}
.hero-form-panel .sub {
  font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:32px;
}

/* FORM FIELDS (shared) */
.fg { margin-bottom:22px; }
.fg:last-child { margin-bottom:0; }
.flabel { display:block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text); margin-bottom:10px; }
.rdisp { display:flex; align-items:baseline; gap:6px; margin-bottom:10px; }
.rval { font-family:'Playfair Display',serif; font-size:32px; font-weight:500; color:var(--black); letter-spacing:-1px; line-height:1; }
.runit { font-size:14px; color:var(--muted); }
input[type=range] { width:100%; height:3px; background:var(--border); border:none; border-radius:100px; outline:none; cursor:pointer; -webkit-appearance:none; appearance:none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; width:22px; height:22px; border-radius:50%; background:var(--yellow); cursor:pointer; border:3px solid var(--white); box-shadow:0 0 0 2px var(--yellow); }
.rminmax { display:flex; justify-content:space-between; font-size:12px; color:var(--muted); margin-top:8px; }
select.sim-select {
  width:100%; background:var(--white); border:1px solid var(--border);
  border-radius:8px; color:var(--text); font-family:'Inter',sans-serif;
  font-size:15px; padding:13px 40px 13px 16px;
  outline:none; -webkit-appearance:none; appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center; transition:border-color .2s;
}
select.sim-select:focus { border-color:var(--yellow-dark); }
.price-row { display:flex; align-items:center; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.price-row:focus-within { border-color:var(--yellow-dark); }
.price-affix { padding:13px 14px; font-size:14px; color:var(--muted); background:var(--light); border-right:1px solid var(--border); }
.price-sfx  { padding:13px 14px; font-size:14px; color:var(--muted); background:var(--light); border-left:1px solid var(--border); }
.price-row input { border:none; background:transparent; font-family:'Inter',sans-serif; font-size:15px; color:var(--text); padding:13px 14px; flex:1; outline:none; min-width:0; }
.toggle-group { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.toggle-btn { padding:13px 16px; background:var(--white); border:none; font-family:'Inter',sans-serif; font-size:14px; font-weight:500; color:var(--muted); cursor:pointer; text-align:left; transition:background .15s, color .15s; display:flex; flex-direction:column; gap:3px; border-right:1px solid var(--border); }
.toggle-btn:last-child { border-right:none; }
.toggle-btn.active { background:var(--yellow); color:var(--black); }
.toggle-sub { font-size:11px; font-weight:400; }
.toggle-note { font-size:12px; color:var(--muted); margin-top:10px; line-height:1.5; }

.frow { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.ff { display:flex; flex-direction:column; gap:7px; margin-bottom:14px; }
.ff label { font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--text); }
.ff input, .ff select {
  border:1px solid var(--border); border-radius:8px;
  font-family:'Inter',sans-serif; font-size:15px; color:var(--text);
  padding:12px 14px; outline:none; width:100%;
  transition:border-color .2s; background:var(--white);
  -webkit-appearance:none; appearance:none;
}
.ff input:focus, .ff select:focus { border-color:var(--yellow-dark); }
.ff input::placeholder { color:#bbb; }
.ff select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; padding-right:36px;
}
.form-submit {
  width:100%; display:flex; align-items:center; justify-content:center; gap:10px;
  background:var(--black); color:var(--white);
  font-family:'Inter',sans-serif; font-size:15px; font-weight:700;
  padding:15px 24px; border-radius:100px; border:none;
  cursor:pointer; margin-top:6px; transition:background .2s, transform .15s;
}
.form-submit:hover { background:#333; transform:scale(1.01); }
.form-privacy { font-size:12px; color:var(--muted); text-align:center; margin-top:10px; line-height:1.5; }
.form-success { display:none; text-align:center; padding:32px 0; }
.success-icon {
  width:64px; height:64px; border-radius:50%;
  background:var(--yellow); margin:0 auto 20px;
  display:flex; align-items:center; justify-content:center;
}
.form-success h4 { font-family:'Playfair Display',serif; font-size:22px; font-weight:500; color:var(--black); margin-bottom:8px; }
.form-success p { font-size:14px; color:var(--muted); line-height:1.7; }

.trust-strip { display:flex; gap:16px; flex-wrap:wrap; margin-top:16px; padding-top:16px; border-top:1px solid var(--border); }
.trust-item { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--muted); }
.trust-check {
  width:17px; height:17px; border-radius:50%;
  background:var(--yellow-light); border:1.5px solid var(--yellow);
  flex-shrink:0; display:flex; align-items:center; justify-content:center;
}
.trust-check svg { width:8px; height:8px; }

/* CUSTOMER QUOTE */
.customer-quote {
  background:var(--yellow-light); border-left:3px solid var(--yellow);
  border-radius:10px; padding:16px 18px; margin-bottom:20px;
}
.customer-quote p { font-size:13px; color:var(--text); line-height:1.65; font-style:italic; margin-bottom:10px; }
.customer-quote-author { display:flex; align-items:center; gap:10px; }
.customer-quote-avatar {
  width:32px; height:32px; border-radius:50%;
  background:var(--yellow); display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; color:var(--black); flex-shrink:0;
}
.customer-quote-meta strong { display:block; font-size:12px; font-weight:700; color:var(--black); }
.customer-quote-meta span { font-size:11px; color:var(--muted); }

/* INTRO STRIP */
.intro-strip {
  background:var(--white); border-bottom:1px solid var(--border);
  padding:52px 72px;
  display:flex; align-items:center; justify-content:space-between; gap:60px;
}
.intro-left { flex:1; }
.intro-eyebrow { display:inline-flex; margin-bottom:14px; }
.intro-eyebrow span {
  font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--black);
  background:var(--yellow); padding:5px 14px; border-radius:100px;
}
.intro-h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(20px,2.2vw,30px); font-weight:500;
  letter-spacing:-.3px; color:var(--black); line-height:1.15; margin-bottom:8px;
}
.intro-p { font-size:15px; color:var(--muted); line-height:1.75; max-width:480px; }
.intro-strip h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,2.6vw,36px); font-weight:500;
  line-height:1.12; letter-spacing:-.5px; color:var(--black); margin-bottom:12px;
}
.intro-strip .intro-eyebrow { display:inline-flex; margin-bottom:16px; }
.intro-strip .intro-eyebrow span {
  font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--black);
  background:var(--yellow); padding:5px 14px; border-radius:100px;
}
.intro-strip p { font-size:15px; color:var(--muted); line-height:1.75; }

/* Dark quote (in black band) */
.customer-quote-dark {
  max-width:680px;
  border-left:3px solid var(--yellow);
  padding-left:28px;
}
.customer-quote-dark p {
  font-family:'Playfair Display',serif;
  font-size:clamp(18px,2vw,24px); font-weight:400; font-style:italic;
  color:var(--white); line-height:1.5; margin-bottom:20px;
}
/* TEASER BAND */
.sim-teaser {
  background:var(--black); padding:52px 72px;
  border-top:4px solid var(--yellow);
}
.sim-teaser-inner {
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.teaser-tag { display:inline-flex; margin-bottom:14px; }
.teaser-tag span {
  font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--black);
  background:var(--yellow); padding:5px 14px; border-radius:100px;
}
.teaser-left h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,2.6vw,38px); font-weight:500;
  line-height:1.12; letter-spacing:-.5px; color:var(--white);
}
.teaser-cta {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--yellow); color:var(--black);
  font-size:15px; font-weight:700; padding:14px 28px;
  border-radius:100px; text-decoration:none; transition:background .2s, transform .15s;
  white-space:nowrap; flex-shrink:0;
}
.teaser-cta:hover { background:var(--yellow-dark); color:var(--white); transform:scale(1.02); }

/* SIMULATOR SECTION */
.sim-section { padding:80px 72px; background:var(--light); border-top:1px solid var(--border); }
.sim-label {
  font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--black); background:var(--yellow); padding:5px 14px; border-radius:100px;
  display:inline-block; margin-bottom:20px;
}
.section-h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,38px); font-weight:500;
  letter-spacing:-.5px; color:var(--black); line-height:1.15; margin-bottom:8px;
}
.section-sub { font-size:16px; color:var(--muted); line-height:1.8; margin-bottom:52px; max-width:500px; }

/* 2-column grid: results | form */
.sim-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; }

/* Inputs card */
.input-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; padding:36px;
}
.card-title { font-family:'Playfair Display',serif; font-size:20px; font-weight:500; color:var(--black); margin-bottom:6px; }
.card-sub { font-size:14px; color:var(--muted); margin-bottom:28px; }
.fg { margin-bottom:22px; }
.fg:last-child { margin-bottom:0; }
.flabel { display:block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text); margin-bottom:10px; }
.rdisp { display:flex; align-items:baseline; gap:6px; margin-bottom:10px; }
.rval { font-family:'Playfair Display',serif; font-size:32px; font-weight:500; color:var(--black); letter-spacing:-1px; line-height:1; }
.runit { font-size:14px; color:var(--muted); }
input[type=range] { width:100%; height:3px; background:var(--border); border:none; border-radius:100px; outline:none; cursor:pointer; -webkit-appearance:none; appearance:none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; width:22px; height:22px; border-radius:50%; background:var(--yellow); cursor:pointer; border:3px solid var(--white); box-shadow:0 0 0 2px var(--yellow); }
.rminmax { display:flex; justify-content:space-between; font-size:12px; color:var(--muted); margin-top:8px; }
select.sim-select {
  width:100%; background:var(--white); border:1px solid var(--border);
  border-radius:8px; color:var(--text); font-family:'Inter',sans-serif;
  font-size:15px; padding:13px 40px 13px 16px;
  outline:none; -webkit-appearance:none; appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center; transition:border-color .2s;
}
select.sim-select:focus { border-color:var(--yellow-dark); }
.price-row { display:flex; align-items:center; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.price-row:focus-within { border-color:var(--yellow-dark); }
.price-affix { padding:13px 14px; font-size:14px; color:var(--muted); background:var(--light); border-right:1px solid var(--border); }
.price-sfx  { padding:13px 14px; font-size:14px; color:var(--muted); background:var(--light); border-left:1px solid var(--border); }
.price-row input { border:none; background:transparent; font-family:'Inter',sans-serif; font-size:15px; color:var(--text); padding:13px 14px; flex:1; outline:none; min-width:0; }
.toggle-group { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.toggle-btn { padding:13px 16px; background:var(--white); border:none; font-family:'Inter',sans-serif; font-size:14px; font-weight:500; color:var(--muted); cursor:pointer; text-align:left; transition:background .15s, color .15s; display:flex; flex-direction:column; gap:3px; border-right:1px solid var(--border); }
.toggle-btn:last-child { border-right:none; }
.toggle-btn.active { background:var(--yellow); color:var(--black); }
.toggle-sub { font-size:11px; font-weight:400; }
.toggle-note { font-size:12px; color:var(--muted); margin-top:10px; line-height:1.5; }

/* Results card */
.results-card {
  background:var(--white); border-radius:16px;
  box-shadow:0 8px 40px rgba(0,0,0,.12);
  position:sticky; top:92px; overflow:hidden;
}
.res-head { padding:24px 28px 18px; border-bottom:1px solid var(--border); }
.res-head h3 { font-family:'Playfair Display',serif; font-size:19px; font-weight:500; color:var(--black); }
.res-head p { font-size:12px; color:var(--muted); margin-top:3px; }
.res-savings { padding:24px 28px; background:var(--black); }
.sav-lbl { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--yellow); margin-bottom:6px; }
.sav-amt { font-family:'Playfair Display',serif; font-size:clamp(36px,4vw,52px); font-weight:500; letter-spacing:-2px; line-height:1; color:var(--white); margin-bottom:10px; }
.sav-month-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.sav-month { font-size:14px; color:rgba(255,255,255,.7); font-weight:500; }
.sav-pct { font-size:11px; font-weight:700; color:var(--black); background:var(--yellow); padding:3px 9px; border-radius:100px; }
.sav-context { font-size:12px; color:rgba(255,255,255,.6); margin-top:10px; line-height:1.7; border-top:1px solid rgba(242,201,76,.2); padding-top:10px; }
.sav-context:empty { display:none; }
.res-block { padding:12px 28px; border-bottom:1px solid var(--border); }
.res-lbl { font-size:11px; font-weight:600; letter-spacing:.09em; text-transform:uppercase; color:var(--muted); margin-bottom:4px; display:flex; align-items:center; gap:7px; }
.dot { width:7px; height:7px; border-radius:50%; display:inline-block; flex-shrink:0; }
.dot-r { background:var(--red); }
.dot-g { background:#4ade80; }
.res-amt { font-family:'Playfair Display',serif; font-size:26px; font-weight:500; letter-spacing:-.5px; line-height:1; color:var(--black); }
.res-amt.g { color:var(--green); }
.res-break { font-size:11px; color:var(--muted); margin-top:3px; line-height:1.5; }

/* Contact form card */
.contact-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; padding:36px;
  position:sticky; top:92px;
}
.contact-card-eyebrow { display:inline-flex; margin-bottom:14px; }
.contact-card-eyebrow span {
  font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--black);
  background:var(--yellow); padding:5px 14px; border-radius:100px;
}
.contact-card h3 {
  font-family:'Playfair Display',serif; font-size:20px; font-weight:500;
  color:var(--black); margin-bottom:6px; line-height:1.2;
}
.contact-card .contact-sub { font-size:13px; color:var(--muted); line-height:1.65; margin-bottom:18px; }

/* FOOTER */
.footer-band { display:flex; align-items:center; justify-content:space-between; padding:24px 72px; border-top:1px solid var(--border); gap:12px; }
.footer-band p { font-size:13px; color:var(--muted); }
.footer-band a { color:var(--muted); font-size:13px; text-decoration:none; transition:color .2s; }
.footer-band a:hover { color:var(--black); }

/* MOBILE */
.check-results-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:var(--yellow); color:var(--black);
  font-family:'Inter',sans-serif; font-size:15px; font-weight:700;
  padding:14px 28px; border-radius:100px; text-decoration:none;
  margin-top:8px; transition:background .2s, transform .15s;
  width:100%;
}
.check-results-btn:hover { background:var(--yellow-dark); transform:scale(1.01); }

/* Mobile scroll hint — hidden on desktop */
.mobile-scroll-hint {
  display:none;
  align-items:center; gap:16px;
}
.mobile-scroll-nudge {
  background:var(--white);
  border:2px solid var(--yellow);
  border-radius:16px;
  padding:20px 24px;
  text-decoration:none;
  cursor:pointer;
}
.mobile-scroll-nudge div div:first-child { color:var(--yellow-dark) !important; }
.mobile-scroll-nudge div div:last-child { color:var(--yellow-dark) !important; opacity:.8; }
.scroll-dot {
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(14px); }
}

@media(max-width:1100px){
  .sim-grid { grid-template-columns:1fr 1fr; }
  .contact-card { position:static; }
}
@media(max-width:960px){
  nav { padding:0 24px; }

  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-img { height:260px; display:block; }
  .hero-form-panel {
    padding:40px 24px 32px; border-left:none; border-top:none;
    min-height:auto;
  }
  .hero-form-panel h1 { font-size:28px; margin-bottom:10px; }
  .hero-sub-extra { display:none; }

  .mobile-scroll-nudge { display:flex; }

  .frow { grid-template-columns:1fr; }

  /* Intro strip: stack vertically */
  .intro-strip { flex-direction:column; align-items:flex-start; padding:32px 24px; gap:20px; }
  .intro-left { width:100%; }

  /* Teaser band */
  .sim-teaser { padding:40px 24px; }
  .sim-teaser-inner { flex-direction:column; gap:20px; }

  /* Simulator section */
  .sim-section { padding:40px 24px; }
  .section-sub { margin-bottom:32px; }
  .sim-grid { grid-template-columns:1fr; }
  .results-card { position:static; }
  .contact-card { position:static; grid-column:auto; }

  /* Footer */
  .footer-band { flex-direction:column; align-items:flex-start; padding:24px; }
}

/* ─── Utility classes replacing inline styles ─── */
.hero-sub-margin { margin-bottom: 28px; }
.trust-strip-vertical { border-top: none; padding-top: 0; margin-top: 0; flex-shrink: 0; flex-direction: column; gap: 10px; }
.avatar-yellow { background: var(--yellow); color: var(--black); }
.text-white { color: var(--white); }
.text-white-muted { color: rgba(255,255,255,.5); }
.no-border-bottom { border-bottom: none; }
.scroll-nudge-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.scroll-nudge-sub { font-size: 13px; color: var(--muted); }
.ff-no-margin { margin-bottom: 0; }
.proefrit-note { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; padding: 12px 14px; background: var(--light); border-radius: 8px; }
.proefrit-strong { color: var(--text); }
.footer-links { display: flex; gap: 24px; }
.turnstile-widget { margin-bottom: 12px; }
.antispam-fields { display: none; visibility: hidden; height: 0; overflow: hidden; }
.sim-error-msg { display: none; color: var(--red); font-size: 13px; text-align: center; margin-bottom: 8px; }
