:root{
  --brand:#ff6b00;
  --brand-2:#ff8a2a;
  --bg:#ffffff;
  --ink:#0b0f14;
  --muted:#5b6675;
  --line:rgba(11,15,20,.12);
  --card:rgba(255,255,255,.82);
  --shadow: 0 24px 70px rgba(11,15,20,.18);
  --shadow-soft: 0 18px 40px rgba(11,15,20,.16);
  --success:#22c55e;
  --danger:#dc2626;
  --radius:18px;
  --radius-lg:26px;
  --container:1040px;
  --header-h:80px;
  --lines-left:
    radial-gradient(closest-side at 35% 58%, rgba(255,107,0,.36), rgba(255,255,255,0) 55%),
    radial-gradient(closest-side at 40% 54%, rgba(255,107,0,.10), rgba(255,255,255,0) 60%),
    repeating-linear-gradient(160deg,
      rgba(11,15,20,.14) 0px,
      rgba(11,15,20,.14) 2px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 18px);
  --lines-right:
    radial-gradient(closest-side at 62% 60%, rgba(255,107,0,.34), rgba(255,255,255,0) 56%),
    radial-gradient(closest-side at 62% 56%, rgba(255,107,0,.10), rgba(255,255,255,0) 60%),
    repeating-linear-gradient(20deg,
      rgba(11,15,20,.14) 0px,
      rgba(11,15,20,.14) 2px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 18px);
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img,svg{display:block}
a{color:inherit; text-decoration:none}
button,input{font:inherit}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.72);
  border-bottom:1px solid rgba(11,15,20,.08);
  backdrop-filter:saturate(1.2) blur(10px);
}
.site-header.is-elevated{
  box-shadow: 0 14px 34px rgba(11,15,20,.10);
}
.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
}
.brand-text{
  display:flex;
  align-items:baseline;
  gap:2px;
  letter-spacing:.02em;
}
.brand-name{
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  font-size:19px;
}
.brand-name--bold{font-weight:900}

.nav{display:flex; align-items:center; gap:12px}
.nav-list{
  display:none;
  list-style:none;
  padding:0;
  margin:0;
  gap:6px;
  align-items:center;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  padding:12px 14px;
  border-radius:999px;
  color:rgba(11,15,20,.78);
  font-weight: 600;
  font-size: 13px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover{
  background:rgba(255,107,0,.10);
  color:rgba(11,15,20,.92);
  transform:translateY(-1px);
}
.nav-link.is-active{
  /* background:rgba(255,107,0,.14); */
  color:rgba(11,15,20,.95);
}

.header-actions{display:flex; align-items:center; gap:10px}
.lang{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(11,15,20,.10);
  background:rgba(255,255,255,.70);
  box-shadow:0 8px 18px rgba(11,15,20,.06);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lang:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(11,15,20,.10);
  border-color:rgba(255,107,0,.28);
}
.lang-label{
  font-size:14px;
  font-weight:600;
  color:rgba(11,15,20,.78);
}
.lang-caret{color:rgba(11,15,20,.65)}

.lang-flag{
  display:flex;
  align-items:center;
}
.lang-flag svg{
  width:22px;
  height:14px;
  display:block;
  border-radius:2px;
}

/* Language dropdown */
.lang-menu{position:relative}
.lang-options{
  position:absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(11,15,20,.10);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(11,15,20,.18);
  backdrop-filter: blur(12px);
  z-index: 100;
  max-height: 55vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.lang-option{
  width: 100%;
  text-align: left;
  padding: 12px 12px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  color: rgba(11,15,20,.78);
  transition: background .18s ease, color .18s ease, transform .18s ease;
  touch-action: manipulation;
}
.lang-option:hover{
  background: rgba(255,107,0,.10);
  color: rgba(11,15,20,.92);
  transform: translateY(-1px);
}
.lang-option[aria-selected="true"]{
  background: rgba(255,107,0,.14);
  color: rgba(11,15,20,.95);
}

@media (max-width: 979px){
  .lang-options{
    right: auto;
    left: 0;
    width: min(260px, calc(100vw - 40px));
  }
}

.lang:focus-visible,
.lang-option:focus-visible{
  outline: 3px solid rgba(255,107,0,.28);
  outline-offset: 2px;
}

/* Mobile nav toggle */
.nav-toggle{
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid rgba(11,15,20,.10);
  background:rgba(255,255,255,.70);
  cursor:pointer;
  position:relative;
  box-shadow:0 8px 18px rgba(11,15,20,.06);

  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}
.nav-toggle img
  {
      width: 80%;
  }

.nav-toggle:hover{border-color:rgba(255,107,0,.28)}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background:rgba(11,15,20,.78);
  border-radius:2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle-lines{top:21px}
.nav-toggle-lines::before{top:-7px}
.nav-toggle-lines::after{top:7px}
.nav.is-open .nav-toggle-lines{
  /* Hide only the middle bar; keep pseudo-elements visible for the X */
  background: transparent;
  opacity:1;
}
.nav.is-open .nav-toggle-lines::before{top:0; transform:rotate(45deg)}
.nav.is-open .nav-toggle-lines::after{top:0; transform:rotate(-45deg)}

/* Hero */
.hero{
  position:relative;
  padding: clamp(60px, 9vw, 110px) 0 24px;
  overflow:hidden;
}


.hero-inner{
  padding-top:16px;
  display:flex;
  align-items:flex-start;
}
.hero-content{width:100%}

.hero-title{
  text-align:center;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
  font-size: clamp(38px, 5.4vw, 50px);
  line-height:1.06;
  margin:0 auto 22px;
  max-width: 18ch;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 22px;
  margin: 18px auto 44px;
  max-width: 980px;
}
.badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.60);
  border:1px solid rgba(11,15,20,.08);
  backdrop-filter: blur(10px);
}
.badge-text{
  font-weight:600;
  font-size:14px;
  color:rgba(11,15,20,.72);
}

.hero-checker{
  width:min(960px, 100%);
  margin: 0 auto;
}

.hero-social-proof{
  margin: 30px auto 22px;
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: \;
  backdrop-filter: blur(10px);
}

