/* =========================================================================
   BEEP — brand layer.
   Loaded last; owns the palette and every BEEP-specific block.
   ========================================================================= */

:root {
  --theme: #C4A24A;          /* BEEP gold — replaces the stock accent */
  --theme-dim: #8F7530;
  --theme-soft: rgba(196, 162, 74, 0.12);
  --live: #FF3B30;
  --ok: #39D07E;
  --panel: #131316;
  --panel-2: #191920;
  --hairline: rgba(255, 255, 255, 0.1);
  --hairline-2: rgba(255, 255, 255, 0.16);
}

::selection { background: var(--theme); color: #0C0C0E; }

/* --- Preloader ---------------------------------------------------------- */
#preloader .pre-logo,
#preloader .pre-logo-fill { letter-spacing: 0.18em; }

/* --- Header ------------------------------------------------------------- */
.navbar-brand img,
.mobile-topbar .logo img,
.mobile-menu-main .logo img,
.offcanvas-menu .logo img,
.footer-logo img { height: 30px; width: auto; }

.menu-right-info { display: flex; align-items: center; gap: 26px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--hairline-2);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.header-cta:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: #0C0C0E;
}
.header-cta i { font-size: 12px; }

/* --- Hero --------------------------------------------------------------- */
.hero-1 .hero-right-items .sign img { height: 46px; width: auto; }
.hero-1 .hero-small-slider .small-thumb img { border-radius: 10px; }

/* --- Sector slider (replaces the stock brand-logo strip) ---------------- */
.brand-slider .sector-slide {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 30px;
  border-left: 1px solid var(--hairline);
  min-height: 116px;
  justify-content: center;
}
.sector-slide .sector-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.sector-slide .sector-meta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme);
}

/* --- Home: shared tweaks ------------------------------------------------ */
.about-counter-items .about-small img,
.service-box img,
.client-info > img { border-radius: 10px; }

.client-info > img { background: var(--theme-soft); padding: 8px; }

.video-banner img { border-radius: 20px; }

.pricing-note {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 420px;
}

.pricing-box-items .price sub {
  font-size: 15px;
  font-weight: 500;
  bottom: 0;
  margin-left: 6px;
  color: var(--text);
}

/* Role cards reuse the testimonial component — soften the "stars" slot */
.client-testimonial__item .star i { color: var(--theme); font-size: 18px; }
.client-testimonial__item .quote-icon img { height: 34px; width: auto; }
.client-testimonial__item h3 { font-size: 19px; line-height: 1.55; }

.news-box-items .client-image img {
  height: 40px;
  width: 40px;
  padding: 7px;
  border-radius: 50%;
  background: var(--theme-soft);
}

.lets-talk-text {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}

/* --- Breadcrumb --------------------------------------------------------- */
.breadcrumb-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid var(--hairline-2);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading h1 span { color: var(--theme); }

/* --- Product banner ----------------------------------------------------- */
.about-video-banner-about-page img { border-radius: 20px; }

/* --- Overview / details list ------------------------------------------- */
.services-details-section .details-top-item .left-content p + p { margin-top: 18px; }
.service-details-image img { border-radius: 20px; }

/* --- Module / icon cards ------------------------------------------------ */
.module-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 30px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--panel);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.module-card:hover {
  border-color: var(--theme);
  background: var(--panel-2);
  transform: translateY(-4px);
}
.module-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--theme-soft);
  flex: none;
}
.module-card .icon img { width: 28px; height: 28px; }
.module-card .content .title {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #fff;
}
.module-card .content p { font-size: 16px; line-height: 1.65; margin: 0; }
.module-card .module-points {
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
  display: grid;
  gap: 9px;
}
.module-card .module-points li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.module-card .module-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme);
}
.module-card .module-points a { color: var(--theme); font-weight: 600; }

.service-icon-details-section .section-title { margin-bottom: 50px; }

/* --- Split media sections ---------------------------------------------- */
.split-media img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--hairline);
}
.split-copy .section-title { margin-bottom: 26px; }
.split-text { font-size: 18px; line-height: 1.75; margin-bottom: 26px; }
.split-note { margin-top: 26px; font-size: 16px; line-height: 1.7; }
.split-note b { color: #fff; }

.split-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.split-list li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.split-list li i { color: var(--theme); font-size: 16px; margin-top: 4px; }

/* --- Steps -------------------------------------------------------------- */
.steps-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.step-item {
  display: flex;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--panel);
  transition: border-color 0.3s ease;
}
.step-item:hover { border-color: var(--theme); }
.step-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-dim);
  line-height: 1.2;
  flex: none;
}
.step-body h3 { font-size: 20px; margin-bottom: 8px; color: #fff; }
.step-body p { font-size: 16px; line-height: 1.65; margin: 0; }

/* --- Technical columns -------------------------------------------------- */
.tech-column {
  height: 100%;
  padding: 34px 30px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--panel);
}
.tech-column h3 {
  font-size: 20px;
  color: #fff;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.tech-column ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tech-column li {
  padding: 8px 15px;
  border: 1px solid var(--hairline-2);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}
