/* =========================
   GLOBAL BASE (desktop)
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito';
}

:root {
  --primary-color: #faaa33;
  --secondary-color: #2a6485;
  --tertiary-color: #333;

  --container-header: 1700px;
  --container-normal: 1100px;
  --container-wide: 1400px;
  --container-narrow: 900px;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

.container-header {
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 2rem 2rem;
}

/* Utilities */

.header-herotext .btn {
  border-radius: 10px;
  background-color: var(--secondary-color);
  color: white;
  margin-top: 10px;
  padding: 10px;
  display: inline-block;
  border: 2px solid black;
  cursor: pointer;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
  font-weight: bold;
}
.header-herotext .btn:hover {
  transition: 0.3s ease-in-out;
  background-color: var(--primary-color);
}

.orange {
  color: var(--primary-color);
}

.bold {
  font-weight: bold;
}

/* ========================================
     Navigation Menu -- Styling --  [DESKTOP]
     ======================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #e3e3e3;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-menu {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.navbar-menu li {
  padding: 0.5rem 1rem;
}

.navbar-menu li a {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.navbar-menu li:nth-child(5) img {
  width: 150px;
  height: 150px;
}

.navbar-menu li:nth-child(5) a,
.mobile-logo a {
  text-decoration: none;
  border: none;
  display: inline-block;
  line-height: 0;
}

.quote {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px;
  background: #333;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    background-color 1s,
    color 1s;
  z-index: 0;
}

.mobile-logo {
  display: none;
}

/* ========================================
     Navigation Menu -- ANIMATIONS --  [DESKTOP]
     ======================================== */

.quote:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-color);
  transform: translateY(-100%);
  border-radius: 10px;
  transition: transform 1s;
}

.quote:hover:before {
  transform: translateY(0);
}

.quote:hover {
  color: #333;
}

.navbar-menu li {
  text-align: center;
}

.navbar-menu li:not(:nth-child(5)) a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.5s ease-in-out;
  transform-origin: left;
}

.navbar-menu li:not(:nth-child(5)) a:hover:before {
  width: 100%;
}

/* Burger Menu */

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #333;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

/* ========================================
     Navigation Menu -- Styling --  [MOBILE & TABLETS]
     ======================================== */

/* ____________________________________________________________________________________  */

/* ========================================
     HEADER menu -- Styling --  [DESKTOP]
     ======================================== */

.animated-bar-header {
  margin: 0 auto;
  width: 97%;
  height: 60vh;
  position: relative;
  border-radius: 2px;
  padding: 2px;
  overflow: hidden;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.animated-bar-header:before,
.animated-bar-header:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(
    from var(--angle),
    transparent 70%,
    var(--primary-color)
  );
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 2px;
  border-radius: 2px;
  animation: 3s spin linear infinite;
}

.animated-bar-header::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.header-herobanner {
  height: 100%;
  width: 100%;
  border: 4px solid #333;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.header-herobanner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.header-herotext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  color: white;
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  inset: 0;
}

/* ========================================
     HEADER menu -- Styling --  [MOBILE]
     ======================================== */

/* ========================================
     ABOUT US section -- Styling --  [DESKTOP]
     ======================================== */

/* ========================================
   Hero Commitment / Logos
   ======================================== */
.hero-commitment {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ========================================
   Stat Bar
   ======================================== */
.stat-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(42, 100, 133, 0.9);
  padding: 1.25rem 2rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.stat-bar::before,
.stat-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 70%;
  background: rgba(25, 65, 90, 0.95);
}

