/* ============================================
   SIMPLE OFFICE TECHNOLOGIES - MAIN STYLESHEET
   ============================================ */

/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  --bg: #0b0b12;
  --panel: #121224;
  --panel-2: #0f1020;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --gold: #D4AF37;
  --gold-2: #f0c040;
  --shadow: 0 14px 40px rgba(0, 0, 0, .35);
  --radius: 18px;
  --pad: clamp(16px, 2vw, 28px);
  --container: 1400px;
}

/* ========== BASE TYPOGRAPHY & BODY ========== */
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

/* ========== GLOBAL LAYOUT ========== */
.container {
  width: min(var(--container), calc(100% - 10%));
  margin: 0 auto;
}

.section-title {
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: .5px;
  margin-bottom: 18px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 70ch;
  margin: 0 auto 34px;
}

/* ========== HEADER / NAVIGATION ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 18, .75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header.scrolled {
  background: rgba(11, 11, 18, .92);
}

.header-container {
  width: min(var(--container), calc(100% - 10%));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.logo-image {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  transition: color .2s ease, opacity .2s ease;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #0b0b12;
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 12px;
  transition: transform .2s ease, filter .2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 5px auto;
  background: rgba(255, 255, 255, .85);
}

/* ========== HERO SECTION ========== */
:root {
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .55);
  --gold: var(--color-yellow, #FFD700);
  --muted: rgba(255, 255, 255, .72);
}

/* Full page hero area (outside container) */
.hero {
  position: relative;
  height: 90vh;
  max-height: 900px;
  min-height: 600px;
  max-width: 1900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* room for fixed header */
  background: #00000000;
  /* black canvas like the reference */
  overflow: hidden;
}



/* Keep wrapper simple */
.hero-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}


/* This is the "big rounded container" */
.carousel-container {
  width: min(1800px, calc(100% - 5%));
  flex: 1;
  max-height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* The actual hero card */
.carousel-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 4vw, 77px);
  align-items: center;

  height: 90%;
  padding: 60px;
  border-radius: 0 0 var(--radius) var(--radius);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  overflow: hidden;

  /* Animated yellow gradient background */
  background: linear-gradient(to bottom,
      #00000000 0%,
      #00000000 15%,
      #00000000 30%,
      #ffd90064 45%,
      #FFC000 60%,
      #ffb700 75%,
      #FFD700 90%,
      #FFC000 100%);
  background-size: 200% 200%;
  animation: yellowGradientShift 8s ease infinite;

  /* yellow glow border effect */
  box-shadow:
    0 0 20px rgba(255, 217, 0, 0.453),
    0 0 40px rgba(255, 200, 0, 0.519),
    0 14px 40px rgba(120, 95, 3, 0);
}

/* Yellow gradient animation keyframes */
@keyframes yellowGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* active slide shows */
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

/* ===================================
   CAROUSEL NAVIGATION ARROWS
   =================================== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 11, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(212, 175, 55, 0.95);
  border-color: rgba(212, 175, 55, 0.5);
  color: #0b0b12;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

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

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

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

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

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

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* inner vignette to keep top area deep/black with yellow gradient glow */
.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 215, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 200, 0, 0.08) 0%, transparent 60%),
    radial-gradient(1200px 600px at 30% 35%, rgba(255, 255, 255, .08), transparent 55%),
    linear-gradient(to right, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .20) 55%, rgba(0, 0, 0, .00) 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* yellow glow accent at bottom */
.carousel-slide::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255, 215, 0, 0.35), rgba(255, 200, 0, 0.15) 50%, transparent 70%);
  filter: blur(8px);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

/* Make text sit above overlays */
.carousel-slide>* {
  position: relative;
  z-index: 1;
}

/* Typography closer to reference */
.hero-title {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, .55);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 52ch;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .55);
  text-align: left;
}

/* Text content wrapper with flex centering */
.hero-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  text-align: left;
}

/* Inner text wrapper to center content */
.hero-text-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

/* Buttons match reference: black primary, outlined secondary */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  /* squared-ish, not pill */
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 12px;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}

.cta-button-large.primary {
  background: #0b0b0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.cta-button-large.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .30);
  color: rgba(255, 255, 255, .92);
}