.tech-column li:hover { border-color: var(--theme); color: #fff; }

/* --- Summary table ------------------------------------------------------ */
.summary-table-wrap {
  margin-top: 46px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow-x: auto;
  background: var(--panel);
}
.summary-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.summary-table th {
  padding: 20px 30px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme);
  border-bottom: 1px solid var(--hairline);
}
.summary-table td {
  padding: 18px 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid var(--hairline);
}
.summary-table tr:last-child td { border-bottom: 0; }
.summary-table td:first-child { color: #fff; font-weight: 600; white-space: nowrap; }
.summary-table tbody tr:hover td { background: var(--panel-2); }

/* --- Founder ------------------------------------------------------------ */
.founder-wrapper {
  padding: 60px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: var(--panel);
}
.founder-quote > img { margin-bottom: 26px; }
.founder-quote h3 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  margin-bottom: 34px;
}
.founder-meta { display: flex; align-items: center; gap: 18px; }
.founder-meta img { border-radius: 14px; }
.founder-name h4 { font-size: 20px; margin-bottom: 4px; color: #fff; }
.founder-name span {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme);
}
.founder-vision {
  margin: 40px 0 0;
  padding-top: 34px;
  border-top: 1px solid var(--hairline);
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
}
@media (max-width: 767px) {
  .founder-wrapper { padding: 34px 24px; }
  .founder-quote h3 { font-size: 21px; }
}

/* --- Contact ------------------------------------------------------------ */
.contact-aside {
  height: 100%;
  padding: 44px 38px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--panel);
}
.contact-aside h2 { font-size: 30px; margin-bottom: 16px; color: #fff; }
.contact-aside > p { font-size: 16px; line-height: 1.7; margin-bottom: 30px; }
.contact-aside-block { margin-bottom: 30px; }
.contact-aside-block h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 16px;
}
.contact-aside-block .split-list li { font-size: 15px; }
.contact-aside-mail {
  display: inline-block;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
}

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.form-status--success { background: rgba(57, 208, 126, 0.12); color: var(--ok); }
.form-status--error { background: rgba(255, 59, 48, 0.12); color: var(--live); }
.form-consent { margin-top: 18px; font-size: 14px; line-height: 1.65; }
.form-consent a { color: var(--theme); text-decoration: underline; }

.partner-info-card {
  padding: 46px 40px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--panel);
}
.partner-info-card h3 { font-size: 24px; margin-bottom: 28px; color: #fff; }
.partner-info-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.partner-info-card li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
  color: var(--text);
}
.partner-info-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.partner-info-card li span { color: var(--theme); font-weight: 700; font-size: 14px; }
.partner-info-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}
.partner-info-foot p { margin: 0; font-size: 15px; }

