/* ==========================================================================
   Driven Billboards — styles.css
   Bold, high-energy outdoor advertising brand. Dark palette, red + blue accents.
   ========================================================================== */

:root {
  --black: #07080c;
  --bg: #0b0d13;
  --bg-2: #11141d;
  --bg-3: #181c28;
  --line: #242a3a;
  --red: #e01f2d;
  --red-dark: #b3121f;
  --blue: #2350e6;
  --blue-light: #4f78ff;
  --text: #f4f6fb;
  --muted: #9aa3b6;
  --muted-2: #707a90;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Anton", "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}

p { margin: 0 0 1.1em; color: var(--muted); }
p.lead { color: var(--text); font-size: 1.18rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow.blue { color: var(--blue-light); }

.accent-red { color: var(--red); }
.accent-blue { color: var(--blue-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 12px 30px rgba(224, 31, 45, 0.35); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(224, 31, 45, 0.5); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(35, 80, 230, 0.35); }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(35, 80, 230, 0.5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); transform: translateY(-3px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FBFCF8;
  border-bottom: 1px solid rgba(7, 8, 12, 0.08);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: #FBFCF8; border-bottom-color: rgba(7, 8, 12, 0.12); box-shadow: 0 6px 24px rgba(7, 8, 12, 0.07); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 18px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.93rem;
  font-weight: 600;
  color: #475063;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #07080c; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 8px;
}
.mobile-menu { display: none; }
.nav-toggle span { display: block; height: 2.5px; background: #07080c; border-radius: 2px; margin: 5px 0; transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.site-header .btn-ghost { color: #07080c; border-color: rgba(7, 8, 12, 0.25); }
.site-header .btn-ghost:hover { border-color: #07080c; background: rgba(7, 8, 12, 0.06); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) brightness(0.85);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 15% 20%, rgba(35, 80, 230, 0.18), transparent 60%),
    radial-gradient(120% 80% at 85% 90%, rgba(224, 31, 45, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.78) 0%, rgba(7, 8, 12, 0.62) 45%, rgba(7, 8, 12, 0.95) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 820px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); margin-bottom: 22px; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 2px var(--white); }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.4rem); max-width: 620px; color: #d7dced; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; }
.hero-badge .num { font-family: var(--display); font-size: 2.4rem; color: #fff; line-height: 1; }
.hero-badge .lbl { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.section-head p { font-size: 1.12rem; }
.bg-alt { background: var(--bg-2); }
.bg-black { background: var(--black); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  border-top: 2px solid rgba(0,0,0,0.2);
  border-bottom: 2px solid rgba(0,0,0,0.2);
}
.marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: scroll-x 28s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--display); font-size: 1.3rem; color: #fff; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after { content: "★"; color: rgba(255,255,255,0.6); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Grid cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); background: var(--bg-3); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  margin-bottom: 22px; font-family: var(--display); font-size: 1.5rem; color: #fff;
}
.card.blue .ico { background: linear-gradient(135deg, var(--blue), #1736a8); }
.card h3 { font-size: 1.28rem; }
.card p { margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { padding: 30px 18px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.stat .num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: #fff; }
.stat .num.red { color: var(--red); }
.stat .num.blue { color: var(--blue-light); }
.stat .lbl { color: var(--muted); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 10px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 38px 30px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 3.4rem; color: rgba(255,255,255,0.08);
  position: absolute; top: 14px; right: 22px;
}
.step h3 { font-size: 1.3rem; }
.step p { margin-bottom: 0; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img, .split-media video { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); display: block; width: 100%; }
.video-sound-toggle {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px; border-radius: 999px;
  background: rgba(11, 13, 19, 0.72); border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.video-sound-toggle:hover { background: rgba(35, 80, 230, 0.9); border-color: var(--blue-light); transform: translateY(-1px); }
.video-sound-toggle .vs-icon { font-size: 1rem; line-height: 1; }
.video-sound-toggle:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 2px; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; color: var(--text); }
.feature-list li .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(35,80,230,0.18); color: var(--blue-light);
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.9rem; margin-top: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(100% 140% at 0% 0%, rgba(224,31,45,0.35), transparent 55%),
    radial-gradient(100% 140% at 100% 100%, rgba(35,80,230,0.35), transparent 55%),
    var(--black);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  text-align: center;
  border: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5b6478; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,80,230,0.25);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa3b6' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field .error-msg { color: #ff6b74; font-size: 0.82rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b74; }
.field.invalid .error-msg { display: block; }

.captcha-field .captcha-box {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 16px;
}
.captcha-field .captcha-q {
  font-weight: 800; font-size: 1.05rem; color: var(--text);
  letter-spacing: 0.01em; flex: 1 1 auto; text-transform: none;
}
.captcha-field .captcha-box input[type="text"] {
  flex: 0 0 120px; width: 120px; text-align: center; font-weight: 700;
}
.captcha-refresh {
  flex: 0 0 auto; background: transparent; border: 1px solid var(--line);
  color: var(--muted); width: 42px; height: 42px; border-radius: 8px;
  font-size: 1.25rem; line-height: 1; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.captcha-refresh:hover { color: #fff; border-color: var(--blue); background: rgba(35,80,230,0.12); }
.captcha-field.invalid .captcha-box { border-color: #ff6b74; }

.form-status { display: none; padding: 16px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(35,80,230,0.14); border: 1px solid rgba(79,120,255,0.4); color: #cdd9ff; }
.form-status.err { background: rgba(224,31,45,0.12); border: 1px solid rgba(224,31,45,0.4); color: #ffc9cd; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; animation: pop 0.5s var(--ease); }
.form-success .check {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--blue), #1736a8);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff;
}
.form-success h3 { font-size: 1.6rem; }
@keyframes pop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Map ---------- */
#map { width: 100%; height: 560px; border-radius: var(--radius-lg); border: 1px solid var(--line); z-index: 0; }
.leaflet-popup-content-wrapper { background: var(--bg-3); color: #fff; border-radius: 12px; }
.leaflet-popup-content { margin: 14px 16px; font-family: var(--font); }
.leaflet-popup-content b { color: #fff; }
.leaflet-popup-content a { color: var(--blue-light); font-weight: 700; }
.leaflet-popup-tip { background: var(--bg-3); }
.map-note { color: var(--muted); font-size: 0.9rem; margin-top: 16px; }

/* ---------- Markets list ---------- */
.market-tools { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.market-search { position: relative; flex: 1; min-width: 260px; max-width: 420px; }
.market-search input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 13px 18px 13px 44px; color: #fff; font-size: 1rem; }
.market-search input:focus { outline: none; border-color: var(--blue); }
.market-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
.market-count { color: var(--muted); font-size: 0.92rem; }
.markets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.market-item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.market-item:hover { border-color: rgba(255,255,255,0.18); background: var(--bg-3); transform: translateY(-2px); }
.market-item .m-name { font-weight: 700; font-size: 0.98rem; }
.market-item .m-state { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.market-item a { flex: none; color: var(--blue-light); font-weight: 700; font-size: 0.85rem; }
.market-item a:hover { color: #fff; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 130px 0 70px; position: relative; overflow: hidden; background: var(--black); }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 80% 0%, rgba(35,80,230,0.22), transparent 55%), radial-gradient(70% 120% at 0% 100%, rgba(224,31,45,0.18), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.page-hero p { font-size: 1.15rem; max-width: 640px; }
.breadcrumbs { display: flex; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: var(--red); }

/* ---------- Case study ---------- */
.embed-frame {
  position: relative; width: 100%; padding-top: 62%; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-2);
}
.embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin-top: 44px; color: #fff; }
.prose h3 { font-size: 1.15rem; margin-top: 28px; color: #fff; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }
.prose a { color: var(--blue-light); text-decoration: underline; }
.prose .updated { color: var(--muted); font-style: italic; }

/* ---------- Footer ---------- */
.site-footer { background: #FBFCF8; border-top: 1px solid rgba(7, 8, 12, 0.1); padding: 70px 0 30px; color: #475063; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 44px; margin-bottom: 18px; transform: scale(1.5); transform-origin: left center; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; color: #475063; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: #5b6475; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #3a4150; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: #07080c; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(7, 8, 12, 0.1); color: #5b6475; font-size: 0.85rem; }
.footer-bottom a { color: #3a4150; }
.footer-bottom a:hover { color: #07080c; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .mobile-menu { display: block; }
  .mobile-menu {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #FBFCF8; border-bottom: 1px solid rgba(7, 8, 12, 0.1); padding: 18px 22px 26px;
  }
  .mobile-menu ul { list-style: none; padding: 0; margin: 0 0 18px; }
  .mobile-menu li { margin-bottom: 4px; }
  .mobile-menu a { display: block; padding: 12px 6px; font-weight: 600; color: #2a3142; border-bottom: 1px solid rgba(7, 8, 12, 0.08); }
  .mobile-menu .btn { width: 100%; margin-top: 8px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { min-height: 88vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .form-card { padding: 26px; }
}

/* ---------- Thank-you page ---------- */
.thanks { max-width: 720px; }
.thanks .check-lg {
  width: 84px; height: 84px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  margin-bottom: 24px; box-shadow: 0 12px 40px rgba(224,31,45,0.35);
}
.thanks .check-lg.err { background: linear-gradient(135deg, #b3121f, #e01f2d); }
