/*
 Theme Name:   Workland Scout Child
 Theme URI:    https://scout.worklandhq.com
 Description:  Child theme for Workland Scout — built on GeneratePress
 Author:       Workland HQ
 Author URI:   https://worklandhq.com
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  workland-scout-child
*/

/* ============================================================
   WORKLAND SCOUT — BRAND TOKENS
   Edit colours, fonts, and spacing here. Changes apply sitewide.
   ============================================================ */
@font-face {
  font-family: 'DM Sans Fallback';
  src: local('Arial');
  size-adjust: 98%;
  ascent-override: 94%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Syne Fallback';
  src: local('Georgia');
  size-adjust: 102%;
  ascent-override: 90%;
  descent-override: 20%;
  line-gap-override: 0%;
}
:root {
  /* Brand colours */
  --scout-navy:        #0A2463;
  --scout-navy-deep:   #071840;
  --scout-navy-mid:    #1a3a7a;
  --scout-gold:        #E8A838;
  --scout-gold-light:  #F5C76A;
  --scout-white:       #FFFFFF;
  --scout-off-white:   #F7F8FC;
  --scout-grey-light:  #EEF0F7;
  --scout-grey-mid:    #C8CCE0;
  --scout-grey-text:   #6B7499;
  --scout-text-body:   #2C3558;
  --scout-green:       #1A9B6C;

  /* Typography */
--scout-font-head: 'Syne', 'Syne Fallback', sans-serif;
--scout-font-body: 'DM Sans', 'DM Sans Fallback', sans-serif;

  /* Spacing scale */
  --scout-space-xs:   8px;
  --scout-space-sm:   16px;
  --scout-space-md:   32px;
  --scout-space-lg:   64px;
  --scout-space-xl:   96px;

  /* Radius */
  --scout-radius-sm:  6px;
  --scout-radius-md:  12px;
  --scout-radius-lg:  16px;
  --scout-radius-xl:  24px;
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--scout-font-body);
  color: var(--scout-text-body);
  background: var(--scout-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
	font-synthesis: none;          /* ADD THIS */
  font-optical-sizing: none;     /* ADD THIS */
}

/* Remove GeneratePress default container constraints on full-width pages */
.page-template-template-scout-landing .site-header,
.page-template-template-scout-landing .site-footer,
.page-template-template-scout-landing .navigation-branding {
  display: none !important;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--scout-font-head);
  color: var(--scout-navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
	font-synthesis: none;          /* ADD THIS */
  font-optical-sizing: none;     /* ADD THIS */
}

h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 700; letter-spacing: -0.8px; }
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }

p {
  font-family: var(--scout-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--scout-grey-text);
}

a {
  color: var(--scout-navy);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--scout-gold); }

/* ============================================================
   SCOUT UTILITY CLASSES
   Use these on any WordPress block or custom HTML
   ============================================================ */

/* Section wrapper */
.scout-section {
  padding: var(--scout-space-xl) 5%;
}

.scout-section--dark {
  background: var(--scout-navy-deep);
}

.scout-section--dark h1,
.scout-section--dark h2,
.scout-section--dark h3,
.scout-section--dark h4 {
  color: var(--scout-white);
}

.scout-section--dark p {
  color: rgba(255, 255, 255, 0.55);
}

.scout-section--light {
  background: var(--scout-off-white);
}

/* Section label (small caps above heading) */
.scout-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--scout-gold);
  margin-bottom: 10px;
}

/* Max-width content container */
.scout-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.scout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--scout-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--scout-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  line-height: 1;
}

/* Primary — gold */
.scout-btn--primary {
  background: var(--scout-gold);
  color: var(--scout-navy-deep);
}

.scout-btn--primary:hover {
  background: var(--scout-gold-light);
  color: var(--scout-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.3);
}

/* Ghost — white outline (for dark backgrounds) */
.scout-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

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

/* Outline — navy border (for light backgrounds) */
.scout-btn--outline {
  background: transparent;
  border: 1px solid var(--scout-grey-mid);
  color: var(--scout-navy);
}