.hero-social-top{
  display: flex;
  align-items:center;
  gap:12px;
  /* flex-wrap:wrap; */
}

.hero-social-avatars{
  display:flex;
  align-items:center;
}

.hero-avatar-img{
  width: 40px;
  height: 40px;
  border-radius:999px;
  border: 2px solid rgba(255,107,0,.85);
  margin-left:-10px;
  object-fit:cover;
  background:#fff;
  box-shadow: 0 8px 18px rgba(11,15,20,.14);
}

.hero-avatar-img:first-child{margin-left:0}

.hero-social-title{
  margin:0;
  color: rgba(11,15,20,.80);
  font-weight: 600;
  letter-spacing:-.01em;
  font-size: 18px;
  line-height:1.12;
}

.hero-social-rating{
  margin-top: 5px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.hero-social-label{
  font-weight: 600;
  font-size: 24px;
  color: rgba(11,15,20,.74);
  letter-spacing:-.01em;
}

.hero-stars{
  display:flex;
  gap:8px;
}

.hero-star{
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(135deg, #00b67a, #00a86f);
  box-shadow: 0 8px 18px rgba(0,182,122,.22);
  position:relative;
}

.hero-star::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:22px;
  height:22px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background:#fff;
}

.hero-star--partial{
  background:
    linear-gradient(90deg, #00b67a 0 72%, #d8dde4 72% 100%);
}

.hero-social-score{
  font-size: 15px;
  font-weight: 600;
  color: rgba(11,15,20,.70);
}

@media (max-width: 768px){
  .hero-social-proof{
    padding: 12px;
    margin-bottom: 18px;
  }
  .hero-avatar-img{
    width:46px;
    height:46px;
    margin-left:-8px;
  }
  .hero-stars{
    gap:6px;
  }
  .hero-star{
    width: 24px;
    height:30px;
  }
  .hero-star::before{
    width:18px;
    height:18px;
  }
}

.tabs{
  /* display:flex; */
  gap:10px;
  justify-content:flex-start;
  padding-left:6px;
  margin: 6px 0 10px;
  text-align: center;
}
.tab{
  border:1px solid rgba(11,15,20,.10);
  background:rgba(255,255,255,.60);
  color:rgba(11,15,20,.72);
  padding: 10px 37px;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.tab:hover{transform:translateY(-1px); border-color:rgba(255,107,0,.25)}
.tab.is-active{
  background: linear-gradient(180deg, rgba(255,107,0,.16), rgba(255,107,0,.08));
  border-color:rgba(255,107,0,.40);
  color:rgba(11,15,20,.92);
}

.checker{
  position:relative;
  display:flex;
  align-items:stretch;
  gap:10px;
  padding:10px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.80);
  border:1px solid rgba(11,15,20,.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.checker::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: var(--radius-lg);
  padding:1px;
  background: linear-gradient(135deg, rgba(255,107,0,.60), rgba(255,255,255,0), rgba(255,107,0,.20));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.checker-input{
  flex:0 0 auto;
  border:0;
  outline:none;
  background:transparent;
  padding:20px 18px;
  font-size:17px;
  font-weight: 400;
  letter-spacing:.02em;
  color:rgba(11,15,20,.92);
  min-width:0;
}
.checker-input::placeholder{
  color:rgba(11,15,20,.40);
  font-weight:800;
  letter-spacing:.06em;
}
.checker-button{
  border:0;
  cursor:pointer;
  padding:0 22px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:white;
  font-weight:800;
  letter-spacing:.01em;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 18px 44px rgba(255,107,0,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  min-width: 148px;
  justify-content:center;
}
.checker-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(255,107,0,.35);
  filter:saturate(1.05);
}
.checker-button:active{transform: translateY(0px) scale(.99)}
.btn-icon{opacity:.95}

.helper-links{
  display:flex;
  justify-content:center;
  gap:20px;
  padding: 14px 8px 0;
  flex-wrap:wrap;
}

/* Hero checker: rich validation UI */
.checker-field{
  flex:1;
  min-width:0;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:0;
}

.checker-feedback{
  position:absolute;
  left: 8px;
  right: 8px;
  top: calc(100% + 10px);
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  color: var(--danger);
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.16);
  border-radius: 12px;
  z-index: 5;
  pointer-events:none;
  opacity:0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.checker-feedback.is-visible{
  opacity:1;
  transform: translateY(0);
}

.checker-feedback.is-error{
  background: rgba(220,38,38,.06);
  border-color: rgba(220,38,38,.24);
}

.checker-feedback::before{
  content:"!";
  width:18px;height:18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(220,38,38,.14);
  border: 1px solid rgba(220,38,38,.28);
  color: var(--danger);
  font-size: 12px;
  font-weight: 950;
  flex: 0 0 auto;
}

.checker.is-invalid{
  border-color: rgba(220,38,38,.35);
  box-shadow: 0 0 0 3px rgba(220,38,38,.16), var(--shadow-soft);
}
.checker.is-valid{
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12), var(--shadow-soft);
}
.checker-input.is-invalid{
  background: rgba(220,38,38,.06);
  border-radius:14px;
}
.checker-input.is-valid{
  background: rgba(34,197,94,.06);
  border-radius:14px;
}
.helper-link{
  font-size:13px;
  font-weight:700;
  color:rgba(11,15,20,.70);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .2s ease, transform .2s ease;
}
.helper-link:hover{
  color:rgba(255,107,0,.95);
  transform:translateY(-1px);
}

/* Background treatment (modern, not copied) */
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 50% 22%, rgba(255,107,0,.22), rgba(255,255,255,0) 62%),
    radial-gradient(520px 340px at 18% 60%, rgba(255,107,0,.12), rgba(255,255,255,0) 60%),
    radial-gradient(520px 340px at 82% 62%, rgba(255,107,0,.14), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #fff6ef 44%, #ffffff 100%);
}
.hero-glow{
  position:absolute;
  inset:-30% -10% auto -10%;
  height:60%;
  background: radial-gradient(closest-side, rgba(255,107,0,.18), rgba(255,255,255,0));
  filter: blur(20px);
  opacity:.85;
}
.hero-grid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(11,15,20,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,15,20,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(closest-side at 50% 20%, rgba(0,0,0,.85), rgba(0,0,0,0));
  opacity:.35;
}
.hero-lines{
  position:absolute;
  top:var(--header-h);
  bottom:-30px;
  width:min(520px, 44vw);
  opacity:.9;
  filter: drop-shadow(0 22px 44px rgba(11,15,20,.15));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.10) 60%, rgba(0,0,0,0));
}
.hero-lines--left{left:-120px; background:var(--lines-left)}
.hero-lines--right{right:-120px; background:var(--lines-right)}