/* --- Footer ------------------------------------------------------------- */
.footer-cta-3 .subscribe-text { display: block; margin-bottom: 16px; }
.footer-cta-3 p { font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 40px;
  background: var(--theme);
  color: #0C0C0E;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.footer-cta-btn:hover { background: #fff; color: #0C0C0E; }
.footer-cta-mail {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: var(--text);
  transition: color 0.3s ease;
}
.footer-cta-mail:hover { color: var(--theme); }

/* --- Legal pages -------------------------------------------------------- */
.legal-nav {
  position: sticky;
  top: 120px;
  padding: 34px 30px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--panel);
}
.legal-nav-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 20px;
}
.legal-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.legal-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  color: var(--text);
  transition: all 0.3s ease;
}
.legal-nav a:hover { background: var(--panel-2); color: #fff; }
.legal-nav a.active { background: var(--theme-soft); color: var(--theme); font-weight: 600; }
.legal-nav-foot {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.legal-nav-foot p { font-size: 15px; margin-bottom: 10px; }
.legal-nav-foot a { padding: 0; color: var(--theme); font-weight: 600; }
.legal-nav-foot a:hover { background: none; }

.legal-content { max-width: 780px; }
.legal-effective {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 20px;
}
.legal-lede {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  padding-bottom: 34px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.legal-h { font-size: 26px; color: #fff; margin: 44px 0 16px; }
.legal-h3 { font-size: 19px; color: #fff; margin: 28px 0 10px; }
.legal-content p { font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.legal-content a { color: var(--theme); text-decoration: underline; }
.legal-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 12px; }
.legal-list li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme);
}
.legal-list b { color: #fff; }
.legal-contact {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--hairline);
}

/* --- 404 ---------------------------------------------------------------- */
.error-section { padding-top: 220px; }
.error-wrapper { max-width: 760px; margin: 0 auto; }
.error-code {
  display: block;
  font-size: clamp(90px, 18vw, 200px);
  font-weight: 800;
  line-height: 1;
  color: var(--theme);
  letter-spacing: -0.04em;
}
.error-title { font-size: clamp(30px, 5vw, 52px); color: #fff; margin: 20px 0 18px; }
.error-text { font-size: 18px; line-height: 1.75; margin-bottom: 40px; }
.error-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.error-suggest {
  list-style: none;
  padding: 40px 0 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-suggest a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--hairline-2);
  border-radius: 30px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
}
.error-suggest a:hover { border-color: var(--theme); color: #fff; }

/* --- Section rhythm ----------------------------------------------------- */
.split-section .section-title h2,
.steps-section .section-title h2,
.tech-section .section-title h2,
.summary-section .section-title h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.2; }

@media (max-width: 991px) {
  .legal-nav { position: static; }
  .contact-aside { padding: 34px 26px; }
  .error-section { padding-top: 160px; }
}

/* Respect reduced-motion for the marquee and float animations */
@media (prefers-reduced-motion: reduce) {
  .marquee-group,
  .float-bob-y,
  .img-custom-anim-left { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Accent colours the theme hard-codes outside var(--theme) ----------- */
.bracket::before,
.bracket::after { background: rgba(196, 162, 74, 0.9); }

.ring-arc.a1 {
  stroke: rgba(196, 162, 74, 0.95);
  filter: drop-shadow(0 0 5px rgba(196, 162, 74, 0.9));
}
.ring-arc.a2 { stroke: rgba(196, 162, 74, 0.6); }

.ring-center-dot {
  background: rgba(196, 162, 74, 0.95);
  box-shadow: 0 0 14px rgba(196, 162, 74, 0.9);
}

.gt-team-one-image-outer::after { background: rgba(196, 162, 74, 0.5); }

.faq-wrapper-2 .accordion-box .block .acc-btn .icon { background-color: var(--theme-soft); }

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(196, 162, 74, 0) 0%, var(--theme) 100%);
}

/* --- Recolour the theme's orange decorative PNGs to BEEP gold ----------- */
.hero-circle img,
.light-bg img { filter: hue-rotate(30deg) saturate(0.62) brightness(1.02); }

/* --- Fitting BEEP artwork into theme slots sized for the demo images ---- */
.brand-section .title span { color: #0C0C0E; }

.marque-section .text { color: #0C0C0E; }
.marque-section .text img { opacity: 0.7; width: 40px; height: 40px; }
.marque-section-2 .text-2 img { width: 34px; height: 34px; }

.service-box-style .service-list-wrap .service-box { left: 24px; bottom: 28px; }
.service-box-style .service-list-wrap .service-box img {
  width: 232px;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: left top;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1399px) {
  .service-box-style .service-list-wrap .service-box img { width: 160px; }
}

.about-wrapper .about-content .about-counter-items .about-small img {
  width: 254px;
  height: 227px;
  object-fit: cover;
  border: 1px solid var(--hairline);
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-counter-items .about-small img {
    width: 100%;
    height: 180px;
  }
}

.client-info > img { width: 56px; height: 56px; }
.testi-iimg img { width: 44px; height: 44px; }

/* --- FAQ visual: theme styles `.faq-image`, markup uses `.faq-image-5` --- */
.faq-image-5 img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--hairline);
}
.faq-wrapper-5 .section-title-area { gap: 60px; }

/* --- Floating stat badge: dark on gold reads better than white on gold -- */
.incrase-box span,
.incrase-box p { color: #0C0C0E !important; }
.incrase-box {
  max-width: 260px !important;
  padding: 20px 24px !important;
}
.incrase-box span { font-size: 15px !important; letter-spacing: 0.08em; text-transform: uppercase; }
.incrase-box p { font-size: 56px !important; margin-top: 10px !important; letter-spacing: -0.02em !important; }

/* --- CTA band --------------------------------------------------------- */
.lets-talk-section .lets-talk-content { position: relative; z-index: 2; }
.lets-talk-text { margin-top: 26px; }

@media (max-width: 767px) {
  .brand-slider .sector-slide {
    padding: 18px 16px;
    min-height: auto;
  }
  .sector-slide .sector-name { font-size: 16px; }
  .sector-slide .sector-meta { font-size: 11px; letter-spacing: 0.06em; }
}

/* --- Page gutters --------------------------------------------------------
   Every section shares one measure so the left and right rails line up
   from the header to the footer.                                          */
.footer-section .container { max-width: 1410px; }

.services-details-section.section-padding { padding-top: 140px !important; }

.lets-talk-section.hero-ptb { padding-top: 110px; padding-bottom: 120px; }

@media (max-width: 1199px) {
  .lets-talk-section.hero-ptb { padding-top: 80px; padding-bottom: 90px; }
}

/* --- Accessibility ------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 14px 22px;
  background: var(--theme);
  color: #0C0C0E;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--theme);
  outline-offset: 3px;
  border-radius: 4px;
}