.scout-btn--outline:hover {
  border-color: var(--scout-navy);
  background: var(--scout-off-white);
  color: var(--scout-navy);
}

/* Full width */
.scout-btn--full {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Small */
.scout-btn--sm {
  font-size: 13px;
  padding: 9px 18px;
}

/* ============================================================
   CARDS
   ============================================================ */

/* Generic white card */
.scout-card {
  background: var(--scout-white);
  border: 1px solid var(--scout-grey-light);
  border-radius: var(--scout-radius-lg);
  padding: var(--scout-space-md);
  transition: all 0.2s ease;
}

.scout-card:hover {
  border-color: var(--scout-grey-mid);
  box-shadow: 0 12px 40px rgba(10, 36, 99, 0.07);
  transform: translateY(-3px);
}

/* Dark card (on navy backgrounds) */
.scout-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--scout-radius-lg);
  padding: var(--scout-space-md);
  transition: all 0.2s ease;
}

.scout-card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Featured card */
.scout-card--featured {
  background: var(--scout-navy);
  border-color: var(--scout-navy);
}

.scout-card--featured:hover {
  box-shadow: 0 12px 40px rgba(10, 36, 99, 0.3);
}

/* ============================================================
   PRICING CARD COMPONENTS
   ============================================================ */

.scout-price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.scout-price-badge--neutral {
  background: var(--scout-grey-light);
  color: var(--scout-grey-text);
}

.scout-price-badge--popular {
  background: rgba(232, 168, 56, 0.12);
  color: var(--scout-gold);
  border: 1px solid rgba(232, 168, 56, 0.25);
}

.scout-price-badge--savings {
  background: rgba(26, 155, 108, 0.12);
  border: 1px solid rgba(26, 155, 108, 0.25);
  color: #2bc88a;
}

.scout-price-amount {
  font-family: var(--scout-font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--scout-navy);
  letter-spacing: -1.5px;
  line-height: 1;
}

.scout-card--featured .scout-price-amount {
  color: var(--scout-gold);
}

.scout-price-period {
  font-size: 13px;
  color: var(--scout-grey-text);
  margin-top: 4px;
  margin-bottom: 20px;
}

.scout-card--featured .scout-price-period {
  color: rgba(255, 255, 255, 0.4);
}

.scout-price-divider {
  height: 1px;
  background: var(--scout-grey-light);
  margin: 20px 0;
}

.scout-card--featured .scout-price-divider {
  background: rgba(255, 255, 255, 0.1);
}

.scout-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.scout-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--scout-grey-text);
  padding: 5px 0;
  line-height: 1.55;
}

.scout-card--featured .scout-feature-list li {
  color: rgba(255, 255, 255, 0.6);
}

.scout-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(26, 155, 108, 0.1);
  border: 1px solid rgba(26, 155, 108, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--scout-green);
  font-size: 10px;
}

.scout-card--featured .scout-check {
  background: rgba(232, 168, 56, 0.15);
  border-color: rgba(232, 168, 56, 0.3);
  color: var(--scout-gold);
}

/* ============================================================
   GRIDS
   ============================================================ */

.scout-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.scout-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.scout-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

/* Step grid — joined cards */
.scout-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--scout-grey-light);
  border: 2px solid var(--scout-grey-light);
  border-radius: var(--scout-radius-lg);
  overflow: hidden;
}

.scout-step-card {
  background: var(--scout-white);
  padding: 36px 28px;
}

.scout-step-num {
  font-family: var(--scout-font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--scout-grey-light);
  line-height: 1;
  margin-bottom: 16px;
}

.scout-step-title {
  font-family: var(--scout-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--scout-navy);
  margin-bottom: 8px;
}