:root{
  --lines-left:
    radial-gradient(closest-side at 35% 58%, rgba(255,107,0,.36), rgba(255,255,255,0) 55%),
    radial-gradient(closest-side at 40% 54%, rgba(255,107,0,.10), rgba(255,255,255,0) 60%),
    repeating-linear-gradient(160deg,
      rgba(11,15,20,.14) 0px,
      rgba(11,15,20,.14) 2px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 18px);
  --lines-right:
    radial-gradient(closest-side at 62% 60%, rgba(255,107,0,.34), rgba(255,255,255,0) 56%),
    radial-gradient(closest-side at 62% 56%, rgba(255,107,0,.10), rgba(255,255,255,0) 60%),
    repeating-linear-gradient(20deg,
      rgba(11,15,20,.14) 0px,
      rgba(11,15,20,.14) 2px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 18px);
}

/* Shared section styling (consistent headings) */
.section{
  padding: clamp(72px, 8vw, 112px) 0;
}
.section-head{
  text-align:center;
  margin-bottom: 26px;
}
.section-title{
  margin:0 0 8px;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height:1.12;
}
.section-subtitle{
  margin:0;
  font-weight: 600;
  color:rgba(11,15,20,.68);
  font-size:15px;
}
.section--dark{
  position:relative;
  overflow:hidden;
  color:rgba(255,255,255,.92);
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(255,107,0,.20), rgba(0,0,0,0) 62%),
    radial-gradient(700px 420px at 10% 70%, rgba(255,107,0,.12), rgba(0,0,0,0) 60%),
    radial-gradient(700px 420px at 90% 70%, rgba(255,107,0,.12), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #071b23 0%, #08212b 55%, #071b23 100%);
}
.section--dark::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity:.18;
  mask-image: radial-gradient(closest-side at 50% 12%, rgba(0,0,0,.9), rgba(0,0,0,0));
  pointer-events:none;
}
.section--dark .section-head{position:relative}
.section--dark .section-subtitle{
  color:rgba(255,255,255,.74);
}

/* Soft (light) section */
.section--soft{
  position:relative;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(255,107,0,.14), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, #ffffff 0%, #fff7f1 55%, #ffffff 100%);
}
.section--soft::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(11,15,20,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,15,20,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity:.20;
  mask-image: radial-gradient(closest-side at 50% 18%, rgba(0,0,0,.85), rgba(0,0,0,0));
  pointer-events:none;
}
.section--soft .section-head{position:relative}
.section-subtitle--wide{
  max-width: 88ch;
  margin-inline:auto;
  line-height:1.65;
}

/* Verify tabs + panel */
.verify-tabs{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin: 6px auto 20px;
  max-width: 980px;
}
.verify-tab{
  border:1px solid rgba(11,15,20,.12);
  background:rgba(255,255,255,.70);
  color:rgba(11,15,20,.70);
  padding:10px 14px;
  border-radius:999px;
  font-weight: 600;
  font-size:13px;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.verify-tab:hover{
  transform: translateY(-1px);
  border-color: rgba(255,107,0,.30);
}
.verify-tab.is-active{
  background: linear-gradient(135deg, rgba(255,107,0,.20), rgba(255,107,0,.08));
  border-color: rgba(255,107,0,.45);
  color: rgba(11,15,20,.90);
}

.verify-panel{
  position:relative;
  border-radius: 26px;
  border:1px solid rgba(11,15,20,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(11,15,20,.14);
  backdrop-filter: blur(12px);
  overflow:hidden;
}
.verify-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 26px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,107,0,.55), rgba(255,255,255,0), rgba(255,107,0,.18));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.verify-body{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px 18px;
  align-items:center;
}
.verify-copy{
  padding: 2px 10px;
}
.verify-title{
  margin:0 0 10px;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:950;
  letter-spacing:-.02em;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height:1.18;
  color: rgba(11,15,20,.92);
}
.verify-text{
  margin:0 0 16px;
  color: rgba(11,15,20,.68);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  max-width: 70ch;
}
.verify-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight:900;
  letter-spacing:.01em;
  text-transform: uppercase;
  font-size: 12px;
  background: linear-gradient(135deg, rgba(11,15,20,.92), rgba(11,15,20,.80));
  color: #fff;
  border: 1px solid rgba(11,15,20,.12);
  box-shadow: 0 18px 44px rgba(11,15,20,.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.verify-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(11,15,20,.22);
  filter: saturate(1.05);
}

.verify-visual{
  display:flex;
  justify-content:center;
  padding: 6px 10px 0;
}
.verify-illustration{
  width: min(360px, 100%);
}
.verify-illustration img{
  width:100%;
  height:auto;
}