.stat-bar::before {
  left: -24px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.stat-bar::after {
  right: -24px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.stat-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.stat-bar__number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-bar__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.stat-bar__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.section-introduction {
  margin: 10rem 0 auto;
  text-align: center;
}

/* Shared h2 base across all sections */
.section-introduction h2,
.text-wrapper__section-objective h2,
.text-wrapper__section-services h2,
.text-wrapper__section-industries h2,
.section-TheTeam h2,
.section-review h2,
.section-onboarding h2,
.pricing-header h2 {
  font-size: 4rem;
  font-weight: bold;
}

/* Shared orange dashes for all section subtitles */
.section-introduction h3::before,
.text-wrapper__section-objective h3::before,
.text-wrapper__section-services h3::before,
.text-wrapper__section-industries h3::before,
.section-TheTeam h3::before,
.section-review h3::before,
.section-onboarding h3::before,
.section-introduction h3::after,
.text-wrapper__section-objective h3::after,
.text-wrapper__section-services h3::after,
.text-wrapper__section-industries h3::after,
.section-TheTeam h3::after,
.section-review h3::after,
.section-onboarding h3::after {
  content: '—';
  color: var(--primary-color);
  font-weight: 400;
}

/* OPTION 2 — underline accent */
.section-introduction h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
}

.section-introduction img {
  width: 50%;
}

.section-introduction__flexwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-wrap {
  margin: 2rem auto 5rem;
  padding: 2rem;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  white-space: normal;
}

/* ========================================
     ABOUT US section -- Styling --  [MOBILE]
     ======================================== */

/* ========================================
     OBJECTIVE section -- Styling --  [DESKTOP]
     ======================================== */

.section-objective {
  position: relative;
  text-align: center;
  border-top: 2px solid #333;
}

.text-wrapper__section-objective {
  margin: 5em 0 auto;
}

/* OPTION 2 — underline accent */
.text-wrapper__section-objective h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
}

.text-wrapper-upper__section-objective h2 {
  font-size: 3.5rem;
}

.text-wrapper-bottom__section-objective h2 {
  font-size: 3.5rem;
  margin-top: -15px;
}

