/* ponytail: site-wide overrides, kept in the theme's existing (empty) custom stylesheet instead of new files */

/* Baikal, site-wide. One font-family name with 4 weights registered — every existing theme
   rule already sets font-weight (400/500/600/700 are the ones actually used) and reads
   font-family via var(--as-font-1), so redefining that one variable below is enough to swap
   the whole site's headings/subheadings/body text over without touching each selector. */
@font-face {
  font-family: "Baikal";
  src: url(../fonts/BaikalTrial-Regular.otf) format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Baikal";
  src: url(../fonts/BaikalTrial-Medium.otf) format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Baikal";
  src: url(../fonts/BaikalTrial-SemiBold.otf) format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Baikal";
  src: url(../fonts/BaikalTrial-Bold.otf) format("opentype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --as-font-1: "Baikal", sans-serif;
}

/* the icon webfonts (flaticon + fontawesome) were mirrored as empty .html files, not real fonts —
   every <i class="fa-solid..">/<i class="flaticon..">  renders as a broken tofu box. No real font
   file exists to fix this with, so hide the glyph instead of showing the box. */
i.fa-solid, i.fas, i.fa-brands, i.fab, i.far, i[class*="flaticon"] {
  display: none !important;
}

/* the "back to top" button's up-arrow was a fa-solid icon, now hidden by the rule above,
   leaving an empty box. Draw the arrow with plain CSS borders instead of a font glyph. */
.wa-back-to-top::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--as-clr-pr-1, #FB0D1F);
  border-right: 2px solid var(--as-clr-pr-1, #FB0D1F);
  transform: rotate(-45deg);
  margin-top: 4px;
}

/* no page-load "LOADING..." animation wanted */
.as-preloader {
  display: none !important;
}

/* the header sits position:absolute over the hero, leaving an empty gap in normal flow above it
   that exposed the theme's default light-grey body background as a stray bar. Making the header's
   flow wrapper collapse to 0 height lets the hero start flush at the very top instead.
   !important: Elementor auto-generates a per-page stylesheet with `body.elementor-page-N`
   rules (e.g. post-159c72.css sets body.elementor-page-15 to #DCDCDC on the homepage) — that
   selector has higher specificity than a plain `body`, so it silently wins in any section
   that doesn't set its own background (this is what caused the "grey testimonials" bug). */
body {
  background-color: #fff !important;
}
/* None of these ever had their own background, so they inherited whatever the body showed
   through — previously a light grey from Elementor's per-page override, now solid black
   since the body rule above went !important. All of them use dark text meant for a white
   section (About Us, Our Values, Why Organizations Partner With..., Testimonials), so they
   need their own explicit white background regardless of what body is doing. */
.as-testimonial-1-area,
.as-about-1-area,
.as-features-1-area {
  background-color: #fff;
}
/* About page: industries-area and founder-area are both white sections, but the elementor
   container that wraps them has a small gap between its flex children that let the dark
   body color underneath show through as a thin bar. White it out at the wrapper level so
   the gap is invisible regardless of what's causing it. */
.elementor-23 {
  background-color: #fff;
}
.elementor-2582 {
  height: 0 !important;
  min-height: 0 !important;
  overflow: visible;
}

/* nav logo 2.5x (50px -> 125px); !important needed to beat the inline style attribute.
   logo.png's real canvas is a wide 2458x1514 rectangle — width must stay auto/unconstrained
   or the browser squeezes it into a narrower box and stretches the mark into an oval. */
.as-header-1-logo img,
.wa-offcanvas-top-logo img {
  height: 125px !important;
  width: auto !important;
  max-width: none !important;
  margin-top: 10px;
}
/* footer logo has no size rule anywhere in the theme, so it was rendering at its raw
   2458x1514 intrinsic size. */
.as-footer-1-logo img {
  height: 100px !important;
  width: auto !important;
  max-width: none !important;
}
/* inner pages (about/capabilities/contact) box the logo link itself into a fixed 160x85px
   frame via .has-inner-page — that's a different box than the home page uses, which is why
   the logo looked different there. Match the home page's unconstrained box. */
.as-header-1-area:is(.has-inner-page) .as-header-1-logo {
  height: auto !important;
  width: auto !important;
}

/* Capabilities breadcrumb hero (default, no page-specific class) — no overlay, already white text.
   Fixed `height` (not min-height) so Home/About/Capabilities are pixel-identical regardless of
   how much text each page's heading/content happens to have. */
.as-breadcrumb-area {
  background-image: url(../images/capabilities-hero.jpeg) !important;
  background-size: cover;
  background-position: center;
  height: 620px;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.as-breadcrumb-title {
  font-size: 84px !important;
}
@media (max-width: 991px) {
  .as-breadcrumb-title {
    font-size: 52px !important;
  }
}

/* all major section headings site-wide ("Our Growth Ecosystem", breadcrumb titles, etc.) use
   the same Ultra Expanded Bold display face as the hero headline — but keep their normal
   title-case text. All-caps is reserved for the hero headline only (.home-hero-title). */
.as-sec-title-1,
.tx-title,
.as-breadcrumb-title,
.middle-title,
.as-features-1-area .title,
.as-cta-1-content .title-1,
.as-cta-1-content .title-2 {
  font-family: "Baikal Ultra Expanded Bold", var(--as-font-1);
}

.as-breadcrumb-wrap > p.as-p-1 {
  font-size: 20px !important;
  line-height: 1.6;
}

/* each of the 3 hero/breadcrumb pages gets its own distinct gradient, same height */
.as-breadcrumb-area.home-hero {
  background-image: url(../images/red.jpeg) !important;
}
/* home hero content: centered, both the container block and the text/badge/buttons inside it */
.as-breadcrumb-area.home-hero {
  justify-content: center;
}
.as-breadcrumb-area.home-hero .as-breadcrumb-wrap {
  align-items: center;
  text-align: center;
}
.as-breadcrumb-area.home-hero .btn-wrap {
  justify-content: center;
}
@font-face {
  font-family: "Baikal Ultra Expanded Bold";
  src: url(../fonts/BaikalTrial-UltraExpandedBold.otf) format("opentype");
  font-weight: 700;
  font-display: swap;
}
/* home hero heading: forced onto one line at desktop, all caps. "Ultra Expanded" glyphs run
   much wider than a normal-width face, so the base size is smaller than a normal typeface
   would need to still fit "BUILD SMARTER. GROW FASTER." on one line. */
.home-hero-title {
  font-family: "Baikal Ultra Expanded Bold", var(--as-font-1);
  text-transform: uppercase;
  font-size: 84px !important;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .home-hero-title {
    font-size: 64px !important;
  }
}
@media (max-width: 991px) {
  .home-hero-title {
    font-size: 46px !important;
  }
}
@media (max-width: 767px) {
  .home-hero-title {
    font-size: 30px !important;
    white-space: normal;
  }
}
.as-breadcrumb-area.about-hero {
  background-image: url(../images/redgradient.png) !important;
}

/* shared helper: dark overlay + blur behind a section's gradient so any content on top stays legible.
   Not used on the hero/breadcrumb — those already carry white text by default. */
.gradient-dark-section {
  position: relative;
}
.gradient-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.gradient-dark-section > .container {
  position: relative;
  z-index: 1;
}

/* Partners section gradient + overlay + white heading */
.as-partner-1-area {
  background-image: url(../images/redgradient4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.as-partner-1-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.as-partner-1-area .container {
  position: relative;
  z-index: 1;
}
.as-partner-1-sec-title .tx-subTitle,
.as-partner-1-sec-title .as-sec-title-1,
.as-partner-1-area .as-h-1,
.as-partner-1-area .as-p-1 {
  color: #fff;
}

/* Growth Ecosystem: pure white page, individual dark cards, no hover/entrance animation */
.as-services-1-area {
  background-color: #fff;
}
.as-services-1-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .as-services-1-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .as-services-1-wrap {
    grid-template-columns: 1fr;
  }
}
.as-services-1-item {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: none !important;
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
  border-radius: 24px;
  padding: 38px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55);
  transition: none;
}
.as-services-1-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--as-clr-pr-1, #FB0D1F), transparent);
}
.as-services-1-item .icon-elm {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background-color: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  margin-bottom: 26px;
}
.as-services-1-item .number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}
.as-services-1-item .title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}
.as-services-1-item .title a {
  color: #fff;
}
.as-services-1-item .card-disc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.as-services-1-item .item-tags {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.as-services-1-item .item-tags li {
  background: transparent;
  box-shadow: none;
  padding: 0 0 0 16px;
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
/* Homepage Growth Ecosystem: all 5 tiles (brand + 4 service cards) in a single row.
   Scoped to this grid so it doesn't affect Capabilities' or About's grids. */
.growth-ecosystem-wrap {
  grid-template-columns: repeat(5, 1fr) !important;
}
.growth-ecosystem-wrap .as-services-1-item {
  padding: 28px 22px;
}
.growth-ecosystem-wrap .as-services-1-item .title {
  font-size: 19px;
}
.growth-ecosystem-wrap .as-services-1-item .item-tags li {
  font-size: 12.5px;
  line-height: 1.5;
}
/* ecosystem card layout: title top, dotted-circle outline icon centered in the middle, one
   italic summary line at the bottom. Matches the reference: small icon inside a generously
   larger dotted ring, no bullet list. */
.ecosystem-card {
  text-align: center;
  justify-content: center;
}
.ecosystem-card .number {
  position: static;
  display: block;
  margin-bottom: 8px;
}
.ecosystem-card .title {
  margin-bottom: 32px;
}
.ecosystem-card .icon-elm-outline {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 32px;
  background: none;
  color: #fff;
}
.ecosystem-card .icon-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.55);
}
.ecosystem-card .icon-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}
.card-summary {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1199px) {
  .growth-ecosystem-wrap {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .growth-ecosystem-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .growth-ecosystem-wrap {
    grid-template-columns: 1fr !important;
  }
}
/* Homepage cards: back to the dark theme (base .as-services-1-item default) — no override
   needed here, this section intentionally left blank after reverting the light-card attempt. */

/* Capabilities page: a left list of capability names, click one to show its detail panel
   on the right. Only the active panel renders; the rest are display:none (toggled in JS). */
.capability-explorer {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.capability-list {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: sticky;
  top: 110px;
}
.capability-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
/* story-style progress bar: fills over the 5s autoplay interval, only visible on the active row */
.cli-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  display: none;
  z-index: 1;
}
.capability-list-item.active .cli-progress {
  display: block;
}
.cli-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
}
.capability-list-item.active .cli-progress-fill {
  animation: capProgress 5s linear forwards;
}
@keyframes capProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.capability-list-item:last-child {
  border-bottom: none;
}
.capability-list-item .cli-number {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.35);
}
.capability-list-item .cli-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #17130f;
}
.capability-list-item .cli-arrow {
  display: flex;
  color: var(--as-clr-pr-1, #FB0D1F);
  opacity: 0;
}
.capability-list-item.active {
  position: relative;
  background-image: url(../images/redgradient4.png);
  background-size: cover;
  background-position: center;
}
.capability-list-item.active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.capability-list-item.active .cli-number,
.capability-list-item.active .cli-title,
.capability-list-item.active .cli-arrow {
  position: relative;
  z-index: 1;
  color: #fff;
}
.capability-list-item.active .cli-title {
  font-weight: 700;
}
.capability-list-item.active .cli-arrow {
  opacity: 1;
}
.capability-detail {
  flex: 1;
  min-width: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.capability-panel {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.capability-panel.active {
  display: block;
}
.capability-panel.active.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .capability-explorer {
    flex-direction: column;
  }
  .capability-list {
    position: static;
    width: 100%;
  }
  .capability-detail {
    width: 100%;
    min-height: 0;
  }
}
/* plain, unboxed detail content — no card background, just typography on the page */
.cap-header {
  padding: 0 0 24px;
}
.cap-header .icon-elm {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  background-color: #fff;
  margin-bottom: 16px;
}
.cap-header .number {
  position: relative;
  float: right;
  font-size: 13px;
  color: rgba(23, 19, 15, 0.35);
}
.cap-header .title,
.cap-header .title a {
  color: #17130f;
  font-size: 26px;
  margin-bottom: 12px;
}
.cap-header .card-disc {
  color: rgba(23, 19, 15, 0.68);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.cap-header .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--as-clr-pr-1, #FB0D1F);
  font-size: 14px;
  font-weight: 600;
}
.cap-header .card-cta svg {
  width: 16px;
  height: 16px;
}
.cap-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 24px 0;
}
.cap-body {
  padding: 0;
}
.capability-hook {
  font-family: var(--as-font-1);
  letter-spacing: -0.04em;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #17130f;
  margin: 0 0 22px;
}
.capability-hook strong {
  color: var(--as-clr-pr-1, #FB0D1F);
}
.capability-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  width: 100%;
}
.capability-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.point-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 13, 31, 0.08);
  color: var(--as-clr-pr-1, #FB0D1F);
}
.capability-points p {
  color: rgba(23, 19, 15, 0.65);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding-top: 4px;
}
.capability-points p strong {
  color: #17130f;
  font-weight: 700;
}
@media (max-width: 575px) {
  .capability-points {
    grid-template-columns: 1fr;
  }
}
.as-services-1-item.brand-card {
  background: linear-gradient(160deg, #3b6ef5, #2c4fd6) !important;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.as-services-1-item.brand-card::before {
  display: none;
}
.brand-card-mark {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.brand-card .card-disc {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 0;
}

.as-services-1-item .item-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--as-clr-pr-1, #FB0D1F);
}

/* Homepage "About Us" section used to have a 3rd column (a small "Expert Team" side label,
   since removed) — the grid still reserved that column's width, leaving a dead gap on the
   right. Only 2 real columns remain now. */
.as-about-1-wrap {
  grid-template-columns: 1.2fr 1fr !important;
}

/* "Need more assistance?" booking card now stands alone (the fake "Lisa" manager card that
   used to share this row was removed) — stretch it to match the contact form's height and
   fill the extra room instead of leaving it short and empty. */
.as-cta-2-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.as-cta-2-left-top {
  grid-template-columns: 1fr !important;
  flex: 1;
  display: flex;
}
.as-cta-2-booking {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-facts {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-facts li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}
/* only one selector left in the form (Budget removed) — it was a 2-col grid for 2 selects */
.as-cta-2-form .input-box {
  grid-template-columns: 1fr;
}

/* Contact page: the form and booking card keep their own dark cards (as designed) — what
   needed to change is the PAGE background around/behind them, which was black (inherited
   from the global dark body). Lighten the outer section, not the cards themselves. */
.as-cta-2-area {
  background-color: #fff;
}
.as-cta-2-left-top {
  background-color: transparent !important;
}
.as-cta-2-booking {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.as-cta-2-booking .as-h-1,
.as-cta-2-booking .as-p-1 {
  color: #fff;
}
.as-cta-2-booking .mail a {
  color: var(--as-clr-pr-1, #FB0D1F);
}
.booking-facts {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}
.booking-facts li {
  color: rgba(255, 255, 255, 0.7) !important;
}
.booking-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--as-clr-pr-1, #FB0D1F);
}

/* About page "Our Core Values": gradient backdrop + glassmorphic cards */
.core-values-area {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
}
.core-values-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/redgradient3.png);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.core-values-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.core-values-area > .container {
  position: relative;
  z-index: 1;
}
.core-values-area .as-sec-title-1,
.core-values-area .tx-subTitle {
  color: #fff;
}
.core-values-wrap .glass-card {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.core-values-wrap .glass-card .icon-elm {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* About page "Industries We Partner With" — white section, dark heading, pills in a bordered
   light container. */
.industries-area {
  background-color: #fff;
}
.industries-area .as-sec-title-1,
.industries-area .tx-subTitle {
  color: #17130f;
}
.as-approach-wrap-flat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 32px;
}
.industry-pill {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #17130f;
  font-size: 14px;
}

/* About page: founder/leadership section (placeholder photo + bio — swap in real details).
   No explicit background before, so it inherited the dark body color behind it — dark text
   on a dark background. White section, matching Industries above it. */
.founder-area {
  background-color: #fff;
}
.founder-wrap {
  display: flex;
  align-items: center;
  gap: 48px;
}
.founder-photo {
  flex: 0 0 280px;
  border-radius: 20px;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-content {
  flex: 1;
}
.founder-content .sec-disc {
  margin: 16px 0 24px;
  color: rgba(23, 19, 15, 0.7);
  line-height: 1.7;
}
.founder-meta {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}
.founder-meta h4 {
  font-size: 18px;
  margin-bottom: 2px;
}
.founder-meta p {
  color: rgba(23, 19, 15, 0.6);
  font-size: 14px;
}
@media (max-width: 767px) {
  .founder-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .founder-photo {
    width: 100%;
    flex-basis: auto;
  }
}

/* "Build What's Next" CTA (hands) section gradient + overlay */
.as-cta-1-bg {
  background-image: url(../images/redgradient3.png);
  background-size: cover;
  background-position: center;
  position: relative;
}
.as-cta-1-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
  border-radius: inherit;
}
.as-cta-1-bg .container {
  position: relative;
  z-index: 1;
}

/* "How We Work" process section — blurred gradient behind the step cards, dark overlay for contrast */
.as-process-1-area {
  position: relative;
  overflow: hidden;
}
.as-process-1-area::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image: url(../images/redgradient2.png);
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  z-index: 0;
}
.as-process-1-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.as-process-1-area > * {
  position: relative;
  z-index: 1;
}
.as-process-1-area .as-h-1,
.as-process-1-area .as-p-1,
.as-process-1-area .tx-subTitle {
  color: #fff;
}
.as-process-1-area .as-process-1-card {
  position: relative;
  z-index: 2;
  background-color: #17130f !important;
  background-image: none !important;
}
/* the giant "Steps" watermark title previously bled across the cards because its z-index:-1
   was relative to an independent stacking context created by the scroll-pin wrapper, not to
   the cards. Force it into the SAME stacking context as .as-process-1-area's own children
   (z-index:0, below the cards' explicit z-index:2 above) and give the cards an opaque
   background (already set) so any residual overlap is fully covered rather than bleeding
   through. */
.as-process-1-big-title {
  display: block !important;
  position: absolute !important;
  z-index: 0 !important;
  color: var(--as-clr-pr-1, #FB0D1F) !important;
  opacity: 0.5;
}

/* CTA hands section: drop the magnetic/split-text button animation, keep the plain button */
.as-cta-1-bg .wa_magnetic_btn_1,
.as-cta-1-bg .wa_btn_split_1 {
  transition: none !important;
  animation: none !important;
}
.as-cta-1-bg .wa_btn_split_1 .text {
  transform: none !important;
}

/* Footer: too tall/oversized site-wide. Same footer markup on every page so this one block
   fixes all 4 at once. */
.as-footer-1-area {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.as-footer-1-wrap {
  margin-bottom: 50px !important;
}
.as-footer-1-widget-title,
.as-footer-1-newsletter .title {
  font-size: 18px !important;
  margin-bottom: 12px !important;
}
.as-footer-1-newsletter-form-input {
  height: 46px !important;
  font-size: 14px;
}
.as-footer-1-newsletter-form-btn {
  padding: 6px 16px !important;
}
.as-footer-1-newsletter-form-btn .text {
  font-size: 13px;
}
.as-footer-1-big-email {
  font-size: 32px !important;
  padding: 8px 40px !important;
}

/* every eyebrow label ("{ } Services", "{ } Portfolio", "{ } Testimonial"...) wraps a broken
   icon (already hidden globally) in literal "{" "}" text characters, so it was rendering as a
   bare, empty bracket pair. Hide the whole icon span — the label text itself is a sibling
   node outside it, so this only removes the bracket decoration. */
.tx-subTitle .icon {
  display: none !important;
}

/* ==========================================
   FEATURE ADDITIONS
   ========================================== */

/* 1. Hero video background
   Place video/hero-bg.mp4 to activate.
   Background image stays as fallback. */
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Ensure all hero content sits above the video */
.as-breadcrumb-area > *:not(.hero-bg-video) {
  position: relative;
  z-index: 1;
}

/* 2. Button hover: dot-matrix icon → sliding right-arrow */
.tx-button .icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tx-button .icon svg {
  display: block;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
/* CSS chevron drawn via ::after; scales in as SVG scales out */
.tx-button .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.tx-button:hover .icon svg {
  transform: scale(0);
  opacity: 0;
}
.tx-button:hover .icon::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

/* 3. Ecosystem card numbers: box badge instead of {01} curly braces */
.ecosystem-card .number {
  font-family: "Baikal", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 3px 10px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  position: static !important;
  margin-bottom: 14px;
}

/* 6. 40+ portfolio counter: bordered box */
.as-portfolio-1-counter {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 18px;
}
.as-portfolio-1-counter .number {
  margin-bottom: 6px;
}

/* 8. Philosophy (testimonial) cards: visible border + shadow */
.as-testimonial-1-item {
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04) !important;
  background: #fff !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}
.as-testimonial-1-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
  transform: translateY(-3px);
}
.as-testimonial-1-item .as-h-1.title {
  font-size: 17px !important;
}
.as-testimonial-1-item .as-p-1.comment {
  color: rgba(23, 19, 15, 0.7) !important;
}

/* 4. Section headings: clamp to 2 lines; reduce size to prevent 3-line wrap */
.as-sec-title-1 {
  font-size: clamp(26px, 3.2vw, 44px) !important;
  line-height: 1.22 !important;
}

/* 12. Footer "Partner With Us" CTA button */
.footer-partner-cta {
  text-align: center;
  padding: 40px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 50px;
}
.footer-partner-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-size: 15px;
}
.footer-partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--as-clr-pr-1, #FB0D1F);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.footer-partner-btn:hover {
  background: #d10a18;
  color: #fff;
  transform: translateY(-2px);
}
.footer-partner-btn svg {
  width: 18px; height: 18px;
}

/* Footer address block */
.footer-address {
  margin-top: 16px;
}
.footer-address p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer-address strong {
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 4px;
}

/* Admin login page styles (used in admin.html) */
.wtn-admin-wrap {
  min-height: 100vh;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--as-font-1, sans-serif);
  padding: 24px;
}
.wtn-admin-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
}
.wtn-admin-logo {
  text-align: center;
  margin-bottom: 36px;
}
.wtn-admin-logo img { height: 60px; width: auto; }
.wtn-admin-card h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
  text-align: center;
}
.wtn-admin-card .subtitle {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}
.wtn-field {
  margin-bottom: 18px;
}
.wtn-field label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.wtn-field input, .wtn-field textarea, .wtn-field select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.wtn-field input:focus, .wtn-field textarea:focus {
  border-color: var(--as-clr-pr-1, #FB0D1F);
}
.wtn-field textarea { min-height: 80px; resize: vertical; }
.wtn-btn {
  width: 100%;
  background: var(--as-clr-pr-1, #FB0D1F);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.wtn-btn:hover { background: #d10a18; }
.wtn-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}
.wtn-btn-secondary:hover { background: rgba(255,255,255,0.14); }
.wtn-btn-danger { background: #e53e3e; }
.wtn-btn-danger:hover { background: #c53030; }
.wtn-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.wtn-msg.error { background: rgba(229,62,62,0.12); border: 1px solid rgba(229,62,62,0.3); color: #fc8181; }
.wtn-msg.success { background: rgba(72,187,120,0.12); border: 1px solid rgba(72,187,120,0.3); color: #68d391; }
/* Admin dashboard (post-login) */
.wtn-dashboard {
  min-height: 100vh;
  background: #0d0d0d;
  font-family: var(--as-font-1, sans-serif);
}
.wtn-dash-header {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wtn-dash-header img { height: 44px; width: auto; }
.wtn-dash-header h1 { color: #fff; font-size: 18px; flex: 1; margin-left: 20px; }
.wtn-logout-btn {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.wtn-logout-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.wtn-dash-body {
  display: flex;
  gap: 0;
}
.wtn-dash-nav {
  width: 220px;
  min-height: calc(100vh - 76px);
  background: #141414;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  flex-shrink: 0;
}
.wtn-dash-nav button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  text-align: left;
  padding: 12px 24px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.wtn-dash-nav button:hover, .wtn-dash-nav button.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.wtn-dash-nav button.active {
  border-left: 3px solid var(--as-clr-pr-1, #FB0D1F);
}
.wtn-dash-content {
  flex: 1;
  padding: 32px;
  color: #fff;
}
.wtn-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wtn-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.wtn-item-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
}
.wtn-item-card h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.wtn-item-card p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px; }
.wtn-item-actions { display: flex; gap: 8px; }
.wtn-item-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: background 0.2s;
}
.wtn-edit-btn { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.wtn-edit-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.wtn-del-btn { background: rgba(229,62,62,0.12); color: #fc8181; }
.wtn-del-btn:hover { background: rgba(229,62,62,0.25); }
.wtn-add-form {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  margin-top: 24px;
}
.wtn-add-form h3 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.wtn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) {
  .wtn-form-row { grid-template-columns: 1fr; }
  .wtn-dash-nav { width: 100%; min-height: auto; }
  .wtn-dash-body { flex-direction: column; }
}