.verify-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;height:44px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,20,.12);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(11,15,20,.12);
  cursor:pointer;
  display:grid;
  place-items:center;
  color: rgba(11,15,20,.78);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.verify-nav:hover{
  border-color: rgba(255,107,0,.30);
  background: rgba(255,255,255,.86);
}
.verify-nav span{
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.verify-nav--prev{left: 12px}
.verify-nav--next{right: 12px}

@media (min-width: 980px){
  .verify-body{
    grid-template-columns: 1.1fr .9fr;
    padding: 77px 64px;
    gap: 26px;
  }
}

/* How it works */
.works-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.works-card{
  position:relative;
  border-radius: 24px;
  border:1px solid rgba(11,15,20,.10);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(255,107,0,.14), rgba(255,255,255,0) 65%),
    rgba(255,255,255,.78);
  box-shadow: 0 20px 60px rgba(11,15,20,.10);
  backdrop-filter: blur(10px);
  overflow:hidden;
  display:flex;
  gap: 14px;
  padding: 18px 16px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.works-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 24px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,107,0,.40), rgba(255,255,255,0), rgba(255,107,0,.12));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.works-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,107,0,.26);
  box-shadow: 0 26px 78px rgba(11,15,20,.14);
}
.works-badge{
  width:52px;
  height:52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,15,20,.92), rgba(11,15,20,.78));
  color:#fff;
  display:grid;
  place-items:center;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:950;
  font-size:20px;
  box-shadow: 0 18px 44px rgba(11,15,20,.16);
  flex: 0 0 auto;
  position:relative;
}
.works-badge::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,107,0,.50), rgba(255,255,255,0));
  opacity:.55;
  pointer-events:none;
}
.works-content{padding-top: 2px}
.works-title{
  margin:0 0 6px;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:950;
  letter-spacing:-.02em;
  font-size:18px;
  line-height:1.25;
  color: rgba(11,15,20,.92);
}
.works-text{
  margin:0;
  color: rgba(11,15,20,.66);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.7;
  max-width: 78ch;
}

@media (min-width: 980px){
  .works-grid{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .works-card{
    padding: 22px 22px;
    gap: 16px;
    min-height: 150px;
  }
  .works-title{font-size:18px}
  .works-text{font-size:14px}
}

/* Car Check Data */
.data-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.data-col{
  display:grid;
  gap: 12px;
}

.data-card{
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(500px 120px at 20% 0%, rgba(255,107,0,.18), rgba(255,255,255,0) 65%),
    rgba(255,255,255,.06);
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
  padding: 26px 24px 14px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  min-height: 210px;
  margin-bottom: 11px;
}
.data-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,107,0,.40);
  background:
    radial-gradient(520px 140px at 20% 0%, rgba(255,107,0,.22), rgba(255,255,255,0) 65%),
    rgba(255,255,255,.075);
}
.data-card-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 10px;
}
.data-icon{
  width:34px;height:34px;
  border-radius: 12px;
  background: rgba(255,107,0,.22);
  border: 1px solid rgba(255,107,0,.36);
  color: #fff;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.data-card-title{
  margin:0;
  font-weight:900;
  letter-spacing:-.01em;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255,255,255,.96);
}
.data-card-text{
  margin:0;
  color: rgba(255,255,255,.76);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.62;
}

@media (min-width: 900px){
  .data-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}

/* Stub sections + footer */
.stub-section{
  padding: 60px 0;
  border-top:1px solid rgba(11,15,20,.06);
}
.stub-title{
  margin:0;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
}

/* Footer â€” dark orange theme, site nav + policies */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 0%, transparent 50%),
    linear-gradient(145deg, #8b3a00 0%, #6b2d00 40%, #4a1f00 100%);
  color: rgba(255,255,255,.92);
}
.footer-inner{
  padding: clamp(40px, 5vw, 56px) 0 clamp(28px, 4vw, 40px);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 40px;
  margin-bottom: 32px;
}
.footer-brand-block{
  max-width: 32ch;
}
.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
  margin-bottom: 12px;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-brand:hover{
  opacity: .95;
  transform: translateY(-1px);
}
.footer-brand-mark{
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-text--bold{ font-weight: 900; }
.footer-tagline{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}
.footer-heading{
  margin: 0 0 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  color: #fff;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{ margin: 0; }
.footer-link{
  display: inline-block;
  padding: 6px 0;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.88);
  transition: color .2s ease, transform .2s ease, padding-left .2s ease;
}
.footer-link:hover{
  color: #fff;
  padding-left: 4px;
}
.footer-bottom{
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.footer-back{
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.footer-back:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

@media (min-width: 640px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px){
  .footer-grid{
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px 48px;
  }
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 980px){
  .nav-list{display:flex}
  .nav-toggle{display:none}
}

@media (max-width: 979px){
  .nav{
    position:relative;
  }
  .nav-list{
    position:absolute;
    right:0;
    top: calc(100% + 10px);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width: min(320px, calc(100vw - 24px));
    padding:10px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(11,15,20,.10);
    border-radius:18px;
    box-shadow: 0 18px 54px rgba(11,15,20,.16);
    backdrop-filter: blur(12px);
    transform-origin: top right;
    transform: scale(.98) translateY(-6px);
    opacity:0;
    pointer-events:none;
    transition: opacity .18s ease, transform .18s ease;
    left: -191px;
  }
  .nav.is-open .nav-list{
    opacity:1;
    transform: scale(1) translateY(0);
    pointer-events:auto;
  }
  .nav-link{
    justify-content:flex-start;
    border-radius:14px;
  }

  .nav-toggle{flex:0 0 auto}
}

@media (max-width: 720px){
  .hero-lines{opacity:.55}
  .tabs{justify-content:center; padding-left:0}
  .checker{
    flex-direction:column;
    gap:12px;
  }
  .checker-button{
    width:100%;
    min-height:54px;
  }
  .checker-input{
    padding:18px 16px;
  }
  .verify-nav{display:none}
  .verify-body{padding: 24px 14px}

  /* Header mobile polish (do not change desktop) */
  .header-inner{gap:10px}
  .header-actions{gap:8px}
  .lang{
    padding: 8px 10px;
    gap: 8px;
    white-space: nowrap;
  }
  .lang-label{display:none}
  .lang-options{
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(240px, calc(100vw - 24px));
  }

  /* Contact: stack form + info (avoid narrow right column on mobile) */
  .contact-wrap{
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    max-width: 100%;
  }
  .contact-form-wrap{width: 100% !important;}
  .contact-info-row{
    width: 100%;
    grid-template-columns: 1fr;
  }
  .contact-info-card{width: 100%}
  .contact-info-icon{margin-top: 6px !important;}
  .contact-submit{
    align-self: stretch;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important; animation:none !important}
}

/* Offer card (matches provided screenshot layout, enhanced) */
.offer{
  padding: clamp(64px, 8vw, 96px) 0;
  background:
    radial-gradient(820px 320px at 10% 0%, rgba(255,107,0,.12), rgba(255,255,255,0) 62%),
    radial-gradient(820px 320px at 90% 100%, rgba(255,138,42,.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fff7f0 0%, #ffffff 46%, #fff6ef 100%);
}
.offer-card{
  position:relative;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(11,15,20,.06);
  box-shadow: 0 26px 80px rgba(11,15,20,.16);
  background:
    radial-gradient(900px 320px at 0% 0%, rgba(255,255,255,1), rgba(255,255,255,0) 60%),
    #ffffff;
  display:grid;
  grid-template-columns: 1fr;
}
.offer-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 26px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,107,0,.45), rgba(255,255,255,0), rgba(11,15,20,.08));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.offer-media{
  min-height: 220px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,0) 46%),
    url("../images/ctabgimage.jpg");
  background-size: cover;
  background-position: 30% center;
}
.offer-body{
  position:relative;
  padding: 24px 18px 22px;
  background: linear-gradient(145deg, #fffdf9 0%, #fff5eb 40%, #ffffff 100%);
}
.offer-body::before{
  content:"";
  position:absolute;
  inset:auto -40px -120px auto;
  width:220px;
  height:220px;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,0) 70%);
  opacity:.75;
  pointer-events:none;
}
.offer-kicker{
  margin:0 0 8px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,107,0,.72);
}
.offer-title{
  margin:0 0 12px;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  color: rgba(255,107,0,.95);
}
.offer-price{
  margin:0 0 12px;
  font-weight: 900;
  font-size: 18px;
  color: rgba(255,107,0,.92);
}
.offer-price-amount{
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: clamp(30px, 4vw, 52px);
}
.offer-text{
  margin:0 0 18px;
  color: rgba(11,15,20,.72);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.75;
  max-width: 78ch;
}
.offer-points{
  display:flex;
  flex-wrap:wrap;
  gap: 8px 14px;
  margin: 0 0 20px;
}
.offer-point{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,15,20,.06);
  box-shadow: 0 10px 26px rgba(11,15,20,.08);
  font-weight: 750;
  font-size: 12px;
  color: rgba(11,15,20,.76);
}
.offer-point-dot{
  width:8px;height:8px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 20px rgba(255,107,0,.35);
}
.offer-cta{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7,27,35,.92), rgba(7,27,35,.80));
  color: #fff;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 44px rgba(7,27,35,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.offer-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(7,27,35,.26);
  filter: saturate(1.05);
}
.offer-cta:active{transform: translateY(0px) scale(.99)}