.scout-step-desc {
  font-size: 14px;
  color: var(--scout-grey-text);
  line-height: 1.65;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

.scout-input {
  width: 100%;
  background: var(--scout-off-white);
  border: 1px solid var(--scout-grey-light);
  border-radius: var(--scout-radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--scout-font-body);
  color: var(--scout-navy);
  transition: border-color 0.2s;
  outline: none;
}

.scout-input:focus {
  border-color: var(--scout-navy);
  background: var(--scout-white);
}

.scout-input::placeholder {
  color: var(--scout-grey-mid);
}

/* Divider with label */
.scout-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--scout-grey-text);
  margin: 16px 0;
}

.scout-divider::before,
.scout-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--scout-grey-light);
}

/* ============================================================
   NAV — SCOUT HEADER
   Applied to the .site-header on scout subdomain
   ============================================================ */

.scout-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(7, 24, 64, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.scout-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--scout-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--scout-white);
  text-decoration: none;
}

.scout-nav__logo img {
  height: 32px;
  width: auto;
}

.scout-nav__badge {
  background: var(--scout-gold);
  color: var(--scout-navy-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.scout-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scout-nav__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.scout-nav__links a:hover { color: var(--scout-white); }

.scout-nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================================
   FOOTER — SCOUT
   ============================================================ */

.scout-footer {
  background: var(--scout-navy-deep);
  padding: 60px 5% 32px;
}

.scout-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}

.scout-footer__desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  margin-top: 12px;
}

.scout-footer__col h4 {
  font-family: var(--scout-font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.scout-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scout-footer__col ul li {
  margin-bottom: 10px;
}

.scout-footer__col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.scout-footer__col ul li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.scout-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.scout-footer__bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.scout-footer__bottom a:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   ONESIGNAL NOTIFICATION PROMPT STYLING
   ============================================================ */

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher {
  bottom: 20px !important;
  right: 20px !important;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --scout-space-xl: 60px;
    --scout-space-lg: 40px;
  }

  .scout-section { padding: 60px 5%; }
  .scout-nav__links { display: none; }

  .scout-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .scout-steps-grid {
    grid-template-columns: 1fr;
  }

  .scout-footer__top {
    flex-direction: column;
    gap: 32px;
  }

  h1 { letter-spacing: -0.8px; }
}

@media (max-width: 480px) {
  .scout-grid-4 {
    grid-template-columns: 1fr;
  }

  .scout-price-amount { font-size: 34px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.scout-hero {
  min-height: 100vh;
  background: var(--scout-navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.scout-hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.scout-hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,58,122,0.6) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.scout-hero__inner {
  position: relative; z-index: 2;
  max-width: 680px;
}

.scout-hero__h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--scout-white);
  margin: 20px 0 20px;
}

.scout-hero__h1 em {
  font-style: normal;
  color: var(--scout-gold);
}

.scout-hero__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-bottom: 12px;
}

.scout-hero__login-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.scout-hero__login-note strong {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.scout-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.scout-hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scout-hero__avatars {
  display: flex;
}

.scout-hero__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--scout-navy-deep);
  background: var(--scout-navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  color: var(--scout-gold-light);
  margin-left: -12px;
  overflow: hidden;
}

.scout-hero__avatar:first-child { margin-left: 0; }
.scout-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }

.scout-hero__proof-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.scout-hero__proof-text strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* PHONE FRAME */
.scout-hero__phone-wrap {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 1000px) {
  .scout-hero__phone-wrap { display: block; }
}

