/*
Theme Name: Variety Child Theme
Theme URI: https://variety.axiomthemes.com/
Description: Variety is a Premium WordPress theme that has built-in support for popular Page Builders, slider with swipe gestures, and is SEO- and Retina-ready. The unique system of inheritance and override options allows setting up individual parameters for different sections of your site and supported plugins.
Author: AxiomThemes
Author URI: https://axiomthemes.com/
Version: 1.13.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: agency, digital marketing, digital agency, company, consulting, finance, management, it company, accountant, advertising, business, startup, corporate, seo, insurance
Text Domain: variety
Template: variety
*/


/* =Child-Theme customization starts here
------------------------------------------------------------ */

/* ============================================================
   BHS DESIGN SYSTEM - TOKENS
   ============================================================ */

:root {
  --bhs-green:       #1CE766;
  --bhs-green-dark:  #18c558;
  --bhs-dark:        #0C0C0C;
  --bhs-dark-2:      #141414;
  --bhs-dark-3:      #1A1A1A;
  --bhs-dark-4:      #313131;
  --bhs-dark-5:      #3A3A3A;
  --bhs-gray:        #7F7F7F;
  --bhs-gray-light:  #B3B3B3;
  --bhs-white:       #FFFFFF;
  --bhs-off-white:   #F5F5F5;

  --bhs-font-heading: 'Plus Jakarta Sans', sans-serif;
  --bhs-font-body:    'DM Sans', sans-serif;

  --bhs-radius:    8px;
  --bhs-radius-lg: 16px;
  --bhs-radius-xl: 24px;

  --bhs-container: 1240px;
  --bhs-container-pad: 40px;

  --bhs-transition: 0.25s ease;
}

/* ============================================================
   RESET / BASE (front page only)
   ============================================================ */

.bhs-front-page *,
.bhs-front-page *::before,
.bhs-front-page *::after {
  box-sizing: border-box;
}

