/* ==========================================================================
   BEACON SECURITY & INNOVATIONS LIMITED (BSIL) - OFFICIAL STYLESHEET
   100% Faithful Recreation Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=Jost:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&display=swap');

:root {
  /* Brand Palettes */
  --primary-green: #77b629;
  --primary-green-hover: #639a20;
  --deep-forest-green: #054a05;
  --deep-forest-hover: #033603;
  --dark-navy: #101828;
  --dark-gray: #393841;
  --body-text: #4a5568;
  --muted-text: #718096;
  --light-bg: #ffffff;
  --section-tint: rgba(219, 227, 150, 0.28);
  --section-tint-alt: #f6faee;
  --footer-bg: #060e08;
  --footer-bottom: #030804;
  --border-light: rgba(74, 85, 104, 0.15);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-hover-shadow: 0 20px 40px rgba(5, 74, 5, 0.14);
  --modal-backdrop: rgba(10, 20, 12, 0.75);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-btn: 'Jost', sans-serif;
  --font-kpi: 'DM Sans', sans-serif;

  /* Layout */
  --max-content-width: 1290px;
  --header-height: 80px;
  --ticker-height: 48px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background-color: var(--light-bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Highlights */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-forest-green);
  line-height: 1.3;
}

mark.highlight, span.highlight {
  color: var(--primary-green);
  background: transparent;
}

.sub-tag {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--dark-gray);
  margin-bottom: 8px;
  display: inline-block;
}

/* ==========================================================================
   1. TOP NOTIFICATION NEWS TICKER
   ========================================================================== */
.ticker-bar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--ticker-height);
  background: #f8f9fa;
  border-bottom: 1px solid #e2e8f0;
  z-index: 10001;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

body.scrolled .ticker-bar-wrap {
  transform: translateY(-100%);
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
  height: 100%;
}

.ticker-badge {
  background-color: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-btn);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  margin-right: 18px;
  box-shadow: 0 2px 6px rgba(119, 182, 41, 0.3);
}

.ticker-track-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  cursor: default;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  padding: 0 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.ticker-item:hover {
  color: var(--primary-green);
}

.ticker-item span.divider {
  margin: 0 16px;
  color: #cbd5e1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   2. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--ticker-height);
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

body.scrolled .site-header {
  top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Top Contact Bar */
.header-top-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(47, 79, 79, 0.1);
  padding: 8px 0;
  font-size: 0.85rem;
  color: #555555;
  transition: all 0.3s ease;
}

body.scrolled .header-top-bar {
  display: none;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  font-size: 0.85rem;
}

.contact-link:hover {
  color: var(--primary-green);
}

.contact-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.header-social-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  border: 1px solid rgba(74, 85, 104, 0.25);
  transition: all 0.2s ease;
}

.social-icon-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-icon-btn:hover {
  color: #ffffff;
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* Main Navigation Bar */
.main-nav-bar {
  background: #ffffff;
  padding: 12px 0;
  transition: padding 0.3s ease;
}

body.scrolled .main-nav-bar {
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

body.scrolled .brand-logo-img {
  height: 44px;
}

/* Nav Menu List */
.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-forest-green);
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.nav-link svg.dropdown-arrow {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary-green);
}

.nav-item:hover > .nav-link svg.dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--deep-forest-green);
  transition: all 0.2s;
}

.dropdown-link:hover {
  background-color: var(--primary-green);
  color: #ffffff;
  padding-left: 24px;
}

.dropdown-link svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* Nested Dropdown (Flyout) */
.nested-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 270px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-item:hover > .nested-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Header Login Pill Button */
.btn-header-login {
  background-color: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(119, 182, 41, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-header-login:hover {
  background-color: var(--deep-forest-green);
  box-shadow: 0 6px 18px rgba(5, 74, 5, 0.35);
  transform: translateY(-2px);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(5, 74, 5, 0.2);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--deep-forest-green);
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  margin-top: calc(var(--ticker-height) + 80px);
  background-image: url('https://beaconsecurityintel.com/wp-content/uploads/2026/08/Desktop-Hero-Image-2-1.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 90px 0 110px 0;
  overflow: hidden;
}

/* Overlay gradient: matches live green radiance */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    95deg,
    rgba(141, 194, 60, 0.88) 0%,
    rgba(119, 182, 41, 0.82) 42%,
    rgba(92, 150, 30, 0.65) 75%,
    rgba(40, 75, 12, 0.35) 100%
  );
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Hero Text Entrance Animations (Smooth, Cinematic Pacing) */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: heroFadeInUp 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  will-change: transform, opacity;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 38px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 640px;
  opacity: 0;
  animation: heroFadeInUp 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  will-change: transform, opacity;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeInUp 3.2s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
  will-change: transform, opacity;
}

