/* ============================================================
   Lexon Consulting Group — Landing Page Styles
   Shared by services/ and industries/ pages
   Matches premium navy/gold theme from style.css
   ============================================================ */

:root {
  --navy: #0F172A;
  --slate: #1E293B;
  --gold: #C8A24D;
  --gold-light: rgba(200, 162, 77, 0.15);
  --light: #F8FAFC;
  --grey: #F1F5F9;
  --text: #475569;
  --text-dark: #334155;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 17px;
}

/* Accessibility: visible skip link for keyboard users */
.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus{
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  z-index: 10000;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

body.sticky-cta-page {
  padding-bottom: 72px;
}

/* ======================
NAVIGATION
====================== */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding: 2% 6%;
width:100%;
margin-bottom:100px;
z-index: 999;
}

nav img{
width:150px;
margin-top:50px;
}

.nav-links{
flex:1;
text-align:right;
}

.nav-links ul{
margin:0;
padding:0;
}

.nav-links ul li{
list-style:none;
display:inline-block;
position:relative;
padding:8px 15px;
}

.nav-links ul li a{
color:#fff;
text-decoration:none;
font-size:18px;
font-weight:500;
transition:0.3s;
}

/* Gold underline */

.nav-links ul li::after{
content:'';
display:block;
width:0;
height:2px;
background:#C8A24D;
margin:auto;
transition:.4s;
}

.nav-links ul li:hover::after{
width:100%;
}  

/* ======================
DROPDOWN MENU
====================== */

.dropdown-content{
display:none;
position:absolute;
top:100%;
left:0;
min-width:260px;
background:#1E293B;
border-radius:8px;
box-shadow:0 12px 30px rgba(0,0,0,.25);
padding:10px 0;
z-index:999;
}

.dropdown-content li{
display:block !important;
width:100%;
padding:0;
}

.dropdown-content li::after{
display:none;
}

.dropdown-content li a{
display:block;
padding:12px 20px;
color:#fff;
font-size:16px;
transition:.3s;
}

.dropdown-content li a:hover{
background:#C8A24D;
color:#1E293B;
padding-left:28px;
}

.dropdown:hover .dropdown-content{
display:block;
}

/* ======================
MOBILE NAVIGATION
====================== */

nav .fa{
display:none;
}

@media(max-width:700px){

.nav-links{

    position:fixed;
    background:#1E293B;
    height:100vh;
    width:280px;
    top:0;
    right:-280px;
    text-align:left;
    transition:.5s;
    z-index:9999;
    overflow-y:auto;
}

.nav-links ul{
    padding:30px;
}

.nav-links ul li{
    display:block;
    margin-bottom:8px;
}

nav .fa{
    display:block;
    color:#fff;
    font-size:24px;
    margin:15px;
    cursor:pointer;
}

.dropdown-content{
    position:static;
    display:block;
    background:transparent;
    box-shadow:none;
    padding-left:15px;
    min-width:100%;
}

.dropdown-content li a{
    font-size:15px;
    padding:10px 15px;
    color:#ddd;
}

.dropdown-content li a:hover{
    background:none;
    color:#C8A24D;
    padding-left:20px;
}
}

.page-nav .fa-bars,
.page-nav .fa-times,
.sub-header nav .fa-bars,
.sub-header .nav-links .fa-times {
  display: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ======================
   SHARED HERO + HEADER
====================== */
.sub-header {
    width: 100%;
    height: 60vh;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('images/background.png');
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1 {
    margin-top: 100px;
}
.herocontent,
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  padding: 100px 8%;
  align-items: center;
  background: linear-gradient(to right, #eef3f9, #f7f9fc);
}

.hero-image {
  max-width: 720px;
  color: var(--text-dark);
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-btn,
.hero-btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.hero-btn:hover,
.hero-btn-2:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.06);
}

.hero-btn.red-btn {
  background: var(--gold);
  color: var(--white);
  border-color: transparent;
}

.hero-btn-2 {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.hero-btn-2:hover {
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero-sub {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6%;
  }

  .sub-header h1 {
    margin-top: 110px;
    font-size: clamp(2.6rem, 8vw, 3.4rem);
  }
}

/* ======================
   BUTTONS
====================== */

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 162, 77, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ======================
   HERO
====================== */

.hero-landing {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 140px 30px 100px;
  background:
    linear-gradient(rgba(5, 10, 20, 0.96), rgba(5, 10, 20, 0.94)),
    url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.25);
  pointer-events: none;
}

.hero-landing h1,
.hero-landing .hero-sub,
.hero-landing .breadcrumb,
.hero-landing .breadcrumb a,
.hero-landing .breadcrumb li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

.hero-landing .hero-sub {
  color: rgba(255, 255, 255, 0.92);
}

.hero-landing .breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.hero-landing .breadcrumb {
  margin-bottom: 20px;
}

.hero-landing .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  font-size: 14px;
}