.cta-button-large:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* Right-side graphic area: remove the “card inside a card” look */
.hero-graphic__stage {
  width: 100%;
  height: 504px;
  border-radius: 22px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  overflow: visible;
}

/* Make the mark glow like the screenshot with yellow glow */
.hero-mark {
  width: auto;
  max-width: min(520px, 100%);
  max-height: 504px;
  height: auto;
  object-fit: contain;
  opacity: .98;

  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, .22)) drop-shadow(0 0 30px rgba(255, 215, 0, .35)) drop-shadow(0 0 60px rgba(255, 200, 0, 0.2));
}

/* Yellow glow behind hero graphic stage */
.hero-graphic__stage::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* States ticker stays outside the hero card (like your screenshot) */
.hero-states-ticker {
  margin-top: 18px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}

.hero-states-ticker__content {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  will-change: transform;
}

.state-item {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .80);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
}

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

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


/* Responsive: stack like a clean mobile hero */
@media (max-width: 900px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .carousel-container {
    width: calc(100% - 6%);
    flex: 1;
    max-height: calc(100% - 50px);
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 40px 28px;
  }

  .hero-graphic__stage {
    height: 336px;
  }

  .hero-subtitle {
    max-width: 60ch;
  }

  .hero-title {
    font-size: 36px;
  }
}

/* ========== PITCH SECTION ========== */
.pitch-section {
  position: relative;
  padding: 5vh 0 10vh;
  overflow: visible;
}

.pitch-gradient {
  position: absolute;
  top: 5vh;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 123, 255) 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: 24px;
  box-shadow:
    0 0 20px rgba(0, 123, 255, 0.4),
    0 0 40px rgba(0, 123, 255, 0.25),
    0 0 60px rgba(0, 123, 255, 0.15);
  opacity: 0;
  transition: opacity 0.1s ease-out;
}

/* Make child sections sit above gradient */
.pitch-section .problem-section,
.pitch-section .solutions-section {
  position: relative;
  z-index: 1;
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  padding: 2vh 0;
}

.problem-container {
  width: min(calc(100vw - 80px), 1400px);
  margin: 0 auto;
  padding: 0;
}

.problem-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 24px;
  background: transparent;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(255, 27, 27, 0.15),
    0 0 40px rgba(255, 27, 27, 0.1),
    0 0 60px rgba(255, 27, 27, 0.05),
    var(--shadow);
}

.problem-gradient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.problem-content {
  position: relative;
  z-index: 1;
}

.problem-graphic {
  position: relative;
  z-index: 1;
}

.problem-graphic__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(0, 0, 0, 0.239);
}

.problem-graphic__img--b {
  position: absolute;
  top: 0;
  left: 0;
  animation: problem-graphic-swap 12s infinite;
}

.problem-graphic__img--a {
  animation: problem-graphic-swap-alt 12s infinite;
}

@keyframes problem-graphic-swap {
  0%, 42%  { opacity: 0; }
  50%, 92% { opacity: 1; }
  100%     { opacity: 0; }
}

@keyframes problem-graphic-swap-alt {
  0%, 42%  { opacity: 1; }
  50%, 92% { opacity: 0; }
  100%     { opacity: 1; }
}


.problem-content h2 {
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.problem-content ul {
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.problem-content li {
  color: rgba(255, 255, 255, .86);
  padding-left: 14px;
  position: relative;
}

.problem-content li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 2;
  color: #ff6b6b;
  font-weight: 900;
}


/* ========== SOLUTIONS SECTION CONTAINER ========== */
.solutions-container {
  width: min(calc(100vw - 80px), 1100px);
  margin: 0 auto;
  padding: 0;
}

/* ========== SOLUTIONS SECTION ========== */
.solutions-section {
  padding: clamp(40px, 5vw, 80px) 0;
}

.solutions-section h2 {
  text-align: center;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: 1px;
  font-weight: 900;
  margin-bottom: clamp(20px, 3vw, 35px);
}

.solutions-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(16px, 2.5vw, 36px);
  align-items: stretch;
}

.solutions-graphic {
  padding: clamp(10px, 2vw, 24px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}

.solution-graphic-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: clamp(10px, 1.5vw, 18px);
  outline: 2px solid transparent;
  transition: outline-color .2s ease, box-shadow .2s ease;
}