.bhs-front-page {
  margin: 0;
  padding: 0;
  font-family: var(--bhs-font-body);
  background: var(--bhs-dark) !important;
  color: var(--bhs-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Override Variety body/page_wrap background */
.bhs-front-page .body_wrap,
.bhs-front-page .page_wrap {
  background: var(--bhs-dark) !important;
}

/* Override Variety global link colors on front page */
.bhs-front-page a {
  color: inherit;
}
.bhs-front-page a:hover {
  text-decoration: none;
}

/* Hide default Variety chrome on front page */
.bhs-front-page .top_panel,
.bhs-front-page .page_content_wrap > .content_wrap,
.bhs-front-page .footer_wrap {
  display: none !important;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.bhs-container {
  max-width: var(--bhs-container);
  margin: 0 auto;
  padding: 0 var(--bhs-container-pad);
  width: 100%;
}

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

.bhs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bhs-font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--bhs-transition), color var(--bhs-transition),
              transform var(--bhs-transition), box-shadow var(--bhs-transition);
  white-space: nowrap;
}

.bhs-btn--green {
  background: var(--bhs-green);
  color: #0C0C0C;
  border-radius: 100px;
}
.bhs-btn--green:hover {
  background: var(--bhs-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(28, 231, 102, 0.3);
  color: #0C0C0C;
  text-decoration: none;
}

.bhs-btn--sm {
  font-size: 14px;
  padding: 10px 22px;
}

.bhs-btn--lg {
  font-size: 16px;
  padding: 16px 36px;
}

.bhs-btn--outline {
  background: transparent;
  color: var(--bhs-white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 15px;
}
.bhs-btn--outline:hover {
  border-color: var(--bhs-green);
  color: var(--bhs-green);
  text-decoration: none;
}

.bhs-btn--outline-dark {
  background: transparent;
  color: var(--bhs-dark-4);
  border: 1.5px solid var(--bhs-dark-4);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 15px;
}
.bhs-btn--outline-dark:hover {
  background: var(--bhs-dark-4);
  color: var(--bhs-white);
  text-decoration: none;
}

.bhs-btn--dark {
  background: var(--bhs-dark-4);
  color: var(--bhs-white);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 15px;
}
.bhs-btn--dark:hover {
  background: var(--bhs-dark-5);
  text-decoration: none;
  color: var(--bhs-white);
}

/* ============================================================
   SECTION LABEL (small caps above headings)
   ============================================================ */

.bhs-section-label {
  font-family: var(--bhs-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bhs-gray);
  margin: 0 0 16px;
}

.bhs-section-label--dark {
  color: var(--bhs-dark-4);
}

/* ============================================================
   HEADER
   ============================================================ */

.bhs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--bhs-transition), box-shadow var(--bhs-transition);
}

.bhs-header--scrolled {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.bhs-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

/* Logo */
.bhs-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bhs-logo__icon {
  display: block;
}

.bhs-logo__text {
  font-family: var(--bhs-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--bhs-white);
  letter-spacing: -0.02em;
}

/* Nav */
.bhs-nav {
  flex: 1;
}

.bhs-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bhs-nav__link {
  font-family: var(--bhs-font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--bhs-transition), background var(--bhs-transition);
}

.bhs-nav__link:hover {
  color: var(--bhs-white);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}

/* Header actions */
.bhs-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bhs-header__search {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 6px;
  transition: color var(--bhs-transition), background var(--bhs-transition);
}
.bhs-header__search:hover {
  color: var(--bhs-white);
  background: rgba(255,255,255,0.07);
}

/* Burger (mobile) */
.bhs-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.bhs-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bhs-white);
  border-radius: 2px;
  transition: all var(--bhs-transition);
}
.bhs-header__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bhs-header__burger.is-open span:nth-child(2) { opacity: 0; }
.bhs-header__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.bhs-mobile-menu {
  display: none;
  background: var(--bhs-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bhs-mobile-menu.is-open { display: block; }
.bhs-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 16px 24px 24px;
}
.bhs-mobile-menu__list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.bhs-mobile-menu__list a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  text-decoration: none;
}
.bhs-mobile-menu__list li:last-child {
  border-bottom: none;
  padding-top: 16px;
}

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

.bhs-hero {
  position: relative;
  min-height: 100vh;
  background: var(--bhs-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bhs-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 55% 50%, rgba(28, 231, 102, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(28, 231, 102, 0.03) 0%, transparent 60%),
    var(--bhs-dark);
  pointer-events: none;
}

.bhs-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding-top: 100px;
  padding-bottom: 80px;
  gap: 40px;
}

.bhs-hero__text {
  grid-column: 1 / 2;
}

.bhs-hero__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bhs-white);
  margin: 0 0 40px;
}

.bhs-hero__cta {
  margin-top: 0;
}

.bhs-hero__image {
  grid-column: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

.bhs-hero__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 80px rgba(28, 231, 102, 0.15));
}

/* Image placeholder when no image file */
.bhs-hero__image:empty::after,
.bhs-hero__image:has(> *:not(img)):after {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(28,231,102,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.bhs-hero__tags {
  grid-column: 3 / 4;
  font-family: var(--bhs-font-body);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  text-align: right;
}

.bhs-hero__bottom-bar {
  position: relative;
  z-index: 2;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.bhs-stats {
  background: var(--bhs-dark-3);
  padding: 100px 0;
}

.bhs-stats__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bhs-white);
  margin: 0 0 64px;
}

.bhs-stats__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--bhs-white);
}

.bhs-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.bhs-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--bhs-radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--bhs-transition), background var(--bhs-transition);
}
.bhs-stat-card:hover {
  border-color: rgba(28, 231, 102, 0.25);
  background: rgba(28, 231, 102, 0.03);
}