@media (min-width: 980px){
  .offer-card{grid-template-columns: 1fr 1fr}
  .offer-media{min-height: 320px}
  .offer-body{padding: 40px 40px 36px}
}

/* Support stats section */
.support{
  padding: clamp(40px, 6vw, 72px) 0 clamp(72px, 7vw, 96px);
}
.support-head{
  margin-bottom: 22px;
}
.support-title{
  font-size: clamp(24px, 3vw, 34px);
}
.support-subtitle{
  max-width: 60ch;
  margin-inline:auto;
  font-size: 14px;
  color: rgba(11,15,20,.70);
}
.support-grid{
  position:relative;
  border-radius: 26px;
  padding: 20px 18px;
  background:
    radial-gradient(900px 260px at 0% 0%, rgba(255,107,0,.16), rgba(255,255,255,0) 65%),
    radial-gradient(900px 260px at 100% 100%, rgba(255,138,42,.16), rgba(255,255,255,0) 65%),
    rgba(255,244,232,.92);
  box-shadow: 0 22px 70px rgba(11,15,20,.10);
  border: 1px solid rgba(255,255,255,.8);
  display:grid;
  gap: 18px;
}
.support-grid::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 26px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,0), rgba(255,107,0,.40));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.9;
}
.support-grid::after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
  opacity:.82;
  backdrop-filter: blur(16px);
  pointer-events:none;
}
.support-card{
  position:relative;
  z-index:1;
  text-align:center;
  padding: 40px 12px 36px;
  border-radius: 20px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 16px 46px rgba(11,15,20,.14);
  border: 1px solid rgba(255,255,255,.9);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.support-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 64px rgba(11,15,20,.18);
  border-color: rgba(255,107,0,.55);
}
.support-icon{
  width:54px;
  height:54px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(closest-side, rgba(255,107,0,.18), rgba(255,255,255,0));
  color: rgba(255,107,0,.96);
  box-shadow: 0 18px 44px rgba(255,107,0,.34);
}
.support-icon-emoji{
  font-size: 26px;
}
.support-metric{
  margin: 6px 0 0;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 24px;
  color: rgba(11,15,20,.92);
}
.support-label{
  margin: 0;
  font-weight: 650;
  font-size: 15px;
  color: rgba(11,15,20,.70);
}

@media (min-width: 768px){
  .support-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 22px 28px;
  }
}

