/* Long Beach Copiers - Light Mode Styles */
/* Color Palette: White backgrounds with Kelly Green (#4CBB17) accents */

:root {
  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f0fdf4;
  --bg-card: #ffffff;

  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6a6a6a;
  --text-inverse: #ffffff;

  /* Kelly Green Accent Colors */
  --accent: #4CBB17;
  --accent-light: #7DD348;
  --accent-dark: #3DA614;
  --accent-hover: rgb(69, 168, 21);
  --accent-muted: rgba(76, 187, 23, 0.1);
  --accent-muted-2: rgba(76, 187, 23, 0.08);

  /* Golden Yellow Accent Colors */
  --accent-golden: #FFD700;
  --accent-golden-dark: #E5C100;
  --accent-golden-hover: #1a1a1a;

  /* Tailored Solution Card Custom Colors */
  --accent-tailored: #6f8a35;
  --accent-tailored-light: #b3a53c;
  --accent-tailored-dark: #14a85900;
  --accent-tailored-muted: rgba(46, 139, 87, 0.12);
  --gradient-tailored: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);

  /* UI Colors */
  --border: #e5e7eb;
  --border-light: #f0f0f0;
  --border-accent: #4CBB17;

  /* Shadows */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-accent: 0 4px 14px rgba(76, 187, 23, 0.25);
  --shadow-tailored: 0 4px 14px rgba(46, 139, 87, 0.3);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #4CBB17 0%, #7DD348 100%);
  --gradient-accent-dark: linear-gradient(135deg, #3DA614 0%, #5CA617 100%);
  --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);

  /* Typography */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1400px;
  --container-narrow: 1200px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(40px, 5vw, 72px);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--accent);
}

/* ==================== HEADER ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fffef6;
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 24px) clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: block;
}

.logo-img {
  height: clamp(50px, 10vw, 80px);
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition-base);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16px);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-header {
  background: var(--accent);
  color: var(--text-inverse) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.cta-header::after {
  display: none !important;
}

.cta-header:hover {
  background: var(--accent-dark);
  color: var(--text-inverse) !important;
}

/* Mobile Menu */
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-base);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .nav-link {
    font-size: 24px;
  }

  .cta-header {
    padding: 16px 32px;
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  height: 85vh;
  max-height: 900px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: #ffd900;
  position: relative;
  overflow: hidden;
}

/* Green Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #ffd900 0%, #f99f1c 100%);
  z-index: 0;
}

/* Glow Effect */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 90%);
  pointer-events: none;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: clamp(400px, 50vw, 600px);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 77px);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Hero Fade Animation Wrappers */
.hero-text-fade,
.hero-graphic-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active .hero-text-fade {
  opacity: 1;
  transition-delay: 0.1s;
}

.carousel-slide.active .hero-graphic-fade {
  opacity: 1;
  transition-delay: 0.2s;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  border: none;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--accent);
  color: var(--text-inverse);
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-accent);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow--prev {
  left: clamp(10px, 4vw, 10px);
}

.carousel-arrow--next {
  right: clamp(10px, 4vw, 10px);
}

.carousel-arrow svg {
  width: clamp(20px, 2.5vw, 28px);
  height: clamp(20px, 2.5vw, 28px);
}

/* Hide arrows on very small screens */
@media (max-width: 580px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow--prev {
    left: 4px;
  }

  .carousel-arrow--next {
    right: 4px;
  }
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 77px);
  width: 100%;
}

.hero-text-content {
  flex: 1;
}

.hero-text-wrapper {
  max-width: 500px;
}