.btn-pill {
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-pill-primary {
  background-color: var(--primary-green);
  color: #ffffff;
  border: 2px solid var(--primary-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-pill-primary:hover {
  background-color: var(--deep-forest-green);
  border-color: var(--deep-forest-green);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn-pill-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

.btn-pill-outline:hover {
  background-color: #ffffff;
  color: var(--deep-forest-green);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Metric Counter Badges */
.hero-counters {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  animation: heroFadeInUp 3.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
  will-change: transform, opacity;
}

.counter-badge-card {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.counter-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.counter-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.counter-info .counter-num {
  font-family: var(--font-kpi);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.counter-info .counter-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

/* ==========================================================================
   4. OUR FOCUS AREAS (CIRCULAR WHEEL DIAGRAM)
   ========================================================================== */
.focus-areas-section {
  padding: 95px 0;
  background-color: #ffffff;
}

.focus-areas-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

/* ==========================================================================
   Interactive Rotating Focus Areas Wheel
   ========================================================================== */
.wheel-diagram-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wheel-svg-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 14px 32px rgba(5, 74, 5, 0.12));
}

.wheel-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  user-select: none;
}

/* Continuously rotating segmented outer ring */
.rotating-wheel-ring {
  transform-origin: 300px 300px;
  animation: rotateFocusWheel 50s linear infinite;
  will-change: transform;
}

/* Pause rotation immediately when hovering over the wheel */
.wheel-svg-wrapper:hover .rotating-wheel-ring,
.wheel-svg-wrapper.is-paused .rotating-wheel-ring {
  animation-play-state: paused;
}

@keyframes rotateFocusWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Individual sector styling */
.wheel-sector {
  cursor: pointer;
  transform-origin: 300px 300px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease, opacity 0.3s ease;
  outline: none;
}

.wheel-sector path {
  transition: filter 0.3s ease;
}

.wheel-sector:hover path {
  filter: brightness(1.18) drop-shadow(0 0 16px rgba(119, 182, 41, 0.75));
}

.wheel-sector:hover {
  transform: scale(1.035);
}

.wheel-sector text {
  pointer-events: none;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

/* Softly dim other sectors when one is focused/hovered */
.wheel-svg-wrapper:hover .wheel-sector:not(:hover) {
  opacity: 0.82;
}

/* Stationary Center Lighthouse Beacon */
.stationary-beacon-center {
  pointer-events: auto;
}

.center-beacon-circle {
  fill: #ffffff;
  stroke: #edf2e4;
  stroke-width: 3.5;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.10));
}

.center-beacon-logo {
  pointer-events: none;
}

/* Dynamic Hover Info Card */
.wheel-hover-card {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--primary-green, #77B629);
  border-radius: 12px;
  padding: 12px 18px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wheel-hover-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: #054a05;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wheel-hover-desc {
  font-size: 0.84rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.45;
}

.focus-text-wrap {
  padding-left: 10px;
}

.focus-sub-tag {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: #393841;
  margin-bottom: 14px;
  display: block;
  letter-spacing: -0.01em;
}

.focus-heading {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--deep-forest-green);
  margin-bottom: 22px;
  line-height: 1.2;
}

.focus-heading mark {
  color: var(--primary-green);
  background: transparent;
}

.focus-desc {
  font-size: 1.08rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 0;
}

/* ==========================================================================
   5. NIGERIA SECURITY INCIDENTS TRACKER SECTION (TABLEAU DASHBOARD)
   ========================================================================== */
.tracker-section {
  padding: 90px 0 110px 0;
  background-color: var(--section-tint);
  position: relative;
}

.tracker-header-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px auto;
}

.tracker-heading {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 10px 0 20px 0;
}

.tracker-feature-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.feature-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--deep-forest-green);
}

.feature-tag-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
}

/* Tableau Dashboard Wrapper */
.tableau-embed-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin: 36px 0;
  position: relative;
}

.tracker-tableau-viewport {
  position: relative;
  width: 100%;
  min-height: 720px;
  background-color: #fafbfc;
}