/* Brand trust section (light theme, orange accents) */
.brands{
  padding: clamp(56px, 7vw, 90px) 0;
  background:#ffffff;
  overflow: hidden;
}
.brands-head{
  margin-bottom: 22px;
}
.brands-title{
  font-size: clamp(26px, 3.2vw, 38px);
}
.brands-subtitle{
  color: rgba(255,107,0,.96);
  font-weight: 800;
}
.brands-box{
  position:relative;
  border-radius: 28px;
  padding: 16px 10px;
  /* background:
    radial-gradient(800px 260px at 0% 0%, rgba(255,255,255,1), rgba(255,255,255,0) 70%),
    radial-gradient(800px 260px at 100% 100%, rgba(255,255,255,1), rgba(255,255,255,0) 70%),
    rgba(255,250,245,.96); */
  /* border: 1px solid rgba(255,255,255,.9); */
  /* box-shadow: 0 20px 60px rgba(11,15,20,.10); */
  overflow:hidden;
  /* make box span full viewport width while staying aligned to container */
  width:100vw;
  margin-inline: calc(50% - 50vw);
}
.brands-box::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 28px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,107,0,.55), rgba(255,255,255,0), rgba(255,107,0,.40));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.brands-marquee{
  overflow:hidden;
  position:relative;
  padding: 20px 0;
}
.brands-track{
  display:flex;
  align-items:center;
  gap: 16px;
  width:max-content;
  animation: brands-scroll 28s linear infinite;
}
.brands-marquee:hover .brands-track{
  animation-play-state: paused;
}
.brands-marquee::before,
.brands-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:60px;
  pointer-events:none;
  z-index:2;
}
.brands-marquee::before{
  left:0;
  background: linear-gradient(to right, rgba(255,250,245,1), rgba(255,250,245,0));
}
.brands-marquee::after{
  right:0;
  background: linear-gradient(to left, rgba(255,250,245,1), rgba(255,250,245,0));
}
.brand-card{
  position:relative;
  z-index:1;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  width: 120px;
  height: 120px;
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  /* box-shadow: 0 12px 34px rgba(11,15,20,.10); */
  border: 1px solid rgba(11,15,20,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.brand-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,107,0,.60), rgba(255,255,255,0));
  opacity:0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  transition: opacity .18s ease;
}
.brand-card:hover{
  transform: translateY(-2px);
  /* box-shadow: 0 18px 50px rgba(11,15,20,.16); */
  border-color: rgba(255,107,0,.45);
}
.brand-card:hover::before{
  opacity:1;
}
.brand-logo{
  width: 68%;
  border-radius: 16px;
  object-fit: contain;
  background:#ffffff;
}

@media (min-width: 768px){
  .brands-box{
    padding: 18px 14px;
  }
}

@media (min-width: 1120px){
  .brands-box{
    padding: 20px 18px;
  }
}

@keyframes brands-scroll{
  from{transform: translateX(0);}
  to{transform: translateX(-50%);}
}

/* FAQ section */
.faq{
  padding: clamp(60px, 7vw, 96px) 0 clamp(80px, 8vw, 110px);
}
.faq-head{
  margin-bottom: 22px;
}
.faq-title{
  font-size: clamp(26px, 3.2vw, 36px);
}
.faq-list{
  max-width: 880px;
  margin-inline:auto;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.faq-item{
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 46px rgba(11,15,20,.08);
  border: 1px solid rgba(11,15,20,.04);
  overflow:hidden;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-item.is-open{
  box-shadow: 0 22px 64px rgba(11,15,20,.12);
  border-color: rgba(255,107,0,.35);
  transform: translateY(-1px);
}
.faq-question{
  width:100%;
  padding: 23px 18px;
  border:0;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  cursor:pointer;
}
.faq-question-text{
  text-align:left;
  font-weight: 600;
  font-size: 16px;
  color:rgba(11,15,20,.9);
}
.faq-toggle{
  flex:0 0 auto;
  width:26px;
  height:26px;
  border-radius:999px;
  border:1px solid rgba(255,107,0,.40);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  color:rgba(255,107,0,.95);
}
.faq-toggle-line{
  position:absolute;
  width:12px;
  height:2px;
  border-radius:999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.faq-toggle-line--v{
  transform: rotate(90deg);
}
.faq-item.is-open .faq-toggle-line--v{
  transform: rotate(90deg) scaleX(0);
  opacity:0;
}
.faq-answer{
  padding: 0 18px 16px;
  border-top:1px solid rgba(11,15,20,.06);
  color: rgba(11,15,20,.72);
  font-size:14px;
  line-height:1.7;
}
.faq-answer p{
  margin: 12px 0 0;
}
.faq-answer p:first-child{
  margin-top:10px;
}

@media (max-width: 600px){
  .faq-question{
    padding-inline: 14px;
  }
}

/* Contact Us section */
.contact{
  padding: clamp(72px, 8vw, 112px) 0 clamp(80px, 9vw, 120px);
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(255,107,0,.12), rgba(255,255,255,0) 65%),
    radial-gradient(900px 380px at 80% 100%, rgba(255,138,42,.08), rgba(255,255,255,0) 65%),
    #fff;
}
.contact-head{
  margin-bottom: 40px;
}
.contact-title{
  font-size: clamp(30px, 3.4vw, 42px);
}
.contact-subtitle{
  max-width: 42ch;
  margin-inline: auto;
  font-size: 16px;
  color: rgba(11,15,20,.7);
}
.contact-wrap{
  display: flex;
  /* flex-direction: column; */
  gap: 28px;
  max-width: 720px;
  margin-inline: auto;
}
.contact-info-row{
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 16px;
  width: 30%;
}
.contact-info-card{
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,15,20,.06);
  box-shadow: 0 16px 48px rgba(11,15,20,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: center;
}
.contact-info-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(11,15,20,.12);
  border-color: rgba(255,107,0,.25);
}
.contact-info-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,.18), rgba(255,107,0,.08));
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 39px;
}
.contact-info-heading{
  margin: 0 0 6px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(11,15,20,.6);
}
.contact-info-value{
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  word-break: break-word;
  transition: color .2s ease;
}
.contact-info-value:hover{
  color: var(--brand);
}
.contact-form-wrap{
  position: relative;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(11,15,20,.06);
  box-shadow: 0 20px 60px rgba(11,15,20,.1);
  width: 70%;
}
.contact-form-wrap::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,107,0,.4), rgba(255,255,255,0), rgba(255,107,0,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.contact-form-success{
  text-align: center;
  padding: 24px 16px;
}
.contact-form-success-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #16a34a);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-form-success-title{
  margin: 0 0 8px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
}
.contact-form-success-text{
  margin: 0;
  font-size: 15px;
  color: rgba(11,15,20,.7);
}
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-row{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-label{
  font-weight: 700;
  font-size: 14px;
  color: rgba(11,15,20,.85);
}
.contact-input{
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(11,15,20,.12);
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-input::placeholder{
  color: rgba(11,15,20,.45);
}
.contact-input:focus{
  outline: none;
  border-color: rgba(255,107,0,.5);
  box-shadow: 0 0 0 3px rgba(255,107,0,.15);
}
.contact-input.is-error{
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220,38,38,.2);
}
.contact-input.is-error:focus{
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.25);
}
.contact-form-error{
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
  margin-top: 2px;
}
.contact-textarea{
  min-height: 120px;
  resize: vertical;
}
.contact-form-loader{
  text-align: center;
  padding: 48px 24px;
}
.contact-form-loader-spinner{
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255,107,0,.25);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: contact-spin .8s linear infinite;
}
.contact-form-loader-text{
  margin: 16px 0 0;
  font-weight: 700;
  font-size: 15px;
  color: rgba(11,15,20,.75);
}
@keyframes contact-spin{
  to{ transform: rotate(360deg); }
}
.contact-submit{
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(255,107,0,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.contact-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255,107,0,.35);
  filter: saturate(1.05);
}
.contact-submit:active{
  transform: translateY(0);
}
.contact-submit:disabled{
  opacity: .85;
  cursor: not-allowed;
}