/* Image Slider */
.slider-wrapper {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-wrapper > p {
  font-style: italic;
  font-size: 1rem;
  margin-top: 60px;
  margin-bottom: 16px;
  text-align: center;
}

.slider-track {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  overscroll-behavior-x: contain;
  overflow-anchor: none;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slider img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Prev / Next buttons */
.slider-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slider-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

/* Dot navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-nav button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.slider-nav button:hover {
  background: var(--secondary-color);
}

.slider-nav button.is-active {
  background: var(--secondary-color);
  transform: scale(1.35);
}

.section-objective .text-wrap {
  width: 85%;
}

/* Image Slider: End*/

/* Grid Cards #1 */

.parent {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 200px;
  justify-content: center;
}

.objective__card {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.face1 {
  position: relative;
  width: 450px;
  height: 200px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  transform: translateY(100px);
  z-index: 1;
}

.objective__card:hover .face1,
.objective__card.is-active .face1 {
  background-color: var(--primary-color);
  transform: translateY(0);
}

.face2 {
  position: relative;
  width: 450px;
  height: 200px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
  transition: 0.5s;
  transform: translateY(-100px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.objective__card:hover .face2,
.objective__card.is-active .face2 {
  transform: translateY(0);
}

.face1 i {
  font-size: 4rem;
  color: white;
}

.face1 h3 {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
  color: white;
  font-size: 20px;
}

.parent p {
  margin: 0;
  padding: 0;
  font-size: 20px;
}

.parent a {
  margin: 20px 0 0;
  display: inline-block;
  text-decoration: none;
  width: 35%;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
  transition:
    background-color 0.5s,
    color 0.5s,
    border-color 0.5s;
}

.parent a:hover {
  background-color: var(--primary-color);
}
/* ========================================
     OBJECTIVE section -- Styling --  [Mobile]
     ======================================== */

/* ========================================
     SERVICES section -- Styling --  [DESKTOP]
     ======================================== */

.section-services {
  text-align: center;
  border-top: 2px solid #333;
  margin-bottom: 2rem;
}

.text-wrapper__section-services {
  margin: 5em 0 auto;
}

/* OPTION 2 — underline accent */
.text-wrapper__section-services h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
}

.video-crop {
  width: 97%;
  height: 45vh;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
}

.video-crop:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.video-crop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #333;
  position: relative;
}

.video-crop .video-logo {
  position: absolute;
  top: 15%;
  left: 95%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 125px;
  height: auto;
  pointer-events: none;
}

/* Service Cards */
.accordion {
  max-width: 420px;
  width: 100%;
  margin: 2rem auto 0;
  position: relative;

  /* kill the shared card look */
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.accordion-isolated-margin {
  margin-top: -20px;
}

.accordion-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  background: #fff;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
}

.inner-accordion-wrapper-isolated {
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 800px;
  box-sizing: border-box;
  transform: translateX(-23%);
}

.inner-accordion-wrapper {
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  box-sizing: border-box;
}

/* Shared base for all inner accordions */
.inner-accordion1,
.inner-accordion2,
.inner-accordion3 {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin: 10px 0;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  overflow: hidden;
}

/* Color variants */
.inner-accordion1 {
  background: #fff7f0;
  border-color: #ffd6b3;
}
.inner-accordion2 {
  background: #f0faff;
  border-color: #cceeff;
}
.inner-accordion3 {
  background: #f0f0ff;
  border-color: #ccccff;
}

/* Shared header */
.inner-accordion1 header,
.inner-accordion2 header,
.inner-accordion3 header {
  display: flex;
  min-height: 50px;
  padding: 0 15px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  transition:
    background-color 0.2s linear,
    color 0.2s linear;
}

/* Shared content description */
.accordion-content1 .description,
.accordion-content2 .description,
.accordion-content3 .description {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  padding: 0 15px;
  transition: opacity 0.2s linear;
}

/* Shared list items */
.accordion-content1 li,
.accordion-content2 li,
.accordion-content3 li {
  display: flex;
  align-items: flex-start;
}

/* Shared list icons */
.accordion-content2 li i,
.accordion-content3 li i {
  margin-right: 10px;
  color: green;
  font-weight: bold;
}

.accordion i {
  font-size: 25px;
}

/* Accordion GRID CARDS */
.accordion-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 0 4rem;
}

.accordion-header .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 0.5rem;
  letter-spacing: 0;
  word-spacing: 0;
  color: var(--primary-color);
}

.accordion-header .stars i {
  font-size: 16px;
}

.button-services {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 10px 40px;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 5px;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: background-color 1s ease;
}

.button-services:hover {
  background-color: var(--primary-color);
}

/* ========================================
     SERVICES section -- Styling --  [mobile]
     ======================================== */

/* ========================================
     Industries section -- Styling --  [DESKTOP]
     ======================================== */
.section-industries {
  text-align: center;
  border-top: 2px solid #333;
}

/* Heading block */
.text-wrapper__section-industries {
  margin: 5em 0 auto;
}

/* OPTION 2 — underline accent */
.text-wrapper__section-industries h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
}

/* Slider wrapper */
.section-industries__slider {
  width: 100%;
  overflow: hidden;
}

/* Scrolling row */
.section-industries__list {
  display: flex;
  width: max-content;
  animation: industriesSlide 40s linear infinite;
}

/* Base card styling */
.section-industries__list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid black;
  width: max-content;
  height: 600px;
  transform: scale(0.85);
  transform-origin: center center;
  font-size: 20px;
  position: relative;

  transition: box-shadow 0.3s ease;
}

/* individual backgrounds – these now apply to originals AND clones */
.section-industries__list-item--shopify {
  background: #dcedd5;
}

.section-industries__list-item--amazon {
  background: #ffe9c7;
}

.section-industries__list-item--custom {
  background: #d7e9ff;
}

.section-industries__list-item--etsy {
  background: #fff0e0;
}

.section-industries__list-item--saas {
  background: #e6e0ff;
}

.section-industries__list-item i {
  font-size: 150px;
  position: absolute;
  top: 60%;
  right: 5%;
}

/* Text column */
.section-industries__list-item__text {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 2rem;
}

.section-industries__list-item__text p {
  text-align: left;
}

.section-industries__list-item__text__tittle p {
  text-align: center;
}

.section-industries__list-item__text > p.bold {
  color: var(--primary-color);
}