.tracker-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ==========================================================================
   6. EXPERT SECURITY SOLUTIONS IN NIGERIA (SLANTED GREEN CARDS)
   ========================================================================== */
.solutions-section-slant {
  position: relative;
  background-color: var(--primary-green);
  padding: 130px 0 140px 0;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin: 40px 0;
}

.solutions-header-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.solutions-heading {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
}

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

.solution-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.card-icon-bubble {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.card-icon-bubble svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.solution-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--deep-forest-green);
  margin-bottom: 14px;
}

.solution-card-desc {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
}

.card-learn-more {
  font-family: var(--font-btn);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.card-learn-more:hover {
  color: var(--primary-green);
  gap: 10px;
}

/* ==========================================================================
   7. TOP ORGANISATIONS TRUST US (LOGO SLIDER)
   ========================================================================== */
.partners-section {
  padding: 90px 0 80px 0;
  background: #ffffff;
  text-align: center;
}

.partners-heading {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 45px;
}

.partners-slider-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo-item {
  flex-shrink: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.partner-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.partner-logo-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #718096;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-dot.active {
  background: #2d3748;
  border-color: #2d3748;
}

@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   8. WHO WE ARE & WHY BEACON
   ========================================================================== */
.about-section-slant {
  position: relative;
  background-color: var(--section-tint);
  padding: 120px 0 130px 0;
  clip-path: polygon(0 3.5vw, 100% 0, 100% calc(100% - 3.5vw), 0 100%);
  margin: 30px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-heading {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 10px 0 24px 0;
  line-height: 1.25;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-stadium-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
}

.about-stadium-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-stadium-img-wrap:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   9. SECURE WHAT MATTERS MOST! (VIDEO SHOWCASE)
   ========================================================================== */
.secure-matters-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.secure-matters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-player-preview-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, #a8c9a3 0%, #b8d4b3 100%);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(119, 182, 41, 0.2);
}

.btn-play-trigger {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-play-trigger svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: currentColor;
}

.video-player-preview-card:hover .btn-play-trigger {
  transform: scale(1.15);
  background-color: var(--primary-green);
  color: #ffffff;
}

.secure-heading {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.secure-desc {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-check-list {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark-gray);
}

.check-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* ==========================================================================
   10. IRS SOFTWARE SECTION
   ========================================================================== */
.irs-software-section {
  padding: 100px 0;
  background-color: #f9fbf6;
  border-top: 1px solid #edf2e4;
  border-bottom: 1px solid #edf2e4;
}

.irs-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.irs-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 8px 0 30px 0;
  line-height: 1.25;
}

.irs-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.irs-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--deep-forest-green);
}