@media (max-width: 520px){
  .contact-info-row{
    grid-template-columns: 1fr;
    width: 100%;
  }
}
@media (min-width: 720px){
  .contact-wrap{
    gap: 32px;
    max-width: 100%;
  }
  .contact-form-wrap{
    padding: 36px 32px;
  }
}


.hero-inner{ position: relative; z-index: 2; }

.car-box{
  position: absolute;
  left: 50%;
  bottom: -179px;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  width: min(550px, 56vw);
  max-width: 100%;
  overflow: visible;
}
.car-box img{
  display: block;
  width: 100%;
  height: auto;
  animation: none !important;
  will-change: transform;
}

.car-bg-road{
  /* position: absolute; */
  /* left: 0; */
  /* right: 0; */
  top: 84%;
  /* bottom: -12%; */
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  margin-top: 230px;
}
.car-bg-road::before{
  content:"";
  position: absolute;
  inset: 0;
  width: 200%;
  background: url(../images/skyscraper.png) repeat-x;
  background-size: 13% auto;
  background-position: bottom left;

  /* seamless marquee: start at 0, move to -50% (right -> left) */
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: car-bg-road-marquee 28s linear infinite;
  opacity: 0.5;
  
}
.car-bg-road::after{
  content:"";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(900px 280px at 50% 10%, rgba(255,107,0,.18), rgba(255,255,255,0) 62%),
    linear-gradient(to top, rgba(7,27,35,.70) 0%, rgba(7,27,35,.10) 55%, rgba(7,27,35,0) 80%); */
  /* opacity: .55; */

}

@keyframes car-bg-road-marquee{
  from{ transform: translate3d(0, 0, 0); }
  to{ transform: translate3d(-50%, 0, 0); }
}

/* VIN helper modal */
.vin-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.vin-modal-overlay[hidden]{
  display: none;
}

.vin-modal{
  width: min(640px, 100%);
  background: rgba(255,255,255,.98);
  border-radius: 22px;
  border: 1px solid rgba(11,15,20,.10);
  box-shadow: 0 28px 90px rgba(11,15,20,.28);
  position: relative;
  overflow: hidden;
}
.vin-modal::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(255,107,0,.22), rgba(255,255,255,0) 60%),
    radial-gradient(900px 320px at 90% 100%, rgba(255,138,42,.14), rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.vin-modal-content{
  position: relative;
  padding: 34px 22px 26px;
}
.vin-modal-title{
  margin: 0 40px 12px 0;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: -.02em;
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(11,15,20,.92);
}
.vin-modal-body p{
  margin: 0;
  color: rgba(11,15,20,.70);
  font-weight: 600;
  line-height: 1.8;
  font-size: 14px;
}
.vin-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11,15,20,.10);
  background: rgba(255,255,255,.78);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: rgba(11,15,20,.78);
  z-index: 2;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.vin-modal-close:hover{
  transform: translateY(-1px);
  border-color: rgba(255,107,0,.30);
  box-shadow: 0 14px 34px rgba(11,15,20,.12);
}
.vin-modal-close span{
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 520px){
  .vin-modal-content{
    padding: 30px 16px 22px;
  }
  .vin-modal-close{
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* Policy pages (privacy/terms/refund) */
.policy-page{
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(60px, 7vw, 96px);
}
.policy-head{ margin-bottom: 26px; }
.policy-title{ margin-bottom: 10px; }
.policy-subtitle{
  max-width: 80ch;
  margin-inline: auto;
}
.policy-card{
  border-radius: 26px;
  border: 1px solid rgba(11,15,20,.08);
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(255,107,0,.12), rgba(255,255,255,0) 60%),
    rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(11,15,20,.12);
  backdrop-filter: blur(10px);
  overflow:hidden;
}
.policy-content{
  padding: 28px 22px;
  color: rgba(11,15,20,.80);
  font-weight: 600;
}
.policy-content p{
  margin: 0 0 14px;
  line-height: 1.85;
}
.policy-h2{
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: -.02em;
  color: rgba(11,15,20,.92);
  font-size: 20px;
  margin: 26px 0 12px;
}
.policy-h3{
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(11,15,20,.88);
  font-size: 16px;
  margin: 18px 0 10px;
}
.policy-ul{
  margin: 0 0 18px;
  padding-left: 18px;
}
.policy-ul li{
  margin: 8px 0;
  line-height: 1.7;
}

@media (min-width: 980px){
  .policy-content{ padding: 42px 46px; }
}


@media (max-width: 720px){
  .car-box{
    width: min(430px, 78vw);
    top: 56%;
  }
  .car-bg-road{
    top: 0;
    /* display: none; */
    margin: 0;
    position: relative;
    z-index: 9;
    left: 0;
  }

  .car-bg-road::after 
      {
          display: none;
      }

       .car-bg-road::before
      {
display: none;
      }
}

@media (max-width: 420px){
  .car-box{
    width: 100%;
    top: 0;
    bottom: 0;
    left: auto;
    right: auto;
    transition: none;
    position: relative;
    margin: 0 auto;
    transform: none;
  }
  .driving-marquee{
    top: 48%;
  }
}

/* Checkout page */
.checkout-page{
  padding-top: clamp(70px, 8vw, 20px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

.checkout-back-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom: 18px;
  color: rgba(11,15,20,.72);
  font-weight: 800;
  font-size: 14px;
}

.checkout-hero-head{
  margin-bottom: 24px;
}

.checkout-title{
  font-family: Manrope, system-ui, sans-serif;
  margin:0;
  letter-spacing:-.03em;
  font-weight: 950;
  font-size: clamp(30px, 4.4vw, 44px);
}

.checkout-subtitle{
  margin: 10px 0 0;
  color: rgba(11,15,20,.68);
  font-weight: 700;
  max-width: 70ch;
}

.checkout-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}

.checkout-form-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,15,20,.08);
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(255,107,0,.14), rgba(255,255,255,0) 62%),
    rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  padding: 22px;
}