.hero-title {
  margin-bottom: clamp(16px, 2vw, 10px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 3.5vw, 45px);
  white-space: pre-line;
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-secondary);
  margin-bottom: clamp(24px, 3vw, 40px);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic__stage {
  height: clamp(280px, 40vw, 504px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* Hero Ticker */
.hero-ticker {
  background: #000000 !important;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.hero-ticker__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.ticker-item {
  color: var(--text-inverse);
  font-weight: 600;
  font-size: clamp(12px, 1.5vw, 16px);
  padding: 0 clamp(16px, 2vw, 24px);
}

.ticker-divider {
  color: #ffffff;
  font-size: 12px;
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .carousel-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-content-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }

  .hero-text-content {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(28px, 6vw, 40px);
    color: var(--text-inverse);
  }

  .hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-buttons .cta-button-large {
    display: inline-flex !important;
    width: auto !important;
    min-width: 130px;
    max-width: none;
    text-align: center;
    padding: 12px 18px;
    font-size: 13px;
  }

  .hero-graphic__stage {
    height: clamp(200px, 50vw, 336px);
  }

  .hero-title,
  .hero-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hero-ticker {
    position: relative;
    margin-top: 20px;
  }
}

/* Very small screens (below 400px) */
@media (max-width: 400px) {
  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .hero-buttons .cta-button-large {
    padding: 10px 14px !important;
    font-size: 11px !important;
    letter-spacing: 0.02em;
    min-width: 110px !important;
  }
}

/* ==================== CTA BUTTONS ==================== */
.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.8vw, 18px) clamp(28px, 4vw, 48px);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cta-button-large.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.cta-button-large.primary:hover {
  background: var(--accent-golden-hover);
  border-color: var(--accent-golden-hover);
  color: var(--accent-golden);
  transform: translateY(-2px);
}

.cta-button-large.secondary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.cta-button-large.secondary:hover {
  background: var(--accent-golden-hover);
  color: var(--accent-golden);
  border-color: var(--accent-golden-hover);
  transform: translateY(-2px);
}

/* ==================== BANNER CALLOUT ==================== */
.banner-callout-1 {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0)
}

.banner-callout-img {
  width: clamp(500px, 70vw, 2000px);
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  align-content: center;
  margin: 20px auto;
  padding: 15px;
}

/* ==================== PITCH SECTION ==================== */
.pitch-section {
  position: relative;
  padding: 0;
  overflow: visible;
  background: rgba(0, 0, 0, 0);
  min-height: 150vh;
  height: auto;
}