/* "Works with" pill row */
.ind-who {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.ind-who__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.ind-pill {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  border: 1.5px solid var(--secondary-color);
  color: var(--secondary-color);
  background: rgba(42, 100, 133, 0.07);
}

/* Results callout */
.ind-results {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: var(--secondary-color);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ind-results i {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.section-industries__scenarios {
  text-align: left;
}

.section-industries__scenarios li {
  list-style: square;
  margin-left: 25px;
}

/* Card hover */
.section-industries__list-item:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

/* Pause animation ONLY while any card is hovered */
.section-industries__slider
  .section-industries__list:has(.section-industries__list-item:hover) {
  animation-play-state: paused;
}

/* Pause animation on touch hold (tablet) */
.section-industries__list.is-touch-paused {
  animation-play-state: paused;
}

/* Animation: move the whole row left */
@keyframes industriesSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ========================================
     Industry section -- Styling --  [mobile]
     ======================================== */

/* ========================================
     Team Section -- Styling --  [DESKTOP]
     ======================================== */
/* =========================
         THE TEAM
         ========================= */
.section-TheTeam {
  margin: 5rem auto;
  border-top: 5px solid black;
  text-align: center;
  padding: 2rem 1rem 4rem;
}
.section-TheTeam h2 {
  margin-top: 1rem;
  text-transform: uppercase;
}
.section-TheTeam h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.team-grid .flipcard:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

/* Each card */
.flipcard {
  position: relative;
  width: 420px;
  margin: 0 auto;
  perspective: 1000px;
}
@media (hover: hover) {
  .flipcard:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.04);
  }
}
.opacity {
  opacity: 0;
}
.crown {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  pointer-events: none;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
}
.crown img {
  width: 36px;
  height: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

/* Inner flipper */
.flipcard__inner {
  position: relative;
  width: 100%;
  height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: pointer;
  border-radius: 12px;
}
.flipcard.is-flipped .flipcard__inner {
  transform: rotateY(180deg);
}
.flipcard.is-flipped .card-paragraph-wrap {
  opacity: 0;
  pointer-events: none;
}

/* Faces */
.flipcard__face {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #000;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: block;
  inset: 0;
}

.slobodan {
  object-position: 0% 30%;
}

.nemanja {
  object-position: 50% 40%;
}

.anica {
  object-position: 50% 20%;
}

.damjan {
  object-position: 50% 25%;
}

.zika {
  object-position: 50% 15%;
}

.flipcard__face--back {
  transform: rotateY(180deg);
}

/* Caption */
.flipcard__face-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flipcard__face-front .flipcard__face {
  position: absolute;
  width: 100%;
  height: 100%;
}

.card-paragraph-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 3;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  transition: opacity 0.15s ease;
}

.card-paragraph-wrap p:first-child {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.card-paragraph-wrap p:last-child {
  color: var(--primary-color);
  font-size: 0.82rem;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.flipcard.opacity .flipcard__inner {
  cursor: default;
  pointer-events: none;
}

/* Team responsive */

/* ========================================
     REVIEW SECTION -- Styling --  [DESKTOP]
     ======================================== */
.section-review {
  margin: 5rem auto;
  border-top: 5px solid black;
  padding: 2rem 1rem 4rem;
}
.section-review h2 {
  margin-top: 1rem;
  text-align: center;
  text-transform: uppercase;
}
/* OPTION 2 — underline accent */
.section-review h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
  text-align: center;
}

.review-toggle {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-top: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}
.review-toggle:hover {
  color: var(--primary-color);
}

.testimonials-section {
  width: 100%;
}

.testimonials-container {
  position: relative;
}

.testimonials-container .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonials-container .owl-item {
  display: flex;
}

.testimonials-container .testimonial-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimonial-card .test-card-body {
  border-radius: 10px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.test-card-body .quotes {
  display: flex;
  align-items: center;
}

.test-card-body .quotes i {
  font-size: 35px;
  color: var(--secondary-color);
  margin-right: 10px;
}

.test-card-body p {
  margin: 10px 0px 15px;
  line-height: 1.5;
}

.test-card-body .ratings {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.test-card-body .ratings i {
  font-size: 20px;
  color: var(--primary-color);
}

.testimonial-card .profile {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.profile .profile-image {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  overflow: hidden;
  margin-right: 15px;
}

.profile .profile-desc {
  display: flex;
  flex-direction: column;
}

.profile-desc span:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
}
.profile-desc span:nth-child(2) {
  font-size: 15px;
  font-weight: bold;
}

.owl-nav {
  position: absolute;
  right: 20px;
  bottom: -10px;
}

.owl-nav button {
  border-radius: 50% !important;
}

/* ========================================
     Onboarding -- Styling --  [DESKTOP]
     ======================================== */
.section-onboarding {
  margin: 5rem auto;
  border-top: 5px solid black;
  padding: 2rem 1rem 4rem;
}
.section-onboarding h2 {
  margin-top: 1rem;
  text-align: center;
  text-transform: uppercase;
}
/* OPTION 2 — underline accent */
.section-onboarding h3 {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  background: none;
  color: #444;
  border: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem auto 0;
  text-align: center;
}

/* ========================================
   Onboarding Timeline Stepper
   ======================================== */
.ob-timeline {
  width: 95%;
  max-width: 1200px;
  margin: 3rem auto 0;
}

/* --- Stepper --- */
.ob-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 25px;
  --ob-progress: 0%;
}

/* Full grey track */
.ob-stepper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #ccc;
  z-index: 0;
}

/* Blue fill track */
.ob-stepper::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  width: var(--ob-progress);
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.4s ease;
  z-index: 1;
}

/* --- Individual step --- */
.ob-step {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.ob-step.is-active {
  cursor: default;
}

/* --- Icon wrapper --- */
.ob-step__icon-wrap {
  position: relative;
  text-align: center;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: -1rem;
}

/* --- Icons --- */
.ob-step__icon {
  font-size: 22px;
  color: #999;
  transition: opacity 0.2s linear;
}

.ob-step__icon--on {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: linear-gradient(
    122deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ob-step.is-active .ob-step__icon--off,
.ob-step:not(.is-active):hover .ob-step__icon--off {
  opacity: 0;
}

.ob-step.is-active .ob-step__icon--on,
.ob-step:not(.is-active):hover .ob-step__icon--on {
  opacity: 1;
}

/* --- Step title --- */
.ob-step__title {
  position: relative;
  display: block;
  padding-top: 15px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.4;
  font-size: 11px;
  transition: color 0.2s;
  margin-top: -3rem;
}

.ob-step__title span {
  display: block;
  font-size: 9px;
  opacity: 0.65;
  font-weight: 400;
  margin-top: 2px;
}

/* Dot on the line — sits at icon-centre height */
.ob-step::before,
.ob-step::after {
  content: '';
  position: absolute;
  left: 50%;
  display: block;
  border-radius: 50%;
}

.ob-step::before {
  top: 10px;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border: 2px solid #ccc;
  background: #fff;
  z-index: 10;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

.ob-step::after {
  top: 5px;
  transform: translateX(-50%) scale(0);
  width: 20px;
  height: 20px;
  background: #fff;
  z-index: 9;
}

.ob-step.is-active .ob-step__title {
  font-weight: 600;
}

.ob-step.is-active::before {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.ob-step.is-active::after {
  transform: translateX(-50%) scale(1);
  transition: transform 0.2s linear;
  background-image: linear-gradient(
    122deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  opacity: 0.35;
}

/* --- Slides container --- */
.ob-slides {
  overflow-anchor: none;
  position: relative;
  max-width: 100%;
  margin: auto;
  border-radius: 5px;
  background-color: #fff;
}

/* Gradient glow behind slides */
.ob-slides::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-image: linear-gradient(
    122deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  filter: blur(20px);
  transform: translate3d(0, 20px, 0) scale(1);
  z-index: -1;
}

/* --- Individual slide --- */
.ob-slide {
  display: none;
  padding: 30px 20px;
  position: relative;
}

.ob-slide::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 5rem;
  color: #f5c518;
  opacity: 0.15;
  pointer-events: none;
}

/* Per-slide decorative icons */
.ob-slide:nth-child(1)::after {
  content: '\f573';
} /* file-signature */
.ob-slide:nth-child(2)::after {
  content: '\f577';
} /* fingerprint */
.ob-slide:nth-child(3)::after {
  content: '\f7d9';
} /* screwdriver-wrench */
.ob-slide:nth-child(4)::after {
  content: '\f518';
} /* book-open */
.ob-slide:nth-child(5)::after {
  content: '\f135';
} /* rocket */

.ob-slide.is-active {
  display: block;
}

.ob-slide__title {
  margin-top: 0;
  font-size: 1.25rem;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.ob-slide__content {
  line-height: 1.7;
}

.ob-slide__content ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.ob-slide__content li {
  margin-bottom: 0.4rem;
  position: relative;
}

.ob-slide__content li::before {
  content: '✓';
  position: absolute;
  left: -1.25rem;
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: bold;
}

.ob-slide__content p:first-child {
  margin-top: 0;
}
.ob-slide__content p:last-child {
  margin-bottom: 0;
}

.goal-box {
  margin-top: 1.5rem;
  background: rgba(42, 100, 133, 0.06);
  border-left: 4px solid var(--secondary-color);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1.25rem;
}

/* ========================================
   Pricing Section
   ======================================== */

.section-pricing {
  margin: 5rem auto;
  padding: 2rem 1rem 4rem;
  border-top: 5px solid black;
  max-width: 1200px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--tertiary-color);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Row 1 — 2 cards centered */
.pricing-card:nth-child(1) {
  grid-column: 2 / 4;
}
.pricing-card:nth-child(2) {
  grid-column: 4 / 6;
}

/* Row 2 — 3 cards full width */
.pricing-card:nth-child(3) {
  grid-column: 1 / 3;
}
.pricing-card:nth-child(4) {
  grid-column: 3 / 5;
}
.pricing-card:nth-child(5) {
  grid-column: 5 / 7;
}

/* --- Individual card --- */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 340px;
  border: 2px solid #e3e3e3;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* --- Featured card --- */
.pricing-card--featured {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(42, 100, 133, 0.3);
}

.pricing-card--featured:hover {
  transform: translateY(-16px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__top {
  margin-bottom: 1.25rem;
}

.pricing-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.pricing-card__desc {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
  line-height: 1.5;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card--featured .pricing-card__price {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.pricing-card--featured .pricing-card__amount {
  color: var(--primary-color);
}

.pricing-card__period {
  font-size: 0.9rem;
  opacity: 0.65;
}

.pricing-card__contact {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-style: italic;
}

/* --- Features list --- */
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card--featured .pricing-card__features li::before {
  color: var(--primary-color);
}

/* --- CTA button --- */
.pricing-card__btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: var(--secondary-color);
  color: #fff;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.pricing-card__btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.pricing-card--featured .pricing-card__btn {
  background: var(--primary-color);
}

.pricing-card--featured .pricing-card__btn:hover {
  background: #fff;
  color: var(--secondary-color);
}

.pricing-card--growth {
  grid-column: 1 / 7;
  max-width: 100%;
}

/* --- Option 2: Header + Features Grid --- */
.growth-opt2 {
  display: block;
}

.growth-opt2__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.growth-opt2__header-left {
  flex: 1;
}

.growth-opt2__header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.growth-opt2__header-right .pricing-card__price {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.growth-opt2__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem 1.5rem;
}

.growth-opt2__feature {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* --- Responsive --- */

/* ============================================================
   FOOTER SHARED STYLES
   ============================================================ */

.footer {
  color: #fff;
}

.footer--opt3 {
  background: #111827;
}

.footer__opt3-cta {
  background: var(--secondary-color);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
}

.footer__opt3-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}

.footer__opt3-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin: 0;
}

.footer__opt3-cta-btn {
  flex-shrink: 0;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: #111827;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.footer__opt3-cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.footer__opt3-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 4rem;
  background: #0d1117;
}

.footer__opt3-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.footer__opt3-contact .footer__col-title {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer__opt3-contact p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.footer__opt3-contact p i {
  color: var(--primary-color);
}

.footer__opt3-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* TEST CSS */
