:root {
  --color-red: #e31e25;
  --color-red-dark: #b81820;
  --color-black: #111111;
  --color-ink: #1a1a1a;
  --color-muted: #6b7280;
  --color-gray-50: #fafafa;
  --color-gray-100: #f4f4f5;
  --color-gray-200: #e4e4e7;
  --color-gray-300: #d4d4d8;
  --color-white: #ffffff;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.18);

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  --container-max: 1400px;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
       RESET & BASE
       ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
}

.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}
.text-red {
  color: var(--color-red);
}

/* ==========================================================================
       LAYOUT HELPERS
       ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ==========================================================================
       SECTION HEADER (shared across widgets)
       ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.9rem;
  background: rgba(227, 30, 37, 0.1);
  color: var(--color-red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-ink);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.section-subtitle,
.section-lead {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ==========================================================================
       BUTTONS
       ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--easing),
    background-color 0.2s var(--easing),
    color 0.2s var(--easing),
    border-color 0.2s var(--easing);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

/* ==========================================================================
       SETUP REQUIREMENTS (shared across widgets)
       ========================================================================== */
.roi-setup {
  margin-top: 1.5rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}
.roi-setup__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(227, 30, 37, 0.07);
  border: 1.5px solid rgba(227, 30, 37, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.roi-setup__icon-wrap svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.roi-setup__heading {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}
.roi-setup__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.roi-setup__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}
.roi-setup__item-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(227, 30, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.roi-setup__item-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--color-red);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.roi-setup__item strong {
  color: var(--color-ink);
  font-weight: 700;
}
@media (max-width: 560px) {
  .roi-setup {
    grid-template-columns: 1fr;
  }
  .roi-setup__icon-wrap {
    display: none;
  }
}

/* ==========================================================================
       EDITOR EMPTY-STATE NOTICE
       Elementor-editor-only placeholder for unfilled widgets/sections.
       Never rendered on the live site (see Renders_Empty_Notice trait).
       ========================================================================== */
.dbsa-empty-notice {
  margin: 1.5rem auto;
  padding: 2rem 1.5rem;
  max-width: 640px;
  border: 2px dashed var(--color-gray-300);
  border-radius: var(--radius-md);
  background: var(--color-gray-50);
  text-align: center;
}
.dbsa-empty-notice__text {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* scroll animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.6s var(--easing),
      transform 0.6s var(--easing);
  }
  .fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up-delay-1 {
    transition-delay: 0.1s;
  }
  .fade-up-delay-2 {
    transition-delay: 0.2s;
  }
  .fade-up-delay-3 {
    transition-delay: 0.3s;
  }
}