.hero-landing .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-landing .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.hero-landing .breadcrumb a:hover {
  color: var(--gold);
}

.hero-landing .breadcrumb li[aria-current="page"] {
  color: var(--gold);
}

.premium-tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid rgba(200, 162, 77, 0.25);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-landing h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto 24px;
  color: var(--white);
}

.hero-landing {
  background-image: url("images/banner2.jpg");
}

.hero-landing .hero-sub {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.trust-line {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ======================
   SECTIONS
====================== */

.section {
  padding: 100px 8%;
}

.section-white {
  background: var(--white);
}

.section-grey {
  background: var(--grey);
}

.section-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-heading p {
  font-size: 18px;
  line-height: 1.8;
}

.section-navy .section-heading h2 {
  color: var(--white);
}

/* Prose content blocks */
.prose h3 {
  color: var(--navy);
  font-size: 24px;
  margin: 32px 0 16px;
}

.prose p {
  margin-bottom: 18px;
}

.prose ul {
  margin: 16px 0 24px 24px;
}

.prose li {
  margin-bottom: 10px;
}

/* Callout box */
.callout {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}

.callout p {
  margin: 0;
  color: var(--text-dark);
  font-size: 17px;
}

.callout strong {
  color: var(--navy);
}

/* ======================
   STATS
====================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card .stat-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* ======================
   SERVICE CARDS
====================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card .card-icon i {
  font-size: 26px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Benefit cards with icons */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ======================
   PROCESS / TIMELINE
====================== */

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
}

/* How Lexon helps — numbered steps */
.steps-list {
  max-width: 900px;
  margin: 0 auto;
  counter-reset: step-counter;
}

.step-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step-item .step-marker {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.step-item h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

/* ======================
   INDUSTRIES GRID
====================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  background-color: #0F172A;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.industry-card:hover {
  transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: rgba(212,175,55,0.35);
}

.industry-card h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
}

.industry-card a {
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

/* ======================
   WHY LEXON
====================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.section-navy .trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-navy .trust-card h3 {
  color: var(--gold);
}

/* ======================
   FAQ
====================== */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--grey);
}

.faq-item .faq-answer {
  padding: 0 28px 24px;
  line-height: 1.8;
  font-size: 16px;
}

/* ======================
   CTA SECTIONS
====================== */

.cta-block {
  margin: 0 8% 100px;
  padding: 80px 50px;
  border-radius: 32px;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/banner3.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-block h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 18px;
}

.cta-inline {
  text-align: center;
  padding: 48px 0;
}

.cta-inline p {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--text-dark);
}

/* Footer CTA strip */
.footer-cta {
  background: var(--slate);
  padding: 60px 8%;
  text-align: center;
}

.footer-cta h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================
   FOOTER
====================== */

.site-footer {
  background: var(--navy);
  padding: 48px 8% 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  list-style: none;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
}

.site-footer .footer-links a:hover {
  color: var(--gold);
}

.site-footer .icons {
  margin-bottom: 20px;
}

.site-footer .icons a {
  color: var(--gold);
  margin: 0 12px;
  font-size: 22px;
}

.site-footer .disclaimer {
  font-size: 13px;
  line-height: 1.7;
  max-width: 700px;
  margin: 16px auto 0;
  opacity: 0.75;
}

/* ======================
   HUB PAGES (index)
====================== */

.hub-hero {
  min-height: 50vh;
  padding-top: 160px;
  padding-bottom: 80px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.hub-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.hub-card:hover {
  transform: translateY(-8px);
}

.hub-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}

.hub-card p {
  font-size: 16px;
  margin-bottom: 16px;
}

.hub-card .read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
}

/* Internal links section */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.related-links a {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: all var(--transition);
}

.related-links a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================
   MOBILE
====================== */

@media (max-width: 992px) {
  .stats-row,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 6%;
  }

  .page-nav,
  .sub-header nav {
    padding: 14px 20px;
    width: 94%;
  }

  .page-nav .fa-bars,
  .sub-header nav .fa-bars {
    display: block;
  }

  .nav-links {
    position: fixed;
    background: var(--navy);
    height: 100vh;
    width: 260px;
    top: 0;
    right: -260px;
    text-align: left;
    z-index: 1001;
    transition: right 0.4s ease;
    padding-top: 80px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links .fa-times {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0;
    padding: 0 30px;
  }

  .nav-links ul li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-row,
  .process-timeline,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    flex-direction: column;
    gap: 16px;
  }

  .cta-block {
    margin: 0 4% 70px;
    padding: 50px 24px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }

  .sticky-cta p {
    font-size: 13px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