.solution-graphic-image.highlighted {
  outline-color: rgba(212, 175, 55, .85);
  box-shadow: 0 0 18px rgba(212, 175, 55, .45), 0 0 48px rgba(212, 175, 55, .2);
}

.solutions-list {
  display: grid;
  gap: clamp(10px, 1.5vw, 16px);
}

.solutions-section .solution-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.5vw, 18px);
  padding: clamp(12px, 1.8vw, 20px) clamp(14px, 2vw, 22px);
  border-radius: clamp(10px, 1.5vw, 18px);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.solutions-section .solution-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, .35);
  background: rgba(212, 175, 55, .06);
}

.solutions-section .solution-item.is-active {
  border-color: rgba(212, 175, 55, .70);
  background: rgba(212, 175, 55, .11);
  box-shadow: inset 3px 0 0 rgba(212, 175, 55, .85);
  transform: translateX(3px);
}

.solution-text h3 {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 900;
  margin-bottom: 4px;
}

.solution-text p {
  color: var(--muted);
  font-size: clamp(12px, 1.3vw, 16px);
}

.check-mark {
  width: clamp(32px, 3.5vw, 44px);
  height: clamp(32px, 3.5vw, 44px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .22);
  color: var(--gold);
  flex-shrink: 0;
}

.check-mark svg {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
}

#solution-image.fading {
  opacity: .15;
  transform: scale(.98);
  transition: opacity .15s ease, transform .15s ease;
}

/* ========== RECEIPTS SECTION ========== */
.receipts-section {
  padding: 20px 0 10px;
}

/* ========== RECEIPTS SECTION ========== */
.receipts-section {
  padding: 80px 0;
}

.receipts-container {
  position: relative;
  width: min(1100px, calc(100% - 8%));
  margin: 0 auto;
  padding: 70px 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.25),
    0 0 60px rgba(255, 215, 0, 0.15),
    0 0 50px rgba(255, 215, 0, 0.08),
    0 0 150px rgba(255, 215, 0, 0.04);
  animation: receipt-glow 3s ease-in-out infinite;
}

.receipts-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.receipts-content {
  position: relative;
  z-index: 1;
}

.receipts-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

/* Receipts Title - Bold, two-line */
.receipts-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 30px;
  text-align: center;
}

/* Receipts List - Vertical list */
.receipts-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
}

/* Receipt Item - Icon top, text below */
.receipt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background .2s ease, border-color .2s ease;
  flex: 1;
  text-align: center;
}