.bhs-stat-card p {
  font-family: var(--bhs-font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.bhs-stat-card__icon svg {
  display: block;
}

.bhs-stat-card--iso .bhs-iso {
  font-family: var(--bhs-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--bhs-green);
  letter-spacing: 0.1em;
  border: 2px solid var(--bhs-green);
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
}
.bhs-stat-card--iso .bhs-iso strong {
  display: block;
  font-size: 18px;
}

.bhs-stat-card--number .bhs-stat-card__number {
  font-family: var(--bhs-font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--bhs-green);
  letter-spacing: -0.03em;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.bhs-marquee {
  background: var(--bhs-dark-4);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.bhs-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: bhs-scroll 30s linear infinite;
  will-change: transform;
}

.bhs-marquee__track span {
  font-family: var(--bhs-font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.bhs-marquee__track .bhs-dot {
  color: var(--bhs-green);
  font-size: 20px;
  flex-shrink: 0;
}

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

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */

.bhs-solutions {
  background: var(--bhs-dark-2);
  padding: 100px 0;
}

.bhs-solutions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bhs-solutions__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bhs-white);
  margin: 0 0 24px;
}

.bhs-solutions__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0 0 40px;
  max-width: 480px;
}

.bhs-solutions__card {
  background: var(--bhs-dark-4);
  border-radius: var(--bhs-radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.bhs-solutions__card-img {
  width: 100%;
  height: 100%;
}
.bhs-solutions__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder when no image */
.bhs-solutions__card-img:empty {
  background: linear-gradient(135deg, var(--bhs-dark-4) 0%, var(--bhs-dark-5) 100%);
  min-height: 320px;
}

.bhs-solutions__card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(28, 231, 102, 0.15);
  border: 1px solid rgba(28, 231, 102, 0.3);
  backdrop-filter: blur(8px);
  color: var(--bhs-green);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

/* ============================================================
   EVOLUTION SECTION
   ============================================================ */

.bhs-evolution {
  background: var(--bhs-dark-3);
  padding: 100px 0;
}

.bhs-evolution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bhs-evolution__img-wrap {
  border-radius: var(--bhs-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bhs-dark-4);
}
.bhs-evolution__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bhs-evolution__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bhs-white);
  margin: 0 0 24px;
}
.bhs-evolution__title em {
  font-style: italic;
  color: var(--bhs-green);
}

.bhs-evolution__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0 0 40px;
}

.bhs-evolution__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bhs-evolution__stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.bhs-evolution__stat-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 4px;
  overflow: hidden;
}

.bhs-evolution__stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bhs-green) 0%, rgba(28,231,102,0.5) 100%);
  border-radius: 100px;
}

/* ============================================================
   CASES SECTION
   ============================================================ */

.bhs-cases {
  background: var(--bhs-off-white);
  padding: 100px 0;
}

.bhs-cases__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.bhs-cases__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bhs-dark);
  margin: 0;
}

.bhs-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.bhs-case-card {
  background: var(--bhs-white);
  border-radius: var(--bhs-radius-lg);
  overflow: hidden;
  transition: transform var(--bhs-transition), box-shadow var(--bhs-transition);
}
.bhs-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.bhs-case-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bhs-dark-4);
}
.bhs-case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bhs-case-card:hover .bhs-case-card__img img { transform: scale(1.04); }