.scout-phone-frame {
  width: 296px;
  background: #111827;
  border-radius: 42px;
  border: 8px solid #1f2937;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}

.scout-phone__notch {
  width: 100px; height: 24px;
  background: #111827;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.scout-phone__screen {
  background: #0d1117;
  padding-bottom: 16px;
}

.scout-phone__status {
  display: flex; justify-content: space-between;
  padding: 8px 20px;
  font-size: 10px; color: rgba(255,255,255,0.4);
}

.scout-wa__header {
  background: #1a2e1a; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.scout-wa__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}

.scout-wa__name  { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.scout-wa__status { font-size: 10px; color: #25D366; }

.scout-wa__msgs {
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 8px;
}

.scout-msg {
  max-width: 85%;
  padding: 8px 12px;
  font-size: 11px; line-height: 1.5;
}

.scout-msg--recv {
  background: #1e2d1e;
  color: rgba(255,255,255,0.8);
  border-radius: 0 12px 12px 12px;
  align-self: flex-start;
}

.scout-msg--sent {
  background: #005c4b;
  color: rgba(255,255,255,0.9);
  border-radius: 12px 12px 0 12px;
  align-self: flex-end; text-align: right;
}

.scout-score-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(26,155,108,0.2);
  border: 1px solid rgba(26,155,108,0.3);
  color: #4dd6a1;
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 20px; margin-top: 6px;
}

.scout-typing {
  display: flex; gap: 3px; align-items: center; padding: 4px 0;
}

.scout-typing span {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: scout-blink 1.2s infinite;
}

.scout-typing span:nth-child(2) { animation-delay: 0.2s; }
.scout-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scout-blink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%           { opacity: 1;   transform: scale(1);   }
}

/* ============================================================
   FEATURE IMAGE PLACEHOLDER
   ============================================================ */

.scout-feature-img-placeholder {
  width: 100%;
  height: 180px;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.scout-feature-img-placeholder p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center; line-height: 1.6;
  padding: 0 16px;
}

.scout-feature-img-placeholder small {
  font-size: 10px; opacity: 0.7;
}

/* ============================================================
   ENTERPRISE CARDS
   ============================================================ */

.scout-ent-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--scout-radius-lg);
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  transition: all 0.22s ease;
}

.scout-ent-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.scout-ent-card--featured {
  background: rgba(232,168,56,0.06);
  border-color: rgba(232,168,56,0.3);
}

.scout-ent-tier {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.scout-ent-per-seat {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 20px;
}

.scout-ent-per-seat strong { color: rgba(255,255,255,0.7); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.scout-cta-banner {
  background: var(--scout-navy);
  padding: 80px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}

.scout-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.scout-cta-banner__inner {
  position: relative; z-index: 1;
}

.scout-cta-banner h2 {
  color: var(--scout-white);
  margin-bottom: 14px;
}

.scout-cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.scout-cta-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   MOBILE — HERO SPECIFIC
   ============================================================ */

@media (max-width: 768px) {
  .scout-hero {
    padding: 100px 5% 60px;
    min-height: auto;
  }

  .scout-hero__h1 {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -0.8px;
  }

  .scout-hero__sub { font-size: 16px; }

  .scout-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .scout-hero__actions .scout-btn {
    width: 100%;
    justify-content: center;
  }

  .scout-cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   GENERATEPRESS CONFLICT FIXES
   ============================================================ */

body,
body.scout-landing {
  font-family: 'DM Sans', sans-serif !important;
  font-stretch: normal !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

body.scout-landing .site,
body.scout-landing #page,
body.scout-landing .content-area,
body.scout-landing #primary,
body.scout-landing .entry-content,
body.scout-landing .inside-article {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.scout-landing {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.scout-landing h1,
body.scout-landing h2,
body.scout-landing h3,
body.scout-landing h4,
body.scout-landing .scout-hero__h1,
body.scout-landing .scout-nav__logo,
body.scout-landing .scout-step-num,
body.scout-landing .scout-price-amount {
  font-family: 'Syne', sans-serif !important;
  font-stretch: normal !important;
}

body.scout-landing .scout-hero__h1 {
  font-size: clamp(34px, 5vw, 62px);
}

body.scout-landing h2 {
  font-size: clamp(26px, 3.8vw, 44px);
}

@media (max-width: 768px) {
  body.scout-landing .scout-hero__h1 { font-size: 36px !important; }
  body.scout-landing h2 { font-size: 28px !important; }
}

body.scout-landing .site-content,
body.scout-landing .content-area,
body.scout-landing #primary {
  float: none !important;
  width: 100% !important;
}

body.scout-landing .widget-area,
body.scout-landing #secondary {
  display: none !important;
}