.receipt-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Receipt Icon */
.receipt-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Receipt Text */
.receipt-text {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

/* Pulsing glow animation */
@keyframes receipt-glow {

  0%,
  100% {
    box-shadow:
      0 0 30px rgba(255, 215, 0, 0.25),
      0 0 60px rgba(255, 215, 0, 0.15),
      0 0 100px rgba(255, 215, 0, 0.08);
  }

  50% {
    box-shadow:
      0 0 40px rgba(255, 215, 0, 0.35),
      0 0 80px rgba(255, 215, 0, 0.2),
      0 0 120px rgba(255, 215, 0, 0.12);
  }
}

@keyframes receipt-cycle {
  0%         { opacity: 0; transform: translateY(10px);  }
  4%         { opacity: 1; transform: translateY(0);     }
  21%        { opacity: 1; transform: translateY(0);     }
  25%, 100%  { opacity: 0; transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .receipts-section {
    padding: 50px 0;
  }

  .receipts-container {
    width: calc(100% - 6%);
    padding: 20px;
  }

  .receipts-content {
    position: relative;
    z-index: 1;
  }

  .receipts-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .receipts-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .receipts-list {
    position: relative;
    display: block;
    min-height: 220px;
    margin-top: 16px;
  }

  .receipt-item {
    position: absolute;
    inset: 0;
    padding: 20px 16px;
    gap: 12px;
    justify-content: center;
    opacity: 0;
    animation: receipt-cycle 12s ease-in-out infinite;
  }

  .receipt-item:nth-child(1) { animation-delay: 0s;  }
  .receipt-item:nth-child(2) { animation-delay: 3s;  }
  .receipt-item:nth-child(3) { animation-delay: 6s;  }
  .receipt-item:nth-child(4) { animation-delay: 9s;  }

  .receipt-icon {
    width: 100px;
    height: 100px;
  }

  .receipt-text {
    font-size: 14px;
  }
}

/* ========== SELLING POINTS (CARDS) ========== */
.selling-points {
  padding: 70px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.card-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-text-overlay {
  position: absolute;
  inset: 0;
  padding: 50px;
  padding-bottom: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .70) 250%);
}

.card-title {
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 6px;
}

.card-description {
  color: rgba(255, 255, 255, .80);
  font-size: 13px;
}

.products-cta {
  text-align: center;
  margin-top: 64px;
  padding: 56px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
}

.products-cta .cta-text {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .4px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.products-cta .cta-subtext {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--muted);
  margin-bottom: 32px;
}

.products-cta .cta-button-large {
  background: var(--gold);
  color: #0b0b12;
  display: inline-flex;
  padding: 18px 40px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(212, 175, 55, .35), 0 0 60px rgba(212, 175, 55, .15);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.products-cta .cta-button-large:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 0 40px rgba(212, 175, 55, .55), 0 0 80px rgba(212, 175, 55, .25);
}

/* ========== HERO STATES SECTION ========== */
.hero-states-section {
  padding: 10px 0 70px;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 50vw;
  margin: 0 auto 10px;
}

.state {
  padding: 5px 10px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  letter-spacing: .6px;
  font-size: 20px;
}

.hero-states-section .h1 {
  text-align: center;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 1px;
  font-weight: 900;
  padding: 2%;
}

/* ========== BANNER CALLOUTS ========== */
.banner-callout {
  padding: 26px 0;
}

/* Banner Callout 1 - Yellow accent style */
.banner-callout-1 {
  background: rgba(212, 175, 55, 0);
}

/* Banner Callout 2 - Standard style */
.banner-callout-2 {
  background: rgba(255, 255, 255, 0.02);
}

/* Banner Callout 3 - Dark accent style */
.banner-callout-3 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

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

.banner-image {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  border-radius: 12px;
}

/* ========== TAILORED SOLUTIONS ========== */
.tailored-solutions {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.tailored-header {
  text-align: center;
  margin-bottom: 50px;
}

.tailored-header .section-title {
  margin-bottom: 12px;
}

.tailored-header .section-subtitle {
  max-width: 60ch;
  margin: 0 auto;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
  opacity: 0;
  transform: translateX(-30px);
  transition: none;
}

.solution-card.reverse {
  transform: translateX(30px);
}

.solution-card.animate-in {
  animation: slideIn 0.6s ease forwards;
}

.solution-card.reverse.animate-in {
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solution-visual {
  position: relative;
  z-index: 1;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: saturate(1.05) brightness(0.95);
}

.solution-card:hover .image-frame img {
  transform: scale(1.03);
  filter: saturate(1.1) brightness(1.05);
}

.solution-info {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.solution-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.05);
}

.solution-info h3 {
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 14px;
  line-height: 1.2;
  color: #fff;
}

.solution-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.solution-card:hover .feature-tag {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--gold);
}

/* Hover glow effect */
.solution-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.solution-card:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .tailored-solutions {
    padding: 60px 0 30px;
  }

  .solution-card,
  .solution-card.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    transform: translateY(20px);
  }

  .solution-card.animate-in,
  .solution-card.reverse.animate-in {
    animation: slideUp 0.5s ease forwards;
  }

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

  .solution-card.reverse {
    direction: ltr;
  }

  .solution-info {
    padding: 0 10px;
  }

  .solution-features {
    justify-content: flex-start;
  }
}

/* ========== VIDEO SECTION ========== */
.video-section {
  padding: 70px 0;
}

.video-container {
  position: relative;
  width: min(calc(100% - 10%), 900px);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .25);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(212, 175, 55, 0.9);
  transform: translate(-50%, -50%) scale(1.05);
}