/* Placeholder gradient per card */
.bhs-case-card__img--1 { background: linear-gradient(135deg, #1a2a1a 0%, #1e3a1e 100%); }
.bhs-case-card__img--2 { background: linear-gradient(135deg, #1a1a2a 0%, #1e1e3a 100%); }
.bhs-case-card__img--3 { background: linear-gradient(135deg, #2a1a1a 0%, #3a1e1e 100%); }

.bhs-case-card__body {
  padding: 24px;
}

.bhs-case-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bhs-green-dark);
  background: rgba(28, 231, 102, 0.1);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.bhs-case-card h3 {
  font-family: var(--bhs-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bhs-dark);
  margin: 0 0 16px;
}

.bhs-case-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--bhs-dark-4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--bhs-transition), gap var(--bhs-transition);
}
.bhs-case-card__link:hover {
  color: var(--bhs-dark);
  gap: 10px;
  text-decoration: none;
}

/* Client logos */
.bhs-clients {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.bhs-clients__label {
  font-family: var(--bhs-font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--bhs-dark);
  margin: 0 0 40px;
}
.bhs-clients__label em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--bhs-green);
  text-underline-offset: 4px;
}

.bhs-clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.bhs-client-logo {
  font-family: var(--bhs-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--bhs-gray);
  opacity: 0.6;
  transition: opacity var(--bhs-transition), color var(--bhs-transition);
  filter: grayscale(1);
}
.bhs-client-logo:hover {
  opacity: 1;
  color: var(--bhs-dark);
  filter: none;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */

.bhs-blog {
  background: var(--bhs-dark-2);
  padding: 100px 0;
}

.bhs-blog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.bhs-blog__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bhs-white);
  margin: 0;
}

.bhs-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bhs-blog-card {
  background: var(--bhs-dark-3);
  border-radius: var(--bhs-radius-lg);
  overflow: hidden;
  transition: transform var(--bhs-transition), box-shadow var(--bhs-transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.bhs-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(28,231,102,0.15);
}

.bhs-blog-card__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  text-decoration: none;
  background: var(--bhs-dark-4);
}
.bhs-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bhs-blog-card:hover .bhs-blog-card__img-wrap img { transform: scale(1.04); }

.bhs-blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bhs-dark-4) 0%, var(--bhs-dark-5) 100%);
}

.bhs-blog-card__body {
  padding: 24px;
}

.bhs-blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bhs-green);
  margin-bottom: 10px;
}

.bhs-blog-card__title {
  font-family: var(--bhs-font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}
.bhs-blog-card__title a {
  color: var(--bhs-white);
  text-decoration: none;
}
.bhs-blog-card__title a:hover {
  color: var(--bhs-green);
  text-decoration: none;
}

.bhs-blog-card__date {
  font-size: 13px;
  color: var(--bhs-gray);
  margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */



.bhs-cta {
  position: relative;
  background: var(--bhs-dark);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}


.bhs-cta__bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bhs-cta__deco-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: conic-gradient(from 0deg, var(--bhs-green) 0deg, transparent 90deg);
  opacity: 0.12;
  border-radius: var(--bhs-radius-xl);
  transform: rotate(-15deg);
}

.bhs-cta__deco-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: conic-gradient(from 180deg, var(--bhs-green) 0deg, transparent 90deg);
  opacity: 0.12;
  border-radius: var(--bhs-radius-xl);
  transform: rotate(20deg);
}

.bhs-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.bhs-cta__title {
  font-family: var(--bhs-font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bhs-white);
  margin: 0;
}


/* ============================================================
   FOOTER
   ============================================================ */

.bhs-footer {
  background: var(--bhs-dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.bhs-footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 64px;
}

.bhs-footer__tagline {
  font-family: var(--bhs-font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.85);
  margin: 20px 0 0;
}

.bhs-logo--footer .bhs-logo__text {
  font-size: 32px;
}

.bhs-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bhs-footer__col h4 {
  font-family: var(--bhs-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bhs-gray);
  margin: 0 0 20px;
}

.bhs-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bhs-footer__col a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--bhs-transition);
}
.bhs-footer__col a:hover {
  color: var(--bhs-white);
  text-decoration: none;
}

.bhs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bhs-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.bhs-footer__copy {
  font-size: 13px;
  color: var(--bhs-gray);
  margin: 0;
}

.bhs-footer__social {
  display: flex;
  gap: 16px;
}
.bhs-footer__social a {
  color: var(--bhs-gray);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color var(--bhs-transition);
}
.bhs-footer__social a:hover {
  color: var(--bhs-white);
}