.irs-feature-box svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.irs-subscribe-link {
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.irs-subscribe-link:hover {
  color: var(--primary-green);
}

.irs-mockup-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.irs-mockup-wrap:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   11. CONTACT US SECTION
   ========================================================================== */
.contact-section-wrap {
  padding: 90px 0;
  background-color: var(--deep-forest-green);
  color: #ffffff;
}

.contact-card-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-main-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.contact-form-styled {
  text-align: left;
}

.form-field-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-label span.req {
  color: #ff6b6b;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.96rem;
  transition: all 0.2s;
  outline: none;
}

.form-control-input::placeholder,
.form-control-textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.form-control-select option {
  background-color: #ffffff;
  color: var(--dark-gray);
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border-color: var(--primary-green);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(119, 182, 41, 0.3);
}

.textarea-counter-wrap {
  display: flex;
  justify-content: flex-end;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.form-submit-row {
  text-align: center;
  margin-top: 30px;
}

.btn-form-submit {
  background-color: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-form-submit:hover {
  background-color: #619a1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg);
  color: #ffffff;
  padding-top: 80px;
  font-size: 0.92rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #cbd5e1;
}

.footer-contact-item strong {
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #cbd5e1;
  transition: all 0.2s;
}

.footer-links-list a:hover {
  color: var(--primary-green);
  padding-left: 6px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s;
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-btn:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

.newsletter-form {
  margin-top: 16px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  margin-bottom: 10px;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--primary-green);
}

.btn-newsletter-sub {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-btn);
  font-weight: 600;
  padding: 12px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-newsletter-sub:hover {
  background-color: #639a20;
}

.tweets-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 180px;
}

.site-bottom-bar {
  background-color: var(--footer-bottom);
  padding: 24px 0;
  font-size: 0.86rem;
  color: #94a3b8;
  text-align: center;
}

.site-bottom-bar a {
  color: #cbd5e1;
}

.site-bottom-bar a:hover {
  color: var(--primary-green);
}

/* ==========================================================================
   13. LOGIN MODAL (SPLIT DESIGN)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--modal-backdrop);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-split-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 840px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-split-card {
  transform: scale(1) translateY(0);
}

.modal-left-brand {
  background: linear-gradient(135deg, var(--deep-forest-green) 0%, #032b03 100%);
  color: #ffffff;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.modal-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-brand-header img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.modal-brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-welcome-block {
  margin: 40px 0;
}

.welcome-sub {
  font-size: 0.9rem;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 6px;
}

.welcome-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.welcome-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.modal-right-form {
  padding: 48px 40px;
  position: relative;
  background: #ffffff;
}

.btn-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}

.btn-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--deep-forest-green);
  margin-bottom: 4px;
}

.modal-form-sub {
  font-size: 0.88rem;
  color: var(--muted-text);
  margin-bottom: 28px;
}

.modal-field {
  margin-bottom: 18px;
}

.modal-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.modal-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.modal-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(119, 182, 41, 0.15);
}

.modal-options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.modal-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.modal-forgot-link {
  color: var(--primary-green);
  font-weight: 600;
}

.btn-modal-submit {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(119, 182, 41, 0.35);
}

.btn-modal-submit:hover {
  background-color: var(--deep-forest-green);
}

.modal-register-prompt {
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
  margin-top: 24px;
}

.modal-register-prompt a {
  color: var(--primary-green);
  font-weight: 700;
}

/* ==========================================================================
   14. MOBILE DRAWER & NAVIGATION
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 12, 0.6);
  backdrop-filter: blur(3px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.open,
.mobile-drawer-overlay.open,
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mobile-nav-drawer,
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 100000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.open,
.mobile-drawer.open,
.mobile-drawer.active {
  right: 0;
}

@media (min-width: 992px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-nav-drawer,
  .mobile-nav-backdrop,
  .drawer-menu-list {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.rotating-wheel-ring.is-paused,
.wheel-svg-wrapper.is-paused .rotating-wheel-ring {
  animation-play-state: paused !important;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #334155;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}

.drawer-close-btn:hover {
  background: #f1f5f9;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-item {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-weight: 600;
  color: var(--deep-forest-green);
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  display: none;
  background: #f8fafc;
  border-radius: 6px;
  margin-bottom: 10px;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--body-text);
}

/* Scroll To Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  z-index: 9999;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  background: var(--deep-forest-green);
  transform: translateY(-3px);
}

/* ==========================================================================
   15. SCROLL REVEAL ANIMATION SYSTEM (FADE-IN-UP AS YOU SCROLL)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              transform 3.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Lateral Scroll Reveals */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              transform 3.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-left.is-revealed {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              transform 3.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-right.is-revealed {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Subtle Zoom Reveal */
.scroll-reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              transform 3.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-zoom.is-revealed {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Universal Page Hero Text Entrance for Inner Pages */
.page-hero h1,
.about-hero h1,
.service-landing-hero h1 {
  opacity: 0;
  animation: heroFadeInUp 3.0s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  will-change: opacity, transform;
}

.page-hero p,
.about-hero p,
.service-landing-hero p {
  opacity: 0;
  animation: heroFadeInUp 3.0s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  will-change: opacity, transform;
}

/* Accessibility: User Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-counters,
  .page-hero h1,
  .page-hero p,
  .about-hero h1,
  .about-hero p,
  .service-landing-hero h1,
  .service-landing-hero p,
  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   16. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .focus-areas-grid,
  .secure-matters-grid,
  .irs-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .desktop-nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --ticker-height: 42px;
  }
  .header-top-bar {
    display: none;
  }
  .hero-section {
    padding: 70px 0 90px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .irs-features-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .modal-split-card {
    grid-template-columns: 1fr;
  }
  .modal-left-brand {
    display: none;
  }
  .solutions-section-slant,
  .about-section-slant {
    clip-path: none;
    padding: 70px 0;
  }
  .tracker-tableau-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.25rem);
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn-pill {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  .hero-counters {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .counter-badge-card {
    width: 100%;
  }
  .brand-logo-img {
    max-height: 38px;
  }
  .btn-header-login {
    padding: 8px 18px;
    font-size: 0.88rem;
  }
  .container {
    padding: 0 18px;
  }
}