.play-button:hover .play-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.play-icon {
  width: 50px;
  height: auto;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-iframe:not([src=""]) {
  z-index: 1;
}

.video-iframe[src=""] {
  z-index: -1;
}

/* ========== FAQ CONTENT SECTION ========== */
.faq-content-section {
  padding: 70px 0;
}

.faq-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: min(calc(100% - 5%), 1400px);
  margin: 0 auto;
}

.faq-column {
  /* FAQ content styling */
}

.faq-column .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-list-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, .06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .03);
}

.faq-question-text {
  font-weight: 900;
  font-size: 16px;
  color: rgba(255, 255, 255, .92);
  flex: 1;
  padding-right: 12px;
}

.faq-arrow {
  flex-shrink: 0;
  color: rgba(212, 175, 55, 0.8);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 20px 18px 20px;
}

/* Expanded state */
.faq-list-item.expanded {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, .06);
}

.faq-list-item.expanded .faq-arrow {
  transform: rotate(180deg);
}

.faq-list-item.expanded .faq-answer {
  max-height: 300px;
}

.banner-column {
  /* Banner column styling */
}

.banner-column .banner-container {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-column .banner-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

/* Responsive for FAQ Content Section */
@media (max-width: 900px) {
  .faq-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-column .section-title {
    text-align: center;
  }

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

/* ========== QUOTE FORM ========== */
.quote-section {
  padding: 70px 0;
}

.quote-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: min(calc(100% - 5%), 1400px);
  margin: 0 auto;
}

.quote-content {
  order: 2;
  /* Content on the right */
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 40px);
}

.quote-content h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.quote-content>p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.quote-accent {
  order: 1;
  /* Accents on the left */
  display: grid;
  place-items: center;
}

.quote-accent img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.quote-accent-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .92);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .10);
}

.required {
  color: var(--gold);
}

.error-message {
  display: block;
  min-height: 16px;
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 6px;
  opacity: 0;
  transition: opacity .2s ease;
}

.error-message.visible {
  opacity: 1;
}

.error {
  border-color: #ff6b6b !important;
}

.quote-form .cta-button-large {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* ========== FOOTER ========== */
.footer {
  padding: 60px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-content {
  width: min(var(--container), calc(100% - 10%));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer h3,
.footer h4 {
  color: rgba(255, 255, 255, .92);
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

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

.footer-logo {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}

.footer-links ul,
.footer-compliance ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 8px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

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

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, .5);
  background: rgba(212, 175, 55, .12);
  color: #ffffff;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 10%));
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  color: rgba(255, 255, 255, .40);
  font-size: 13px;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 980px) {
  .carousel-slide {
    grid-template-columns: 1fr;
  }

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

  .solutions-container {
    width: min(calc(100vw - 40px), 1400px);
  }

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

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

  .states-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    margin: 0 auto 10px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    right: 5%;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(11, 11, 18, .96);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .tailored-solutions .solution-item {
    grid-template-columns: 1fr;
  }

  .pitch-gradient {
    width: 90vw;
    height: calc(100% - 8%);
    margin-bottom: 8%;
  }

  /* Quote section - stack on mobile */
  .quote-section .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-accent {
    order: -1;
    margin-bottom: 10px;
  }

  .quote-accent img {
    max-width: 200px;
  }

  /* Solutions section - mobile optimization */
  .solutions-container {
    width: calc(100% - 6%);
    margin: 0 auto;
  }

  .solutions-graphic {
    padding: clamp(8px, 1.5vw, 16px);
  }

  .solutions-section .solution-item {
    flex-direction: row;
    gap: clamp(8px, 1.2vw, 14px);
    padding: clamp(10px, 1.5vw, 16px);
  }

  .solution-text h3 {
    font-size: clamp(13px, 1.5vw, 18px);
  }

  .solution-text p {
    font-size: clamp(11px, 1.2vw, 14px);
  }

  .check-mark {
    width: clamp(28px, 3vw, 38px);
    height: clamp(28px, 3vw, 38px);
  }

  .check-mark svg {
    width: clamp(16px, 1.8vw, 20px);
    height: clamp(16px, 1.8vw, 20px);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .4);
  background: rgba(11, 11, 18, .85);
  backdrop-filter: blur(12px);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, border-color .2s ease, box-shadow .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(212, 175, 55, .85);
  box-shadow: 0 0 16px rgba(212, 175, 55, .35);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}