.checkout-form-title{
  margin:0 0 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 18px;
  color: rgba(11,15,20,.92);
}

.checkout-form{
  display:block;
}

.checkout-field{
  margin-bottom: 14px;
}

.checkout-label{
  display:block;
  font-weight: 900;
  color: rgba(11,15,20,.86);
  margin-bottom: 7px;
  font-size: 14px;
}

.checkout-input{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(11,15,20,.12);
  background: rgba(255,255,255,.92);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-weight: 700;
}

.checkout-input:focus{
  border-color: rgba(255,107,0,.55);
  box-shadow: 0 0 0 4px rgba(255,107,0,.16);
}

.checkout-help{
  margin: 8px 0 0;
  color: rgba(11,15,20,.56);
  font-weight: 700;
  font-size: 12.5px;
}

.checkout-error{
  margin: 8px 0 0;
  color: rgba(210, 45, 45, .95);
  font-weight: 900;
  font-size: 12.5px;
}

.checkout-submit{
  width:100%;
  margin-top: 10px;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255,107,0,1) 0%, rgba(255,138,42,1) 100%);
  color: white;
  font-weight: 950;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  box-shadow: 0 16px 38px rgba(255,107,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.checkout-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(255,107,0,.26);
}

.checkout-submit:disabled{
  cursor:not-allowed;
  filter: grayscale(.25);
  transform: none;
}

.checkout-privacy-note{
  margin-top: 12px;
  color: rgba(11,15,20,.54);
  font-weight: 700;
  font-size: 12.5px;
}

.checkout-right{
  position: relative;
}

.checkout-summary-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,15,20,.08);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  padding: 22px;
}

.checkout-summary-title{
  margin:0;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 18px;
}

.checkout-summary-subtitle{
  margin: 10px 0 18px;
  color: rgba(11,15,20,.62);
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.6;
}

.checkout-badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,107,0,.12);
  color: rgba(255,107,0,1);
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 14px;
}

.checkout-friendly{
  background: rgba(255,107,0,.07);
  border: 1px solid rgba(255,107,0,.18);
  border-radius: 18px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.checkout-friendly-title{
  margin:0;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
}

.checkout-friendly-text{
  margin: 6px 0 0;
  color: rgba(11,15,20,.62);
  font-weight: 800;
  font-size: 12.8px;
  line-height: 1.6;
}

.checkout-quick-line{
  display:flex;
  align-items:center;
  gap: 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 16px;
  padding: 10px 12px;
  margin-bottom: 18px;
}

.checkout-check{
  color: rgba(34,197,94,1);
}

.checkout-quick-text{
  font-weight: 950;
  color: rgba(11,15,20,.80);
  font-size: 13.5px;
}

.checkout-included-title{
  margin:0 0 10px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 16px;
}

.checkout-included-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 9px;
}

.checkout-included-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: rgba(11,15,20,.80);
  font-size: 13.5px;
}

.checkout-li-check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(34,197,94,.14);
  color: rgba(34,197,94,1);
  font-weight: 950;
  flex: 0 0 auto;
}

.checkout-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,15,20,.08);
}

.checkout-total-label{
  font-weight: 950;
}

.checkout-total-price{
  font-weight: 950;
  color: rgba(255,107,0,1);
  font-size: 18px;
}

.checkout-bottom-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 37px;
}

.checkout-mini-card{
  border-radius: 18px;
  border: 1px solid rgba(11,15,20,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(11,15,20,.06);
  padding: 14px 14px;
  display:flex;
  align-items:center;
  gap: 12px;
  width: 100%;
}

.checkout-mini-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.20);
  color: rgba(255,107,0,1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .02em;
  flex: 0 0 auto;
}

.checkout-mini-title{
  font-weight: 950;
}

.checkout-mini-text{
  color: rgba(11,15,20,.58);
  font-weight: 800;
  font-size: 12.8px;
  margin-top: 4px;
}

/* Loader overlay */
.checkout-loader-overlay{
  position: fixed;
  inset: 0;
  background: rgba(11,15,20,.38);
  backdrop-filter: blur(10px) saturate(1.1);
  z-index: 999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}

.checkout-loader-overlay[hidden]{
  display:none !important;
}

.checkout-loader-card{
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.88);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  padding: 22px 18px;
  display:flex;
  align-items:center;
  gap: 16px;
}

.checkout-spinner{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgba(255,107,0,.20);
  border-top-color: rgba(255,107,0,1);
  animation: checkout-spin 900ms linear infinite;
  flex: 0 0 auto;
}

@keyframes checkout-spin{
  from{ transform: rotate(0deg) }
  to{ transform: rotate(360deg) }
}

.checkout-loader-title{
  font-weight: 950;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  letter-spacing:-.02em;
}

.checkout-loader-subtitle{
  margin-top: 6px;
  color: rgba(11,15,20,.64);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 980px){
  .checkout-grid{
    grid-template-columns: 1.05fr .75fr;
    gap: 24px;
  }
  .checkout-bottom-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  /* Keep payment details visible while scrolling */
  .checkout-form-card{
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    /* Prevent large â€œblankâ€ area on the left after sticky stops */
    min-height: 640px;
  }

  .checkout-page{
    padding-bottom: 48px;
  }
}



  .main-logo img 
    {
     width: 245px;
     margin-left: -16px;
    }


    @media (max-width: 768px){

      .main-logo img 
    {
     width: 180px;
    }
    }


    .checkout-left 
      {
        height: 100%;
      }


      .footer-logo 
        {
          width: 300px;
          margin-left: -20px;
        }

   .make-this-center-rating 
    {
      display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    }     