.pitch-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(400px, 90vw, 1800px);
  height: calc(100% - 0%);
  background: linear-gradient(to bottom, rgb(0, 76, 18) 0%, #7DD348 100%);
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

.problem-section,
.solutions-section {
  position: relative;
  z-index: 1;
  min-height: 50vh;
}

/* Problem Section */
.problem-section {
  padding: 30px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.problem-wrapper {
  width: clamp(320px, 85vw, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  background: linear-gradient(180deg, #b40000 0%, #000000 100%);
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(238, 90, 90, 0.9);
  animation: glow-pulse 2s ease-in-out infinite alternate;
  padding: 40px;
  box-sizing: border-box;
  overflow: visible;
}

.problem-header {
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.problem-heading {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.problem-title .word {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .problem-title .word {
    white-space: normal;
  }
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 100px);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.problem-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #ffffff;
  place-self: center;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.problem-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.problem-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(14px, 1.5vw, 20px);
  color: #ffffff;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: #e74c3c;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.problem-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--text-inverse);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.problem-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.problem-right {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.problem-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* Responsive */
@media (max-width: 980px) {
  .problem-section {
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }

  .problem-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    width: 85vw;
    margin: 0 auto;
    max-width: calc(90vw - 20px);
    box-sizing: border-box;
    border-radius: 20px;
    overflow: visible;
  }

  .problem-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .problem-left {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
  }

  .problem-header {
    text-align: center;
    width: 100%;
  }

  .problem-heading {
    font-size: clamp(20px, 4vw, 28px);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .problem-points {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
  }

  .problem-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: clamp(14px, 2.5vw, 17px);
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .problem-right {
    order: -1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .problem-image {
    max-height: 300px;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Tablet specifically for heading nowrap - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .problem-heading {
    font-size: clamp(18px, 3.2vw, 26px);
    white-space: nowrap;
  }

  .problem-wrapper {
    padding: 20px 24px;
    width: 88vw;
    max-width: calc(90vw - 20px);
  }
}

@media (max-width: 600px) {
  .problem-section {
    padding: 16px 0;
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }

  .problem-header {
    margin-bottom: 8px;
    width: 100%;
  }

  .problem-heading {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .problem-wrapper {
    width: 82vw;
    margin: 0 auto;
    max-width: calc(88vw - 16px);
    box-sizing: border-box;
    gap: 20px;
    padding: 16px;
    border-radius: 16px;
    overflow: visible;
  }

  .problem-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .problem-left {
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .problem-points {
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .problem-points li {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: left;
    max-width: 100%;
  }

  .check-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
    background-size: 9px;
    margin-top: 1px;
    background: #e74c3c;
  }

  .problem-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }

  .problem-right {
    order: -1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .problem-image {
    max-height: 220px;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Solutions Section */
.solutions-section {
  padding: clamp(30px, 8vw, 10px) 0;
}

.solutions-container {
  width: min(calc(90vw - 350px), 1400px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  max-width: 100%;
}

.solutions-section h2 {
  font-size: clamp(36px, 4.5vw, 65px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: clamp(40px, 3vw, 60px);
  color: #ffffff;
}

.solutions-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
}

.solutions-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Solutions Images Container - Stacked images for hover effect */
.solutions-images-container {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.solutions-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  transform: scale(0.98);
}

/* First image positioned relatively to give container height */
.solutions-image:first-child {
  position: relative;
}

/* Active state - only visible image */
.solutions-image.active {
  opacity: 1;
  transform: scale(1);
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 24px);
  overflow: hidden;
  max-width: 100%;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(14px, 1.8vw, 22px);
  background: var(--accent-golden-hover);
  border-radius: var(--radius-sm);
  border: 2px solid var(--accent-golden-hover);
  transition: all var(--transition-base);
}

.solution-item:hover {
  background: var(--accent-golden);
  border-color: var(--accent-golden);
  transform: translateY(-2px);
}

/* Active state - linked to displayed image */
.solution-item.active {
  background: var(--accent-golden);
  border-color: var(--accent-golden);
}

.check-mark {
  width: clamp(32px, 3.5vw, 44px);
  height: clamp(32px, 3.5vw, 44px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
}

.check-mark svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a1a;
  stroke-width: 3;
}

.solution-item:hover .check-mark {
  background: #1a1a1a;
}

.solution-item:hover .check-mark svg {
  stroke: var(--accent-golden);
}

.solution-text h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 4px;
  color: var(--accent-golden);
  word-break: break-word;
  overflow-wrap: break-word;
}

.solution-text p {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--accent-golden);
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.solution-item:hover .solution-text h3,
.solution-item:hover .solution-text p {
  color: #1a1a1a;
}

/* Active state text colors */
.solution-item.active .solution-text h3,
.solution-item.active .solution-text p {
  color: #1a1a1a;
}

.solution-item.active .check-mark {
  background: #1a1a1a;
}

.solution-item.active .check-mark svg {
  stroke: var(--accent-golden);
}

/* Mobile Pitch */
@media (max-width: 980px) {
  .pitch-section {
    overflow-x: visible;
    overflow-y: visible;
  }

  .pitch-gradient {
    width: min(90vw, 1800px);
  }

  .problem-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .problem-list {
    align-items: center;
  }

  .problem-list li {
    justify-content: center;
  }

  .problem-graphic {
    order: -1;
    grid-template-columns: 1fr;
  }

  .problem-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-container {
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: hidden;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .problem-stats-grid {
    grid-template-columns: 1fr;
  }

  .solutions-container {
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 0 16px;
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solutions-images-container {
    min-height: 200px;
  }

  .solution-item {
    flex-direction: row;
    text-align: left;
    padding: 12px;
    gap: 12px;
  }

  .check-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .solution-text {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  .solution-text h3 {
    font-size: 14px;
  }

  .solution-text p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .solutions-container {
    width: calc(100% - 24px);
    padding: 0 12px;
  }

  .solution-item {
    padding: 10px;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
  }

  .check-mark {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .check-mark svg {
    width: 14px;
    height: 14px;
  }

  .solution-text h3 {
    font-size: 13px;
  }

  .solution-text p {
    font-size: 11px;
  }

  .solution-text {
    min-width: 0;
    max-width: 100%;
  }
}

/* ==================== STATS & BENEFITS SECTION ==================== */
.stats-benefits-section {
  background: var(--bg-primary);
  padding: clamp(60px, 8vw, 100px) 0;
}

.stats-benefits-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

/* Row 2: Selling Points */
.selling-points-row {
  width: 100%;
}

/* Selling Points Grid - 3 Columns */
.selling-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.selling-point-card {
  background: #000000;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #333333;
  transition: all var(--transition-base);
}

.selling-point-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-icon {
  width: clamp(56px, 7vw, 72px);
  height: clamp(56px, 7vw, 72px);
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD700;
  border-radius: 50%;
}

.card-icon svg {
  width: clamp(28px, 3.5vw, 36px);
  height: clamp(28px, 3.5vw, 36px);
  fill: #000000;
}

.selling-point-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  color: #FFFFFF;
}

.selling-point-card p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #FFFFFF;
  line-height: 1.6;
}

/* Responsive - Tablet */
@media (max-width: 980px) {
  .receipts-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .selling-points-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .stats-benefits-section {
    padding: clamp(40px, 6vw, 60px) 0;
  }

  .stats-benefits-container {
    gap: clamp(32px, 5vw, 48px);
  }

  .receipts-metrics-grid {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 16px);
  }

  .receipt-metric-card {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: clamp(16px, 3vw, 24px);
    gap: 16px;
  }

  .receipt-metric-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .receipt-metric-value {
    font-size: clamp(24px, 5vw, 32px);
  }

  .receipt-metric-label {
    font-size: clamp(11px, 2vw, 14px);
  }
}

/* ==================== SERVICE AREA SECTION ==================== */
.service-area-section {
  background: var(--bg-primary);
  padding: clamp(60px, 8vw, 100px) 0;
}

.service-area-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.service-area-container h2 {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
  color: var(--text-primary);
}

.map-container {
  width: 80vw;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-area-map {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== TAILORED SOLUTIONS SECTION ==================== */
.tailored-solutions-section {
  background: var(--bg-primary);
  padding: clamp(10px, 8vw, 20px) 0;
}

.tailored-solutions-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.tailored-solutions-container h2 {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  color: var(--text-primary);
}

/* Typewriter Animation */
.typewriter-heading {
  overflow: hidden;
  white-space: nowrap;
  animation: typewriter 2s steps(35) forwards;
  font-family: monospace;
}

.typewriter-cursor {
  display: inline-block;
  animation: blink 0.75s step-end infinite;
  color: var(--accent, #4CBB17);
  font-weight: bold;
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Stats Benefits Container within Tailored Solutions */
.tailored-solutions-container .stats-benefits-container {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.tailored-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.tailored-solution-card {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-tailored);
  border: 1px solid var(--accent-tailored);
  transition: all var(--transition-base);
}

.tailored-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-tailored-light);
}

.solution-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tailored-solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-content {
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--accent-tailored-dark);
}

.solution-content h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  color: #000000;
}

.solution-content p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000000;
  line-height: 1.6;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.solution-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-content li {
  font-size: clamp(13px, 1.3vw, 15px);
  color: #000000;
  padding-left: 20px;
  position: relative;
}

.solution-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 600;
}

@media (max-width: 980px) {
  .tailored-solutions-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==================== FAQ CONTENT SECTION ==================== */
.faq-content-section {
  background: var(--bg-secondary);
  padding: clamp(10px, 8vw, 20px) 0;
}

.faq-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.faq-content-wrapper>.section-title {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
  color: var(--text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
}

.faq-list-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  overflow: hidden;
}

.faq-list-item:hover {
  border-color: var(--accent);
}

.faq-list-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(76, 187, 23, 0.15);
}

/* Accordion Button Styles */
.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-base);
}

.faq-question-btn:hover {
  background: rgba(76, 187, 23, 0.05);
}

.faq-question-btn:focus {
  outline: none;
}

.faq-question-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-question-text {
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--accent);
}

/* Accordion Icon Styles */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform var(--transition-base);
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-list-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Accordion Answer Wrapper */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-list-item.active .faq-answer-wrapper {
  max-height: 500px;
}

.faq-answer-text {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  padding: 0 clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px);
}

.banner-column {
  position: sticky;
  top: 100px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .faq-content-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 40px);
  }

  .faq-content-wrapper>.section-title {
    text-align: center;
  }

  .banner-column {
    position: static;
    order: -1;
  }
}

/* ==================== GET QUOTE SECTION ==================== */
.get-quote-section {
  background: var(--accent);
  padding: clamp(10px, 8vw, 40px) 0;
  position: relative;
  overflow: hidden;
}

.get-quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.get-quote-container {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.quote-content {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.quote-content h2 {
  color: var(--text-inverse);
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.quote-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 600px;
  margin: 0 auto;
}

.quote-form {
  background: var(--bg-card);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: clamp(12px, 1.5vw, 16px);
  font-size: clamp(14px, 1.4vw, 16px);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
}

.error-message {
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-submit {
  text-align: center;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.submit-button {
  background: var(--accent);
  color: var(--text-inverse);
  padding: clamp(16px, 2vw, 20px) clamp(48px, 6vw, 80px);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.submit-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.submit-button:active {
  transform: translateY(0);
}

.form-disclaimer {
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text-primary);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo {
  width: auto;
  height: auto;
  max-width: 280px;
  max-height: 120px;
  margin-bottom: clamp(16px, 2vw, 24px);
  transform: scale(1);
  transform-origin: center center;
  transition: transform var(--transition-base);
}

/* Tablet breakpoint (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .footer-logo {
    max-width: 240px;
    max-height: 100px;
    transform: scale(0.85);
  }
}

/* Mobile breakpoint (320px - 767px) */
@media (max-width: 767px) {
  .footer-logo {
    max-width: 200px;
    max-height: 90px;
    transform: scale(0.75);
  }
}

/* Desktop breakpoint (1024px+) - default styles above */
@media (min-width: 1024px) {
  .footer-logo {
    max-width: 300px;
    max-height: 130px;
    transform: scale(1);
  }
}



.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4,
.footer-compliance h4 {
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 16px);
  margin-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ffffff;
  font-size: clamp(14px, 1.3vw, 16px);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-compliance ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-compliance a {
  color: #ffffff;
  font-size: clamp(14px, 1.3vw, 16px);
  transition: color var(--transition-fast);
}

.footer-compliance a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin-bottom: 10px;
  color: rgb(255, 217, 1);
  font-weight: bold;
}

.footer-contact a {
  color: rgb(255, 217, 1);
  font-size: clamp(16px, 1.3vw, 18px);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  max-width: 150px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: var(--text-inverse);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(13px, 1.2vw, 15px);
}

@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes glow-pulse {
  from {
    box-shadow: 0 0 15px rgba(238, 90, 90, 0.8);
  }

  to {
    box-shadow: 0 0 25px rgba(238, 90, 90, 1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* ==================== UTILITY CLASSES ==================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 10%), var(--container-max));
  margin: 0 auto;
  padding: 0;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent), 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #1a1a1a;
  box-shadow: var(--shadow-accent), 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
  stroke: #FFD700;
  display: block;
}

@media (max-width: 640px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ==================== SPLASH PAGE OVERLAY ==================== */
/* Overlay Container - Full viewport, semi-transparent */
.splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Visible state for fade-in animation */
.splash-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Fade-out animation state */
.splash-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Splash Container - Max 600px, centered */
.splash-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Close Button - Top right corner of splash frame, 20px from edges */
.splash-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
  z-index: 10;
}

.splash-close:hover {
  background-color: rgba(255, 255, 255, 0.4);
  border-color: #ffffff;
  transform: scale(1.1);
}

.splash-close:focus {
  outline: 2px solid #4CBB17;
  outline-offset: 2px;
}

/* Content Container */
.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  width: 100%;
}

/* Hero Image - Exactly 400px width, auto height */
.splash-image {
  width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

/* Call-to-Action Button - Bottom of container, min 200x50px, 40px bottom padding */
.splash-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
  padding: 16px 40px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.splash-cta:hover {
  background: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
  color: #1a1a1a;
}

.splash-cta:focus {
  outline: 3px solid #4CBB17;
  outline-offset: 3px;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
  .splash-content {
    gap: 16px;
    padding: 30px;
  }

  .splash-image {
    width: 100%;
    max-width: 350px;
  }

  .splash-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .splash-cta {
    padding: 14px 32px;
    font-size: 16px;
    min-width: 200px;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .splash-content {
    gap: 12px;
    padding: 24px;
  }

  .splash-image {
    width: 100%;
    max-width: 300px;
  }

  .splash-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .splash-cta {
    padding: 12px 28px;
    font-size: 14px;
    min-width: 200px;
    min-height: 50px;
  }
}

/* Responsive: Small screens */
@media (max-width: 420px) {
  .splash-content {
    gap: 10px;
    padding: 20px;
  }

  .splash-image {
    width: 100%;
    max-width: 280px;
  }

  .splash-close {
    top: 20px;
    right: 20px;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {

  .header,
  .hero-ticker,
  .banner-callout-1,
  .get-quote-section,
  .footer,
  .scroll-to-top {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}