/* ============================================================
   VaultEdge — Custom Override CSS
   Completely new visual identity: dark navy + gold accent
   Fonts: Nunito (headings) + DM Sans (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --ve-dark: #061b1b;
  --ve-dark2: #28624c;
  --ve-navy: #003f3c;
  --ve-gold: rgb(23 212 64 / 91%);
  --ve-gold2: rgba(23, 212, 64, 0.1);
  --ve-light: #f1f8f8;
  --ve-white: #f1f8f8;
  --ve-text: #000;
  --ve-border: #f1f8f8;
  --ve-radius: 12px;
  --ve-shadow: 0 8px 30px rgba(13, 27, 42, 0.10);
  --ve-trans: all 0.3s ease;
  --gradient: linear-gradient(45deg, #003f3c, #67e084);
  --speed: 28s;
  --speed-reverse: 22s;
  --tezz-yellow: rgb(23 212 64 / 91%);
  --tezz-black: #061b1b;
  --tezz-dark-grey: #28624c;
  --tezz-white: #ffffff;
  --ring-size: 260px;
}

/* ---- RESET BODY FONTS ---- */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-text);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-dark);
}

.text-yellow {
  color: var(--ve-gold);
}

p {
  color: var(--ve-dark)
}

/* ============================================================
   NAVBAR
   ============================================================ */



.ve-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--tezz-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  transition: var(--ve-trans);
}

.ve-header.scrolled {
  background: var(--tezz-white);
  backdrop-filter: blur(10px);
}

.ve-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

/* Logo */
.ve-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 150px;
  height: auto;
}

.ve-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
}

.ve-logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.ve-logo-text strong {
  color: var(--ve-gold);
  font-weight: 900;
}

/* Nav links */
.ve-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.ve-nav ul li a {
  display: inline-block;
  padding: 5px 14px;
  color: var(--ve-dark);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--ve-trans);
}

.ve-nav ul li a:hover,
.ve-nav ul li a.active {
  color: #000;
  background: var(--ve-gold);
}

.ve-nav ul li a.active {
  color: var(--ve-dark);
}

/* Dropdown */
.ve-nav .has-drop {
  position: relative;
}

.ve-nav .has-drop:hover .ve-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ve-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--ve-dark2);
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--ve-trans);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-dropdown li a {
  padding: 10px 20px;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
}

.ve-dropdown li a:hover {
  color: #fff;
  background: rgba(212, 160, 23, 0.2);
}

.spacer {
  padding: 10px 0;
}

.ve-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon Buttons */
.ve-nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(ve-text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  position: relative;
  text-decoration: none;
}

.ve-nav-icon-btn:hover {
  background: #f4f4f4;
  color: #111;
}

/* WhatsApp button green tint on hover */
/* .ve-whatsapp-btn:hover {
  background: #e8f8f0;
  color: #25D366;
} */

/* Notification badge */
.ve-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--ve-gold);
  color: var(--ve-text);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Divider */
.ve-nav-divider {
  width: 1px;
  height: 24px;
  background: #e0e0e0;
  margin: 0 4px;
}

/* Login Button */
.ve-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--ve-dark2);
  background: rgb(233 250 234);
  color: var(--ve-dark2);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.ve-login-btn:hover {
  background: #fff;
  border-color: var(--ve-dark);
  color: var(--ve-dark);
}

/* Primary CTA */
.ve-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--ve-gold);
  color: var(--ve-text);
  border: 1px solid var(--ve-text);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.ve-cta-btn:hover {
  background: #fff;
  border-color: var(--ve-dark);
  color: var(--ve-dark);
}

.ve-cta-btn-1 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--tezz-white);
  color: var(--ve-text);
  border: 1px solid var(--ve-text);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.ve-cta-btn-1:hover {
  background: #fff;
  border-color: var(--ve-dark);
  color: var(--ve-dark);
}

.ve-cta-btn i {
  transition: transform 0.2s;
}

.ve-cta-btn:hover i {}

/* Mobile toggle */
.ve-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ve-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ve-trans);
}

/* Mobile menu */
.ve-mobile-menu {
  display: none;
  background: var(--ve-dark2);
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-mobile-menu.open {
  display: block;
}

.ve-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-mobile-menu ul li a {
  display: block;
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: #ffffff;
  background-color: #000;
}


.ve-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

}


.back-img,
.back-img-1 {
  position: absolute;
  z-index: 5;
}

.ve-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.back-img {
  left: -3%;
  top: 25%;
}

.back-img-1 {
  right: -3%;
  bottom: 15%;
}

.back-img img,
.back-img-1 img {
  width: 400px;
  height: auto;
  border-radius: 20px;
}

/* Content Positioning */
.ve-hero-content {
  position: relative;
  z-index: 3;
  /* Sits above the overlay */
  padding: 0 10%;
  max-width: 1170px;
}

.ve-hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #FFD700;
  /* Muted Gold from our design */
}

.ve-highlight {
  color: var(--ve-gold);
  /* Muted Teal from our design */
  text-transform: uppercase;
}

.ve-hero {
  padding-top: 85px;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  /* Full screen height */
  width: 100%;
  display: flex;
  align-items: center;
}

.ve-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(75deg, rgb(16 47 43 / 70%) 0%, rgb(6 27 27 / 74%) 100%);
  z-index: 2;
}

.padding-both{
  padding: 4rem 0 8rem 0;
}
.image-overlay-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.image-overlay-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transform: rotate(-180deg);
}

.ve-hero-left {
  padding: 40px 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.ve-hero-badge {
  display: inline-block;
  background: rgba(23, 212, 64, 0.3);
  color: var(--ve-gold);
  border: 1px solid rgba(23, 212, 64, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px !important;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  width: fit-content;
}

.ve-hero-badge-1 {
  display: inline-block;
  background: rgba(23, 212, 64, 0.91);
  color: var(--ve-dark);
  border: 1px solid rgba(23, 212, 64, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px !important;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.ve-hero-badge-2 {
  display: inline-block;
  background: var(--ve-navy);
  color: var(--ve-white);
  border: 1px solid rgba(23, 212, 64, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px !important;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.headings h1 {
  font-size: 2.7rem !important;
}

.headings-1 h1 {
  color: var(--ve-dark)
}

.headings-2 h2,
.headings-2 p {
  color: var(--ve-white) !important;
}



.ve-hero-left h1 {
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.ve-hero-left h1 .ve-highlight {
  color: var(--ve-gold);
}

.ve-highlight-1 {
  color: var(--tezz-white);
}

.ve-hero-left p {
  font-size: 17px;
  color: var(--tezz-white);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Hero buttons */
.ve-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}

.ve-btn-primary {
  display: inline-block;
  background: var(--ve-gold);
  color: var(--ve-dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-btn-primary:hover {
  background: var(--tezz-white);
  transform: translateY(-2px);
  color: var(--ve-dark);
}

.ve-btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-btn-ghost:hover {
  border-color: var(--ve-gold);
  color: var(--ve-gold);
  background: rgba(212, 160, 23, 0.08);
}

/* Hero stats */
.ve-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.ve-stat strong {
  display: block;
  font-size: 28px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

.ve-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ve-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero right */
.ve-hero-right {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.ve-hero-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ve-hero-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ve-dark) 0%, transparent 40%);
}

.ve-hero-img-accent {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 200px;
  height: 140px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--ve-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.ve-float-card {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.ve-float-card i {
  font-size: 28px;
  color: var(--ve-gold);
}

.ve-float-card strong {
  display: block;
  font-size: 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-float-card span {
  font-size: 12px;
  color: var(--ve-text);
}

/* ============================================================
  REVENUE STAGES
  ============================================================ */
.ve-revenue-stages-section {
  /* background: #f0ede5; */
}


.ve-revenue-title {
  font-size: clamp(1.8rem, 2.8vw, 2.85rem);
  font-weight: 800;
  color: var(--ve-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.ve-revenue-stages-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.ve-revenue-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ve-dark);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px #f0ede5, 0 2px 8px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.ecom-img-set {
  position: absolute;
    bottom: -60px;
    left: 57px;
}

.ecom-img-set img {
  height: auto;
  max-width: 280px;
  z-index: 1
}

.ve-stage-item {
  position: relative;
  border: 0;
  background: transparent;
  border-radius: 500px;
  padding: 30px 35px;
  display: flex;
  gap: 12px;
  text-align: left;
  width: 100%;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  border: 1px solid var(--ve-dark)
}

.ve-stage-item:focus {
  outline: none;
}

.ve-stage-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(214, 162, 34, 0.35);
}

.ve-stage-item.is-active {
  background: var(--tezz-white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--ve-dark);
}

.ve-stage-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ve-gold) 0%, #000 38%, var(--ve-gold) 75%, #000 100%);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ve-stage-icon-inner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  text-transform: lowercase;
}

.ve-stage-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-stage-text small {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--ve-text);
}

.ve-stage-text.is-active small,
.ve-stage-text.is-active strong {
  color: var(--ve-white)
}

.ve-revenue-container .col-lg-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 1199px) {
  .ve-stage-text strong {
    font-size: 1rem;
  }

  .ve-stage-text small {
    font-size: 0.86rem;
  }
}

@media (max-width: 991px) {
  .ve-revenue-container {
    border-radius: 24px;
    padding: 22px 14px;
  }

  .ve-revenue-stages-shell {
    border-radius: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ve-stage-item {
    border-radius: 16px;
  }
}

@media (max-width: 575px) {
  .ve-revenue-stages-shell {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .ve-revenue-indicator {
    display: none;
  }
}

/* MARQUEE */


.marquee-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  opacity: 1;
  animation: up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.marquee-row {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(240, 236, 228, 0.08);
  border-bottom: 1px solid rgba(240, 236, 228, 0.08);
  padding: 0.6rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-row:nth-child(even) {
  background: rgba(240, 236, 228, 0.025);
}

.track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  flex-shrink: 0;
}

.marquee-section .row-3 .track {
  animation: scroll-left calc(var(--speed) * 1.4) linear infinite;
}

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

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-section .item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.3rem 1.8rem;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  user-select: none;
}

.marquee-section .row-3 .item {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-section .sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ve-dark);
  flex-shrink: 0;
  vertical-align: middle;
}



/* services */
.tezz-services {
  background: url(../img/home/service-back.jpg);
  background-size: cover;
  background-position: center;
  /* overflow must NOT be hidden/auto/scroll — would break position:sticky on #sticky-nav */
  overflow: visible;
}

.tezz-collab {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  ;
  padding: 4rem 0;
}

.tezz-services .tezz-ser-head {
  background: linear-gradient(rgba(0, 63, 60, 0.596), rgba(0, 63, 60, 0.64)) 0% 0% / cover,
    url(../img/home/back-home.jpg);
  background-size: cover;
  padding: 3rem 0;
}


.tezz-services .tezz-ser-head p {
  color: var(--tezz-white)
}

.tezz-services h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.col-inner-all {
  padding: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* height: 100%; */
  border-radius: 20px;
}

.col-inner-all img {
  height: 150px;
  width: auto;
  text-align: center;
}


.col-inner-all-1 {
  background: var(--ve-dark2);
}

.col-inner-all-2 {
  background: rgba(23, 212, 64, 0.3);
}

.col-inner-all-2 h5,
.col-inner-all-2 p {
  color: var(--ve-dark)
}

.col-inner-all-1 h5,
.col-inner-all-1 p {
  color: var(--ve-white)
}

.tezz-services #sticky-nav {
  position: sticky;
  /* Default: topbar(40px) + header(80px) = 120px. JS sets exact value via --sticky-nav-top */
  top: var(--sticky-nav-top, 120px);
  padding: 0;
  z-index: 1020;
  overflow: visible;
  width: 100%;
}

.tezz-services #sticky-nav .container {
  background-color: var(--ve-navy);
  padding: 0.5rem 2rem;
  border-radius: 0px 0px 10px 10px;
}

.tezz-services .nav-link {
  color: #fff;
  padding: 0rem 0 !important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.nav-link:hover {
  color: var(--ve-gold);
}

.nav-link.active {
  color: var(--ve-gold) !important;
  border-bottom: 1px solid var(--ve-gold);
  font-weight: 300;

}

.content-section {
  padding: 7rem 6rem;
}

#web-dev {}

#app-dev {
  background: var(--ve-gold2);
}

#performance-ads {
  background: linear-gradient(rgb(23 212 64 / 82%), rgb(23 212 64 / 91%)),
    url(../img/home/seo.jpg);
  background-size: cover;
}

#social-media {
  background: var(--ve-text);
}

#growth-automation {
  background: linear-gradient(#061b1bdb, #061b1b00),
    url(../img/ring5-back.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}


.invoice-card {
  border-radius: 12px;
  background: #fff;
}

.table thead th {
  font-weight: 600;
  border-bottom: none;
  font-size: 0.75rem;
}

.table td {
  padding: 0.5rem;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .nav-item {
    margin-bottom: 10px;
  }

  .nav-link {
    padding: 0.5rem 0;
  }
}


/* usp */
.usp {
  background: #f0f0f0;
  padding: 4rem 0
}

.usp .row {
  row-gap: 2rem !important;
}

.tezz-header-border h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #000;
  font-weight: 900;
  margin-bottom: 22px;
}

.testimonial-card {
  background: var(--ve-dark2);
  padding: 1rem;
  border-radius: 30px;
}

.tezz-main-card {
  background: rgba(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 30px;
  margin: 1rem 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.back-1 {
  background: linear-gradient(rgb(23 212 64 / 82%), rgb(23 212 64 / 91%)),
    url(../img/home/seo.jpg);
  background-size: cover;
}

.back-light {
  padding: 3rem 0;
  background: var(--ve-gold2);
}

.tezz-main-card li small {
  font-size: 1rem
}

.tezz-meta-text {
  font-size: 0.85rem;
  color: #a0a0a0;
}

.tezz-label {
  font-size: 0.75rem;
  color: #888;
}

.tezz-chart-wrapper {
  width: 100%;
  margin-top: 0px;
}

.tezz-feature-item {
  background: #fff;
  border: 1px solid #f0f0f0 !important;
}

.tezz-small-text {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}

.tezz-tag-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.tezz-tag {
  background: #1a1a1a;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
}

.tezz-speed-meter {
  position: relative;
  width: 80px;
  height: 80px;
}

.tezz-outer-ring {
  width: 100px;
  height: 100px;
  border: 3px solid #00c896;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tezz-inner-score {
  font-weight: 800;
  font-size: 1.4rem;
  color: #00c896;
}

.tezz-bottom-label {
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0;
}

.tezz-icon-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 60px;
  margin: 0 auto;
}

.tezz-icon-sq {
  width: 25px;
  height: 25px;
  background: #f5f5f5;
  border-radius: 6px;
}

.tezz-target-box {
  width: 50px;
  height: 50px;
  border: 2px solid #00c896;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tezz-target-inner {
  width: 20px;
  height: 20px;
  background: rgba(0, 200, 150, 0.2);
  border: 1px solid #00c896;
}

.tezz-code-badge {
  font-family: 'Courier New', monospace;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  display: inline-block;
  font-size: 0.9rem;
}

.tezz-status-pill {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 12px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bold;
}

.tezz-status-pill span {
  color: var(--tezz-dark-grey);
  margin-left: 5px;
}

/* faster */

.back-cta-retention {
  padding: 2rem 0;
  background: #190f48;
  border-radius: 20px 20px 0px 20px;
}

/* about home page section */

.img-size-cta-one {
  height: 150px;
  width: 150px;
}

.text-end-img {
  padding-right: 3rem;
  text-align: end;
}

/* Container & Layout */

.tezz-checkout-section-service-1 {
  padding: 3rem 0;

}

.tezz-checkout-section {
  background: #fff;
  overflow: hidden;
  display: flex;
  font-family: 'Inter', sans-serif;
}

.tezz-left-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tezz-inner-wrapper {
  max-width: 600px;
}

/* Typography */
.tezz-dot-label {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tezz-dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.tezz-main-heading {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.tezz-text-highlight {
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 208, 165, 0.2) 60%);
  padding: 0 5px;
}

.tezz-subtext {
  font-size: 1.25rem;
  color: #111;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* Stats */
.tezz-stats-row {
  display: flex;
}

.tezz-stat-item {
  width: 180px;
  padding: 1rem;
  text-align: center;
}

.state-item-1 {
  background: var(--ve-gold);
}

.state-item-2 {
  background: #68d84fad;
}


.state-item-3 {
  background: #89e483b3;
}


.tezz-stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.tezz-stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.tezz-stat-prefix {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  color: #000;
}

/* CTAs */
.tezz-cta-group {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tezz-btn-wrap {
  text-align: center;
}

.tezz-btn-dark {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
}

.tezz-btn-note {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 8px;
}

.tezz-btn-outline {
  background: transparent;
  border: 1px solid #ccc;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Visual Side (Black Background) */
.tezz-right-visual {
  background: linear-gradient(rgb(23 212 64 / 57%), rgb(23 212 64 / 53%)),
    url(../img/home/seo.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
}

.tezz-mockup-wrapper {
  position: relative;
  width: 320px;
  /* Standard Mobile Width */
}

/* Floating Tags */
.tezz-feature-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Example Positioning for Tags */
.tag-shipping {
  top: 20%;
  left: -90px;
  background: var(--tezz-white);
  color: #000;
}

.tag-registration {
  top: 10%;
  right: -90px;
  background: var(--tezz-white);
  color: #000;
}

.tag-loyalty {
  bottom: 20%;
  left: -100px;
  background: var(--tezz-white);
  color: #000;
}

.tag-crosssell {
  bottom: 10%;
  right: -110px;
  background: var(--tezz-white);
  color: #000;
}

@media (max-width: 991px) {
  .tezz-right-visual {
    min-height: 600px;
  }
}

/* Pricing Card Styles */

.pricing-tezz {
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

}

.pricing-tezz .container-fluid {
  padding: 0;
  margin: 0;

}

.tezz-plan-container-xl {
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.tezz-plan-suite {
  overflow: hidden;

}


.tezz-plan-suite-top {
  background: #070707;
  padding: 42px 20px 70px;
}

.tezz-plan-suite-large .tezz-plan-suite-top {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 26px 96px;
  background: radial-gradient(circle at top, #181818 0%, #080808 62%, #040404 100%);
}

.tezz-plan-suite-top h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 14px;
}

.tezz-plan-suite-top p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.tezz-plan-tabs-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -28px auto 0;
  max-width: 920px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
}

.tezz-plan-tab {
  border: 0;
  border-right: 1px solid #2c2c2c;
  background: #f3f1e8;
  color: #121212;
  text-align: left;
  padding: 10px 14px;
  transition: all 0.25s ease;
}

.tezz-plan-tab:last-child {
  border-right: 0;
}

.tezz-plan-tab-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.tezz-plan-tab small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #4f4f4f;
  line-height: 1.25;
}

.tezz-plan-tab.is-active {
  background: #f4d63f;
}

.tezz-plan-panel {
  display: none;
}

.tezz-plan-panel.is-active {
  display: block;
}

.tezz-plan-panel h3 {
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 28px 0 28px;
}

.tezz-plan-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tezz-plan-left {
  padding: 30px;
}

.tezz-plan-left h4 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.tezz-plan-left p {
  color: #2f2f2f;
  line-height: 1.7;
  margin-bottom: 14px;
}

.tezz-plan-left h6 {
  margin: 18px 0 12px;
  font-size: 15px;
}

.tezz-plan-left ul {
  margin: 0 0 22px;
  padding: 0;
}

.tezz-plan-left ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #171717;
  font-size: 14px;
}

.tezz-plan-left ul li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: -1px;
  color: #111;
  font-weight: 700;
}

.tezz-plan-pricing {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}

.tezz-plan-pricing label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #3f3f3f;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tezz-plan-select {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  outline: none;
}

.tezz-plan-select:focus {
  border-color: var(--ve-gold);
  box-shadow: 0 0 0 2px rgba(214, 162, 34, 0.15);
}

.tezz-plan-price-wrap {
  margin-top: 10px;
}

.tezz-plan-price-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.tezz-plan-price-value {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  color: #111;
  font-weight: 800;
}

.tezz-plan-actions {
  display: grid;
  gap: 10px;
}

.tezz-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid #cfcfcf;
}

.tezz-plan-btn-primary {
  background: #f4d63f;
  color: #111;
  border-color: #f4d63f;
}

.tezz-plan-btn-primary:hover {
  color: #111;
  background: #e8cb38;
}

.tezz-plan-btn-secondary {
  background: transparent;
  color: #111;
}

.tezz-plan-btn-secondary:hover {
  color: #111;
  background: #e8e8e8;
}

.tezz-plan-actions a[href^="#"] {
  scroll-behavior: smooth;
}

.tezz-plan-compare-section {
  background: #ffffff;
  padding: 5.5rem 0 6rem;
}

.tezz-compare-wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.tezz-compare-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 6px;
  color: #111;
}

.tezz-compare-head p {
  margin: 0 0 18px;
  color: #555;
}

.tezz-compare-table {
  margin: 0;
  border-color: rgba(0, 0, 0, 0.08);
}

.tezz-compare-table thead th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 18px 14px;
  vertical-align: bottom;
}

.tezz-compare-col-feature {
  width: 32%;
}

.tezz-compare-col-title {
  font-weight: 800;
  font-size: 16px;
  color: #111;
}

.tezz-compare-col-sub {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.tezz-compare-col-collab {
  background: rgba(244, 214, 63, 0.28);
}

.tezz-compare-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}

.tezz-compare-feature {
  font-weight: 600;
  color: #111;
}

.tezz-compare-muted {
  color: #777;
  font-weight: 500;
}

.tezz-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 162, 34, 0.16);
  color: #111;
  font-weight: 900;
  font-size: 12px;
}

.tezz-compare-section-row td {
  background: #fafafa;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
}

.tezz-compare-collab-cell {
  background: rgba(244, 214, 63, 0.18);
}

.tezz-collab-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tezz-collab-price {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.tezz-collab-price span {
  font-size: 12px;
  font-weight: 700;
  color: #666;
}

.tezz-collab-points {
  padding-left: 18px;
  margin: 0 0 12px;
  color: #111;
  font-size: 13px;
}

.tezz-collab-points li {
  margin-bottom: 6px;
}

.tezz-collab-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-weight: 800;
  padding: 12px 14px;
  text-decoration: none;
  border: 1px solid #111;
}

.tezz-collab-buy:hover {
  color: #111;
  background: #f4d63f;
  border-color: #f4d63f;
}

.tezz-collab-note {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .tezz-compare-wrap {
    padding: 16px;
  }

  .tezz-compare-col-feature {
    width: 260px;
  }
}

.tezz-plan-right {
  position: relative;
  text-align: center;
  min-height: 380px;
}

.tezz-plan-right img {
  width: 400px;
  text-align: center;
  height: auto;
  object-fit: cover;
}

.tezz-plan-quote {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(180deg, rgba(13, 30, 55, 0.75), rgba(15, 40, 70, 0.92));
  color: #fff;
  border-radius: 10px;
  padding: 18px;
}

.tezz-plan-quote p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 10px;
}

.tezz-plan-quote span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
  .tezz-plan-tabs-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tezz-plan-card {
    grid-template-columns: 1fr;
  }

  .tezz-plan-right {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .pricing-tezz {}

  .pricing-tezz-service {
    padding-top: 5.5rem;
  }

  .tezz-plan-container-xl {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tezz-plan-suite-top {
    padding: 34px 16px 62px;
  }

  .tezz-plan-suite-large .tezz-plan-suite-top {
    min-height: 250px;
    padding: 38px 14px 74px;
  }

  .tezz-plan-tabs-wrap {
    grid-template-columns: 1fr;
  }

  .tezz-plan-panel {
    padding: 28px 14px 14px;
  }

  .tezz-plan-left {
    padding: 20px 16px;
  }
}

.tezz-pricing-card {
  background: #0f0f12;
  border: 1px solid #222;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.tezz-featured {
  border: 1px solid var(--ve-gold);
  box-shadow: 0 0 30px rgba(155, 77, 255, 0.2);
  transform: scale(1.05);
}

.tezz-plan-tag {
  font-size: 0.75rem;
  color: #888;
}

.tezz-green-text {
  color: var(--ve-gold);
  font-size: 1.25rem;
}

.tezz-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #ccc;
}

.tezz-btn-purple {
  background: var(--ve-gold);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.tezz-btn-purple:hover {
  background: var(--ve-gold);
  box-shadow: 0 5px 15px rgba(155, 77, 255, 0.4);
}


/* Collaboration Section Styles */
.tezz-bonus-header {
  margin-bottom: 3rem;
}

.tezz-bonus-header h1 {
  color: #fff
}

.tezz-collaboration-hero {
  position: relative;
  overflow: hidden;
}

.back-gradient {
  position: relative;
  overflow: hidden;
}

.back-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgb(103, 224, 132, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.back-gradient-2 {
  position: relative;
  overflow: hidden;
}

.back-gradient-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgb(103, 224, 132, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.tezz-gradient-text {
  background: linear-gradient(90deg, #9b4dff, #a3ff12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tezz-icon-box {
  font-size: 1.5rem;
}

.tezz-xs-text {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}


/* Noise Texture Overlay */
.tezz-noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('noise.png');
  /* A very subtle 5% opacity noise image */
  opacity: 0.05;
  pointer-events: none;
  z-index: 10;
}

/* --- Left Side Content --- */
.tezz-sticky-content {
  position: sticky;
  top: 100px;
  z-index: 5;
}

.tezz-hero-badge {
  background: rgba(0, 208, 165, 0.1);
  color: #00d0a5;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tezz-stack-title {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: -2px;
}

.tezz-stack-sub {
  color: #888;
  font-size: 1.15rem;
  max-width: 500px;
}

/* Hoverable List Items */
.tezz-h-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.tezz-h-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.tezz-h-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.7;
  transition: 0.3s;
}

.tezz-h-desc {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
  opacity: 0.7;
  transition: 0.3s;
}

/* Active (Hoved) State */
.tezz-active .tezz-h-title {
  opacity: 1;
  color: #fff;
}

.tezz-active .tezz-h-desc {
  opacity: 1;
  color: #aaa;
}

/* --- Right Side Visuals --- */
.tezz-visual-stage {
  position: relative;
  text-align: center;
  min-height: 500px;
  /* Ensure space for stacking on mobile */
}

.tezz-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 208, 165, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.tezz-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  /* Adjust based on your image height */
}

.tezz-s-item h5,
.tezz-s-item-1 h1 {
  color: var(--tezz-black);
}

.tezz-s-item:hover h5,
.tezz-s-item-1:hover h1 {
  color: var(--tezz-white);
}

.tezz-s-item-1 {
  text-align: center;
}

.tezz-s-item {
  background: var(--tezz-white);
  border: 1px solid var(--ve-light);
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: var(--tezz-black);
  border-radius: 10px;
}

.tezz-s-item:hover {
  background: var(--tezz-dark-grey);

}

.tezz-s-item:hover p {

  color: #fff !important;
}

.tezz-s-item p {
  /* color: #fff !important; */
  padding: 0;
  margin: 0;
}


.tezz-v-img {
  position: absolute;
  top: 0;
  left: 50%;
  /* transform: translateX(-50%) scale(0.95); */
  width: 100%;
  height: auto;
  opacity: 0;
  /* transition: opacity 0.4s ease, transform 0.4s ease; */
  z-index: 1;
  pointer-events: none;
  /* Prevents images from blocking mouse clicks */
}

/* The active state */
.tezz-v-img.tezz-visible {
  opacity: 1;
  /* transform: translateX(-50%) scale(1); */
  z-index: 10;
}

/* Image Drop Shadow */
.tezz-v-img img {
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
  border-radius: 10px;
}

/* --- Mobile Stack (Tower) Logic --- */
@media (max-width: 991px) {
  .tezz-sticky-content {
    position: static;
    top: auto;
  }

  .tezz-v-img {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 20px;
    transition: none;
    display: block;
  }

  .tezz-hover-list {
    display: none;
    /* Hide hover effect triggers on mobile */
  }

  .tezz-image-container {
    display: flex;
    flex-direction: column;
  }

  .tezz-v-img img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}


.tezz-btn-shimmer:hover::before {
  left: 100%;
}

/* numbers */
/* Base Layout */
.tezz-main-wrapper {
  background: url(../img/home/service-back.jpg);
  background-size: cover;
  background-position: center;
  padding: 6rem 0 8rem;
}

.tezz-body-bg {
  background-color: #fcfcfc;
}

.tezz-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -1px;
}

.tezz-header-desc {
  font-size: 1rem;
  padding-left: 20px;
}

/* Updated Card Logic */
.tezz-stat-card {
  background: #000;
  border-radius: 4px;
  /* Slightly sharper premium corners */
  height: 380px;
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-left: 5px solid var(--ve-gold);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.tezz-card-content {
  padding: 40px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tezz-percentage {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.tezz-stat-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #fff;
}

/* Vertical Label - Default State */
.tezz-vertical-label {
  width: 45px;
  background: #000;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  border-left: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* HOVER EFFECT - Now applied to all cards */
.tezz-stat-card:hover .tezz-vertical-label {
  background: var(--gradient);
  /* Premium dark forest green */
  color: #ffffff;
  width: 55px;
  /* Slight expansion effect */
}

.tezz-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: var(--ve-dark);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ve-trust-inner {
  display: inline-flex;
  gap: 60px;
  animation: ve-marquee 25s linear infinite;
}

.ve-trust-inner span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ve-trust-inner span i {
  font-size: 14px;
}

@keyframes ve-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Tezz Dashboard Styles */
.tezz-retention-dashboard {
  font-family: 'Inter', sans-serif;
}

.tezz-card {
  border-radius: 2rem;
  border: none;
  transition: transform 0.3s ease;
}

.main-bg {
  background: transparent;
}

.tezz-quote-box {
  background: #fff9c4;
  border-left: 4px solid #fbc02d;
}

.tezz-interface-mockup {
  transform: translateY(-20px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}


.mini-chart {
  height: 40px;
  background: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.05) 10px);
  border-bottom: 2px solid #000;
}

.pie-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(#000 70%, #ccc 0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tezz-interface-mockup {
    transform: translateY(0);
    margin-top: 2rem;
  }
}



/* video section */
/* Video Background Container */
.tezz-video-container {
  position: relative;
  width: 100%;
  height: 80vh;
  /* Full viewport height */
  overflow: hidden;
}

/* Background Video styling */
.tezz-background-video {
  position: absolute;
  top: 60%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  /* Lowest z-index */
}

/* Overlay to darken video slightly for text readability */
.tezz-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Dark overlay */
  z-index: 2;
}

/* Content Container on top of video */
.tezz-content {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  /* Content above video and overlay */
  display: flex;
  align-items: center;
  /* Center boxes vertically on the video */
  justify-content: center;
}

/* Grid for boxes */
.tezz-locations-grid {
  width: 100%;
  max-width: 1200px;
  /* Limit width */
  padding: 20px;
}

/* Location Box Styling - Glassmorphism style */
.tezz-location-box {
  background: rgba(10, 10, 10, 0.4);
  /* Dark translucent background */
  backdrop-filter: blur(10px);
  /* Glassmorphism effect */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle white border */
  border-radius: 12px;
  padding: 20px 25px;
  color: rgba(255, 255, 255, 0.85);
  /* Off-white text */
  transition: transform 0.3s ease,
    background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* For glow effect */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  /* Optional for consistent height */
}

/* Left teal border glow effect on hover */
.tezz-location-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  /* Hidden off-box */
  height: 100%;
  width: 5px;
  background-color: var(--ve-gold);
  /* Teal color */
  transition: left 0.3s ease;
}

/* Hover states */
.tezz-location-box:hover {
  transform: translateY(-5px);
  /* Lift box */
  background: rgba(20, 20, 20, 0.6);
  /* Darker on hover */
  border-color: rgba(214, 162, 34, 0.3);
  /* Teal border glow */
  box-shadow: 0 10px 30px rgba(214, 162, 34, 0.1);
  /* Soft glow shadow */
}

/* Show teal bar on hover */
.tezz-location-box:hover::before {
  left: 0;
}

/* Country Name */
.tezz-country {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

/* Address Details */
.tezz-address-line {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  /* Dimmed text for address */
  margin: 0;
}

/* Spacing for multiple address lines */
.tezz-address-line+.tezz-address-line {
  margin-top: 2px;
}

/* Small responsive tweak */
@media (max-width: 991px) {
  .tezz-locations-grid {
    padding-top: 100px;
    /* Add space for header/logo */
  }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section {
  padding: 100px 0;
}

.ve-section-header {
  margin-bottom: 60px;
}

.ve-section-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.1);
  color: var(--ve-gold);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.ve-section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ve-section-header h2 span {
  color: var(--ve-gold);
}

.ve-section-header p {
  font-size: 16px;
  color: var(--ve-text);
  max-width: 580px;
  margin: 0 auto;
}


/* ============================================================
   FOOTER
   ============================================================ */
/* --- Master Footer Base --- */

.tezz-master-footer h1 {
  color: #fff
}

.tezz-master-footer {
  background-color: #000;
  color: #666;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.tezz-hero-badge {
  background: rgba(0, 208, 165, 0.1);
  color: #00d0a5;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Gradient & Columns --- */
.tezz-gradient-text {
  background: linear-gradient(to right, #00d0a5, #00ffa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tezz-column-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.tezz-link-list {
  list-style: none;
  padding: 0;
}

.tezz-link-list li {
  margin-bottom: 12px;
}

.tezz-link-list a {
  text-decoration: none;
  color: #777;
  font-size: 0.9rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tezz-link-list a:hover {
  color: #fff;
  transform: translateX(5px);
  display: inline-block;
}

/* --- Input Group --- */
.tezz-input-group {
  display: flex;
  background: #111;
  padding: 8px;
  border-radius: 50px;
  border: 1px solid #222;
}

.tezz-field {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 20px;
  flex-grow: 1;
  outline: none;
}

.tezz-btn-submit {
  background: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.tezz-btn-submit:hover {
  background: #00d0a5;
  color: #000;
}

/* --- Enhanced Policy Bar --- */
.tezz-policy-nav a {
  text-decoration: none;
  color: #555;
  font-size: 0.8rem;
  transition: 0.3s;
  font-weight: 500;
}

.tezz-policy-nav a:hover {
  color: #fff;
}

.tezz-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
  margin: 0 15px;
  vertical-align: middle;
}

/* --- Contact Card --- */
.tezz-contact-card {
  background: linear-gradient(145deg, #0a0a0a, #000);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tezz-social-row a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 20px;
  opacity: 0.4;
  transition: 0.3s;
}

.tezz-social-row a:hover {
  opacity: 1;
  color: #00d0a5;
  transform: translateY(-3px);
  display: inline-block;
}

/* --- Marquee --- */
.tezz-marquee-wrapper {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tezz-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: tezzMarquee 25s linear infinite;
}

.tezz-marquee-item {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 60px;
  color: #444;
}

@keyframes tezzMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Massive Logo Signature --- */
.tezz-logo-footer-area {
  position: relative;
  padding: 10px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tezz-massive-wrapper {
  position: relative;
  text-align: center;
}

.tezz-massive-text {
  font-size: clamp(3rem, 13vw, 12rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -6px;
  line-height: 0.8;
  z-index: 2;
  position: relative;
}

.tezz-massive-reflection {
  font-size: clamp(3rem, 13vw, 12rem);
  font-weight: 800;
  letter-spacing: -6px;
  transform: scaleY(-1);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(10px);
  opacity: 0.4;
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  z-index: 1;
}

.tezz-glow-orb {
  position: absolute;
  bottom: 10%;
  width: 100%;
  height: 100px;
  background: var(--gradient);
  filter: blur(80px);
  z-index: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) {
  .ve-hero-left {
    padding: 70px 40px;
  }

  .ve-hero-left h1 {
    font-size: 50px;
  }

  .ve-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ve-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ve-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:991px) {
  .ve-hero {
    flex-direction: column;
    min-height: auto;
  }

  .ve-hero-left {
    flex: none;
    padding: 60px 30px 60px;
  }

  .ve-hero-right {
    flex: none;
    height: 350px;
  }

  .ve-nav,
  .ve-nav-cta {
    display: none;
  }

  .ve-toggler {
    display: flex;
  }

  .ve-whyus-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-newsletter-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ve-nl-form {
    width: 100%;
  }

  .ve-nl-form input {
    flex: 1;
    width: auto;
  }
}

@media (max-width:767px) {
  .ve-hero-left h1 {
    font-size: 38px;
  }

  .ve-services-grid,
  .ve-testi-grid,
  .ve-counter-grid {
    grid-template-columns: 1fr;
  }

  .ve-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ve-nav-wrap {
    padding: 0 20px;
  }

  .ve-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .ve-cta-content h2 {
    font-size: 28px;
  }

  .text-lg-right {
    text-align: left;
    margin-top: 20px;
  }

  .ve-counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ve-counter-item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area {
  display: none !important;
}

/* Ensure body offset for fixed navbar */
body {
  padding-top: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ve-page-hero {
  position: relative;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ve-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.6) 100%);
}

.ve-page-hero-content {
  position: relative;
  z-index: 2;
}

.ve-page-hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.15;
}

.ve-page-hero-content h1 span {
  color: var(--ve-gold);
}

.ve-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.ve-breadcrumb li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.ve-breadcrumb li::after {
  content: '/';
  margin-left: 10px;
}

.ve-breadcrumb li:last-child::after {
  display: none;
}

.ve-breadcrumb li a {
  color: var(--ve-gold);
  text-decoration: none;
}

.ve-breadcrumb li.active {
  color: rgba(255, 255, 255, 0.8);
}

.ve-post-meta-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ve-post-meta-hero span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ve-about-img-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.ve-about-img-1 {
  height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--ve-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.ve-about-ribbon {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--ve-gold);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.35);
}

.ve-about-ribbon strong {
  display: block;
  font-size: 36px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-about-ribbon span {
  font-size: 11px;
  font-weight: 700;
  color: var(--ve-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-about-text {
  padding-left: 50px;
}

.ve-about-text h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ve-about-text h2 span {
  color: var(--ve-gold);
}

.ve-lead {
  font-size: 17px;
  color: var(--ve-dark);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}

.ve-about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ve-af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ve-text);
}

.ve-af-item i {
  color: var(--ve-gold);
  font-size: 14px;
}

/* MVV Cards */
.ve-mvv-section {
  background: var(--ve-dark);
  padding: 80px 0;
}

.ve-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ve-mvv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ve-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--ve-trans);
}

.ve-mvv-card:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.3);
}

.ve-mvv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--ve-gold);
}

.ve-mvv-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ve-mvv-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* Team */
.ve-team-section {
  background: var(--ve-light);
}

.ve-team-card {
  background: #fff;
  border-radius: var(--ve-radius);
  overflow: hidden;
  box-shadow: var(--ve-shadow);
  transition: var(--ve-trans);
  margin-bottom: 30px;
}

.ve-team-card:hover {
  transform: translateY(-5px);
}

.ve-team-img {
  height: 280px;
  background-size: cover;
  background-position: center top;
}

.ve-team-info {
  padding: 22px 24px;
}

.ve-team-info h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
}

.ve-team-info span {
  font-size: 13px;
  color: var(--ve-text);
  display: block;
  margin-bottom: 14px;
}

.ve-team-social {
  display: flex;
  gap: 8px;
}

.ve-team-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--ve-light);
  color: var(--ve-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-team-social a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section {
  background: var(--ve-dark);
  padding: 90px 0;
}

.ve-process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.ve-process-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ve-radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: var(--ve-trans);
}

.ve-process-step:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.3);
}

.ve-process-num {
  font-size: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.3);
  margin-bottom: 12px;
  line-height: 1;
}

.ve-process-step h5 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.ve-process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.ve-process-arrow {
  font-size: 24px;
  color: rgba(212, 160, 23, 0.4);
  flex-shrink: 0;
}

/* FAQ */
.ve-faq-section {
  background: var(--ve-light);
}

.ve-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--ve-border);
  overflow: hidden;
}

.ve-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}

.ve-faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-dark);
}

.ve-faq-q i {
  color: var(--ve-gold);
  font-size: 14px;
  flex-shrink: 0;
}

.ve-faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.8;
  display: none;
}

.ve-faq-item.open .ve-faq-a {
  display: block;
}

.ve-faq-item.open .ve-faq-q {
  border-bottom: 1px solid var(--ve-border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ve-contact-cards-section {
  background: url(../img/home/back-img.jpg);
  background-size: cover;
  padding: 3rem 0;
  margin-top: -1px;
}

.ve-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ve-contact-info-card {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-contact-info-card:last-child {
  border-right: none;
}

.ve-ci-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--ve-gold);
}

.ve-contact-info-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.ve-contact-info-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.7;
}

.ve-contact-info-card small {
  font-size: 12px;
  opacity: 0.6;
}

.ve-contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--ve-shadow);
}

.ve-contact-form-wrap h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
}

.ve-contact-form-wrap h2 span {
  color: var(--ve-gold);
}

.ve-contact-form-wrap>p {
  font-size: 15px;
  color: var(--ve-text);
  margin-bottom: 30px;
}

.ve-contact-form .ve-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ve-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ve-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
  border: 1px solid var(--ve-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ve-dark);
  outline: none;
  transition: var(--ve-trans);
  font-family: 'DM Sans', sans-serif;
  background: #fff;
}

.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
  border-color: var(--ve-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.ve-form-group textarea {
  resize: vertical;
}

.ve-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 20px;
}

.ve-ca-box {
  background: var(--ve-dark);
  border-radius: 14px;
  padding: 32px;
}

.ve-ca-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.ve-ca-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-ca-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ve-ca-list li i {
  color: var(--ve-gold);
}

.ve-ca-hours {
  background: var(--ve-light);
  border-radius: 14px;
  padding: 28px;
}

.ve-ca-hours h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ve-ca-hours h5 i {
  color: var(--ve-gold);
}

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

.ve-ca-hours ul li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ve-text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-ca-hours ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ve-ca-hours ul li strong {
  color: var(--ve-dark);
  font-weight: 700;
}

.ve-ca-social {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--ve-border);
}

.ve-ca-social h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 16px;
}

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.ve-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--ve-light);
  color: var(--ve-dark);
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
}

.ve-pagination a:hover,
.ve-pagination a.active {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

.ve-sidebar {
  position: sticky;
  top: 90px;
}

.ve-sidebar-widget {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--ve-border);
}

.ve-sidebar-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ve-gold);
  display: inline-block;
}

.ve-search-box {
  display: flex;
  border: 1px solid var(--ve-border);
  border-radius: 8px;
  overflow: hidden;
}

.ve-search-box input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}

.ve-search-box button {
  background: var(--ve-gold);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  color: var(--ve-dark);
  font-size: 14px;
}

.ve-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-cat-list li {
  border-bottom: 1px solid var(--ve-border);
}

.ve-cat-list li:last-child {
  border-bottom: none;
}

.ve-cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ve-text);
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-cat-list li a:hover {
  color: var(--ve-gold);
}

.ve-cat-list li a span {
  background: var(--ve-light);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ve-dark);
}

.ve-recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ve-rp-img {
  width: 64px;
  height: 54px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-recent-post a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
  transition: var(--ve-trans);
}

.ve-recent-post a:hover {
  color: var(--ve-gold);
}

.ve-recent-post span {
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ve-tags a {
  background: var(--ve-light);
  color: var(--ve-text);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
}

.ve-tags a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Single post */
.ve-article {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--ve-shadow);
  margin-bottom: 40px;
}

.ve-article-featured {
  height: 380px;
  background-size: cover;
  background-position: center;
}

.ve-article-body {
  padding: 40px;
}

.ve-article-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin: 28px 0 12px;
}

.ve-article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ve-text);
  margin-bottom: 16px;
}

.ve-article-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ve-dark);
  line-height: 1.7;
  border-left: 4px solid var(--ve-gold);
  padding-left: 20px;
  margin-bottom: 28px;
}

.ve-blockquote {
  background: var(--ve-light);
  border-left: 4px solid var(--ve-gold);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 30px 0;
}

.ve-blockquote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.ve-blockquote cite {
  font-size: 13px;
  color: var(--ve-text);
  font-style: normal;
}

.ve-article-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--ve-border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ve-article-tags strong {
  font-size: 13px;
  color: var(--ve-dark);
  font-weight: 700;
}

.ve-article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.ve-article-share strong {
  font-size: 13px;
  color: var(--ve-dark);
  font-weight: 700;
}

.ve-article-share a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ve-light);
  color: var(--ve-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-article-share a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
}

/* Comments */
.ve-comments-section {
  margin-bottom: 40px;
}

.ve-comments-section h4,
.ve-comment-form-wrap h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 24px;
}

.ve-comment {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-comment.ve-comment-reply {
  margin-left: 60px;
}

.ve-comment:last-child {
  border-bottom: none;
}

.ve-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-comment-body {
  flex: 1;
}

.ve-comment-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.ve-comment-meta strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
}

.ve-comment-meta span {
  font-size: 12px;
  color: #aaa;
}

.ve-comment-body p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin-bottom: 10px;
}

.ve-reply-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--ve-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-comment-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--ve-shadow);
}

/* Responsive additions */
@media(max-width:991px) {
  .ve-about-text {
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .ve-contact-info-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ve-mvv-grid {
    grid-template-columns: 1fr;
  }

  .ve-contact-aside {
    padding-left: 0;
    margin-top: 30px;
  }

  .ve-process-grid {
    flex-direction: column;
  }

  .ve-process-arrow {
    transform: rotate(90deg);
  }

  .ve-page-hero-content h1 {
    font-size: 36px;
  }
}

@media(max-width:767px) {
  .ve-contact-form .ve-form-row {
    grid-template-columns: 1fr;
  }

  .ve-contact-form-wrap {
    padding: 28px;
  }

  .ve-article-body {
    padding: 24px;
  }

  .ve-about-img-stack {
    padding-bottom: 30px;
    padding-right: 30px;
  }

  .ve-about-img-2 {
    width: 150px;
    height: 120px;
  }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  margin-top: 72px;
}

.ve-page-hero-sm {
  min-height: 460px;
}

.ve-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.85) 100%);
}

.ve-page-hero-content {
  position: relative;
  z-index: 2;
}

.ve-page-hero-content h1 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin: 10px 0 18px;
  line-height: 1.15;
}

.ve-page-hero-content h1 span {
  color: var(--ve-gold);
}

.ve-post-meta-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ve-post-meta-hero span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Breadcrumb */
.ve-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.ve-breadcrumb li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.ve-breadcrumb li a {
  color: var(--ve-gold);
  text-decoration: none;
}

.ve-breadcrumb li a:hover {
  color: #fff;
}

.ve-breadcrumb li.active {
  color: rgba(255, 255, 255, 0.5);
}

.ve-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.3);
}

/* About Page */
.ve-about-img-stack {
  position: relative;
  padding: 0 40px 40px 0;
}

.ve-about-img-1 {
  height: 400px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 230px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 4px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ve-about-ribbon {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--ve-gold);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
}

.ve-about-ribbon strong {
  display: block;
  font-size: 36px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-about-ribbon span {
  font-size: 11px;
  font-weight: 700;
  color: var(--ve-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-about-text {
  padding-left: 40px;
}

.ve-about-text h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
}

.ve-about-text h2 span {
  color: var(--ve-gold);
}

.ve-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ve-dark);
  margin-bottom: 14px;
  line-height: 1.7;
}

.ve-about-text>p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.ve-about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.ve-af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ve-dark);
  font-weight: 500;
}

.ve-af-item i {
  color: var(--ve-gold);
  font-size: 14px;
}

/* MVV Section */
.ve-mvv-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding: 80px 0;
}

.ve-mvv-section .ve-section-header h2 {
  color: #fff;
}

.ve-mvv-section .ve-section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.ve-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.ve-mvv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ve-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--ve-trans);
}

.ve-mvv-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.ve-mvv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--ve-dark);
  margin: 0 auto 20px;
}

.ve-mvv-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ve-mvv-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 0;
}

/* Team Cards */
.ve-team-section {
  background: var(--ve-light);
}

.ve-team-card {
  background: #fff;
  border-radius: var(--ve-radius);
  overflow: hidden;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
  margin-bottom: 28px;
}

.ve-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ve-shadow);
}

.ve-team-img {
  height: 260px;
  background-size: cover;
  background-position: center top;
}

.ve-team-info {
  padding: 22px;
  text-align: center;
}

.ve-team-info h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
}

.ve-team-info span {
  font-size: 13px;
  color: var(--ve-text);
  display: block;
  margin-bottom: 14px;
}

.ve-team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ve-team-social a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--ve-light);
  color: var(--ve-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-team-social a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
}

/* Process Steps */
.ve-process-section {
  background: var(--ve-light);
  padding: 80px 0;
}

.ve-process-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 50px;
  flex-wrap: wrap;
}

.ve-process-step {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--ve-border);
}

.ve-process-num {
  font-size: 42px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-gold);
  line-height: 1;
  margin-bottom: 14px;
}

.ve-process-step h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.ve-process-step p {
  font-size: 13px;
  color: var(--ve-text);
  line-height: 1.7;
  margin: 0;
}

.ve-process-arrow {
  font-size: 24px;
  color: var(--ve-gold);
  padding: 0 16px;
  flex-shrink: 0;
}

/* FAQ */
.ve-faq-section {
  background: #fff;
}

.ve-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ve-faq-item {
  border-bottom: 1px solid var(--ve-border);
}

.ve-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
}

.ve-faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-dark);
}

.ve-faq-q i {
  font-size: 14px;
  color: var(--ve-gold);
  flex-shrink: 0;
  transition: var(--ve-trans);
}

.ve-faq-item.open .ve-faq-q i {
  transform: rotate(45deg);
}

.ve-faq-a {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.8;
  padding: 0 0 16px;
  display: none;
}

.ve-faq-item.open .ve-faq-a {
  display: block;
}



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

.ve-contact-info-card {
  background: #fff;
  border-radius: var(--ve-radius);
  text-align: center;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
  color: #000;
}

.ve-contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ve-shadow);
}

.ve-ci-icon {
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ve-gold);
  margin: 0 auto 18px;
}

.ve-contact-info-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.ve-contact-info-card p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin: 0;
}

/* Contact Form Wrap */
.ve-contact-form-wrap h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.ve-contact-form-wrap h2 span {
  color: var(--ve-gold);
}

.ve-contact-form-wrap>p {
  font-size: 15px;
  color: var(--ve-text);
  margin-bottom: 28px;
}

.ve-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ve-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ve-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ve-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
  border: 2px solid var(--ve-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-dark);
  background: #fff;
  outline: none;
  transition: var(--ve-trans);
}

.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
  border-color: var(--ve-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.ve-form-group textarea {
  resize: vertical;
}

/* Contact Aside */
.ve-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 30px;
}

.ve-ca-box {
  background: #ededed;
  border-radius: var(--ve-radius);
  padding: 28px;
  border: 1px solid var(--ve-border);
}

.ve-ca-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 18px;
}

.ve-ca-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-ca-list li {
  font-size: 14px;
  color: var(--ve-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ve-ca-list li i {
  color: var(--ve-gold);
}

.ve-ca-hours {
  background: var(--ve-dark);
  border-radius: var(--ve-radius);
  padding: 24px;
}

.ve-ca-hours h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ve-ca-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-ca-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.ve-ca-hours ul li:last-child {
  border-bottom: none;
}

.ve-ca-hours ul li span {
  color: rgba(255, 255, 255, 0.5);
}

.ve-ca-hours ul li strong {
  color: #fff;
}

.ve-ca-social h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-dark);
  margin-bottom: 12px;
}

/* Blog / Sidebar */
.ve-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
}

.ve-sidebar-widget {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 28px;
  border: 1px solid var(--ve-border);
}

.ve-sidebar-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ve-gold);
  display: inline-block;
}

.ve-search-box {
  display: flex;
  border: 2px solid var(--ve-border);
  border-radius: 8px;
  overflow: hidden;
}

.ve-search-box input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}

.ve-search-box button {
  background: var(--ve-gold);
  border: none;
  padding: 0 16px;
  color: var(--ve-dark);
  cursor: pointer;
  font-size: 14px;
  transition: var(--ve-trans);
}

.ve-search-box button:hover {
  background: var(--ve-dark);
  color: #fff;
}

.ve-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ve-text);
  text-decoration: none;
  border-bottom: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-cat-list li:last-child a {
  border-bottom: none;
}

.ve-cat-list li a span {
  background: var(--ve-light);
  color: var(--ve-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.ve-cat-list li a:hover {
  color: var(--ve-gold);
}

.ve-recent-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ve-recent-post:last-child {
  margin-bottom: 0;
}

.ve-rp-img {
  width: 65px;
  height: 50px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-recent-post div a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.4;
}

.ve-recent-post div a:hover {
  color: var(--ve-gold);
}

.ve-recent-post div span {
  font-size: 12px;
  color: var(--ve-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ve-tags a {
  background: var(--ve-light);
  color: var(--ve-text);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-tags a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Pagination */
.ve-pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ve-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--ve-light);
  border: 1px solid var(--ve-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ve-text);
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-pagination a.active,
.ve-pagination a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Article */
.ve-article {
  background: #fff;
  border-radius: var(--ve-radius);
  overflow: hidden;
  border: 1px solid var(--ve-border);
  margin-bottom: 40px;
}

.ve-article-featured {
  height: 380px;
  background-size: cover;
  background-position: center;
}

.ve-article-body {
  padding: 36px;
}

.ve-article-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ve-dark);
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-article-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin: 28px 0 12px;
}

.ve-article-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ve-text);
  margin-bottom: 16px;
}

.ve-blockquote {
  background: var(--ve-light);
  border-left: 4px solid var(--ve-gold);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.ve-blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--ve-dark);
  font-weight: 500;
  margin: 0 0 8px;
}

.ve-blockquote cite {
  font-size: 13px;
  color: var(--ve-gold);
  font-weight: 700;
  font-style: normal;
}

.ve-article-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ve-article-tags strong {
  font-size: 14px;
  color: var(--ve-dark);
}

.ve-article-tags a {
  background: var(--ve-light);
  color: var(--ve-text);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-article-tags a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

.ve-article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.ve-article-share strong {
  font-size: 14px;
  color: var(--ve-dark);
}

.ve-article-share a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ve-light);
  color: var(--ve-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
}

.ve-article-share a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Comments */
.ve-comments-section {
  margin-bottom: 40px;
}

.ve-comments-section h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 24px;
}

.ve-comment {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.ve-comment-reply {
  margin-left: 50px;
}

.ve-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-comment-body {
  flex: 1;
  background: var(--ve-light);
  border-radius: 10px;
  padding: 18px;
}

.ve-comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.ve-comment-meta strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
}

.ve-comment-meta span {
  font-size: 13px;
  color: var(--ve-text);
}

.ve-comment-body p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin-bottom: 10px;
}

.ve-reply-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-gold);
  text-decoration: none;
}

.ve-reply-btn:hover {
  color: var(--ve-dark);
}

/* Comment form */
.ve-comment-form-wrap h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 24px;
}

/* Elements page */
.ve-elements-section {
  background: #fff;
}

.ve-el-block {
  margin-bottom: 70px;
}

.ve-el-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ve-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ve-el-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.ve-el-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Why us section */
.ve-whyus-section {
  background: #fff;
}

.ve-whyus-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.ve-whyus-img-main {
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-whyus-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ve-gold);
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
  min-width: 160px;
}

.ve-whyus-badge strong {
  display: block;
  font-size: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-whyus-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ve-dark);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-whyus-content {
  padding-left: 40px;
}

.ve-whyus-content h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ve-whyus-content h2 span {
  color: var(--ve-gold);
}

/* Responsive extras */
@media(max-width:991px) {
  .ve-mvv-grid {
    grid-template-columns: 1fr;
  }

  .ve-contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .ve-process-grid {
    flex-direction: column;
  }

  .ve-process-arrow {
    transform: rotate(90deg);
  }

  .ve-about-text,
  .ve-whyus-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .ve-contact-aside {
    padding-left: 0;
    margin-top: 30px;
  }

  .ve-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:767px) {
  .ve-page-hero-content h1 {
    font-size: 30px;
  }

  .ve-testi-grid {
    grid-template-columns: 1fr;
  }

  .ve-nl-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .ve-nl-form input,
  .ve-nl-form button {
    width: 100%;
    border-radius: 8px !important;
  }

  .ve-about-img-2 {
    display: none;
  }
}


/* breadcrumb */
.breadcrumb {
  background: url('../img/home/hero_background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 6rem;
  padding: 4rem 0;
}

/* services page */

/* Hero Section */
.service-hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top, #1a0b2e 0%, #050505 70%);
}

.text-gradient {
  background: linear-gradient(90deg, var(--gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-gold {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  border: 1px solid var(--gold);
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

/* Services Grid */
.services-detail-section {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-detail-card {
  background: var(--card-bg);
  border: 1px solid #222;
  padding: 40px;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.service-detail-card.highlight {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  border-color: var(--purple-glow);
}

.card-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 25px;
}

.service-detail-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-detail-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.service-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.service-list li i {
  color: var(--gold);
  margin-right: 10px;
}

.service-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--gold);
}

/* CTA Box */
.cta-box {
  background: linear-gradient(90deg, #1a0b2e, #050505);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  margin: 80px 0;
}

.btn-main {
  background: var(--gold);
  color: black;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin: 10px;
}

/* service page  */

.main-card {
  background-color: var(--tezz-dark-grey);
  box-shadow: var(--ve-shadow);
}

/* Left side with the blue brand patterns */
.brand-side {
  /* Mimicking the organic shapes in the screenshot */
  background-image: url(../img/home/back-home.jpg);
  position: relative;
  transition: var(--ve-trans);
}

/* Rounded Logo Box */
.logo-box {
  background-color: var(--tezz-white);
  padding: 12px;
  border-radius: var(--ve-radius);
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-box img {
  width: 150px;
  height: auto;
}

/* Finsweet Pill Button */
.finsweet-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--ve-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--ve-trans);
}

.finsweet-tag a {
  color: var(--tezz-yellow);
}

.finsweet-tag:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Right Side Styling */
.info-side {
  background-color: var(--tezz-white);
  /* Dark gray for the info section */
}

.feat-item {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-item i {
  font-size: 1.2rem;
}

/* Custom White Button */
.btn-white-custom {
  background-color: var(--ve-white);
  color: var(--ve-dark);
  border-radius: 10px;
  transition: var(--ve-trans);
  border: none;
}

.btn-white-custom:hover {
  background-color: var(--ve-light);
  transform: translateY(-2px);
}

/* Responsiveness adjustments */
@media (max-width: 991.98px) {
  .brand-side {
    min-height: 350px;
    background-image: none;
    /* Simplify on mobile */
  }
}

/* services page section 1 */

.story-section {
  /* Subtle gradient background to match screenshot glow */
  padding: 4rem 0;
  /* background: radial-gradient(circle at top right, var(--ve-gold), #fff 40%); */
}

.icon-proof-testimonial {
  position: absolute;
  left: -5%;
  top: -75%;
  font-size: 10rem;
  color: rgb(23 212 64 / 27%);
}

.main-card-story {}

.text-mint {
  color: var(--text-mint) !important;
}

/* Badge at the top */
.badge-story {
  background-color: var(--bg-mint-soft);
  color: #2d9d80;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

/* The vertical accent line next to the quote */
.quote-box {
  border-left: 4px solid var(--text-mint);
}


/* Stats Cards */
.stat-card {
  transition: var(--ve-trans);
  border: 1px solid #eee !important;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--text-mint) !important;
}

.stat-card h3 {
  margin-bottom: 0;
  letter-spacing: -1px;
}

/* Custom Button */
.btn-outline-dark {
  border: 1px solid #ddd;
  color: #333;
  font-size: 0.95rem;
  transition: var(--ve-trans);
}

.stat-card p {
  color: #000;
}

.btn-outline-dark:hover {
  background-color: #333;
  color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .display-5 {
    font-size: 1.8rem;
  }

  .quote-box p {
    font-size: 0.95rem;
  }
}

.feature-card-back {
  background: rgb(23 212 64 / 10%);
  padding: 3rem 0;

}

.feature-card {
  transition: var(--ve-trans);
  border: 1px solid #68d84f;
  background: #68d84f8f;
  border-radius: 10px
}

/* Image Placeholder Styling */
.feature-img-wrapper {
  aspect-ratio: 16 / 10;
  transition: var(--ve-trans);
}

.feature-img-wrapper img {
  object-fit: cover;
  height: 100%;
}

.feature-card:hover .feature-img-wrapper {
  transform: translateY(-5px);
  filter: brightness(1.02);
  padding: 1rem;
}

.content-feature {
  padding: 1rem;
}

.content-feature h3 {
  color: var(--ve-dark)
}

/* Text Colors */
.text-secondary-custom {
  color: #ffffff;
  /* Softer gray for paragraph text on black bg */
  line-height: 1.6;
}

/* Learn More Link & Yellow Circle */
.learn-more-link {
  color: var(--ve-white);
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--ve-trans);
}

.arrow-circle {
  background-color: var(--tezz-yellow);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--ve-trans);
}

.learn-more-link:hover {
  color: var(--tezz-yellow);
}

.learn-more-link:hover .arrow-circle {
  transform: translateX(5px);
  background-color: var(--ve-white);
}


/* Mobile adjustments */
@media (max-width: 991px) {
  .feature-card {
    margin-bottom: 2rem;
  }
}

/* Underline Effect */
.highlight-underline {
  position: relative;
  display: inline-block;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 8px;
  background-color: var(--tezz-yellow);
  z-index: -1;
}

/* Features List */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.check-icon {
  background-color: var(--tezz-yellow);
  color: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-section {
  background: linear-gradient(to right, transparent, transparent, #000, #000, #000),
    url(../img/home/back-collab.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0% 0%;
}

/* Pricing Card */
.pricing-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.selector-box {
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-radius: 8px;
}

.price-display-box {
  border: 1px solid #eee;
  border-radius: 8px;
}

.btn-yellow-buy {
  background-color: var(--tezz-yellow);
  border: none;
  border-radius: 50px;
  transition: var(--ve-trans);
}

.btn-yellow-buy:hover {
  background-color: #ebd01a;
  transform: scale(1.02);
}

/* Links */
.see-all-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.arrow-circle {
  background-color: var(--tezz-yellow);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiny-text {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Responsiveness */
@media (max-width: 991px) {
  .pricing-card {
    margin-top: 2rem;
  }
}


.highlight-underline {
  position: relative;
  z-index: 1;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background-color: var(--tezz-yellow);
  z-index: -1;
}

.tiny-text {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
  min-height: 40px;
}

.plan-column.highlight-wrapper {
  background: var(--tezz-yellow);
}

.pricing-container {
  padding: 5rem 0;
  background: var(#fff);
}

/* Plan Columns */
.plan-column {
  background-color: #93e68e;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--ve-dark);
}

.price-box {
  border: 1px solid var(--ve-dark);
  background-color: var(--tezz-white);
  padding: 15px;
  border-radius: 8px;
}

.price-box.highlighted {
  border-color: #333;
}

/* Feature List */
.feature-list li {
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ve-dark);
  padding-bottom: 8px;
  color: var(--ve-text);
}

.feature-list li i.bi-check {
  margin-right: 10px;
  font-size: 1.1rem;
}

.feature-list li.disabled {
  color: #ccc;
  visibility: hidden;
  text-decoration: none;
}

.feature-list li.disabled i {
  color: #ccc;
  margin-right: 10px;
}

/* Highlighted Column Styles */
.best-value-tag {
  background-color: var(--highlight-blue);
  font-size: 0.75rem;
  font-weight: bold;
  border: 1px solid #000;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.highlighted-card {
  border: 1px solid #000 !important;
  /* transform: scale(1.03); */
  position: relative;
  z-index: 10;
  border-radius: 0 0 10px 10px;
}

.btn-yellow {
  background-color: var(--tezz-yellow);
  border: none;
}

.btn-yellow:hover {
  background-color: #ebd01a;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .highlighted-card {
    transform: none;
  }

  .plan-column {
    border: 1px solid #ddd !important;
  }
}

.disclaimer {
  padding: 3rem 0;
  background: var(--tezz-yellow);
}

.disclaimer ol li,
.disclaimer ol li a {
  font-size: 0.7rem;
  color: #000
}

.feature-pills-section {
  /* padding: 2rem 0; */
  background: var(--ve-gold);
}

.registration-card {
  max-width: 500px;
  margin: 0 auto;
  background: #f5f5f5;
}

/* Custom Input Styling */
.form-control:focus {
  background-color: #f1f1f1 !important;
  box-shadow: none;
  border: 1px solid #ddd !important;
}

/* "OR" Separator */
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: #888;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #eee;
}

.separator span {
  padding: 0 15px;
  font-size: 0.9rem;
}

.terms-text {
  font-size: 0.75rem;
  line-height: 1.5;
}

.terms-text a {
  color: #121212;
  text-decoration: underline;
}

/* Testimonial Side */
.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-section h2 {
  color: #121212;
  font-weight: 600;
}

.grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Button Refinement */
.btn-dark {
  background-color: #121212;
  border-radius: 8px;
}

.btn-outline-secondary,
.btn-outline-dark {
  border-radius: 8px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .testimonial-section {
    padding-top: 50px;
    border-top: 1px solid #eee;
  }
}

/* service page  */

/* Feature Pill Container */
.feature-pill {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Image Wrappers (Placeholders) */
.img-wrapper {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  aspect-ratio: 16 / 10;
  /* Ensures wrappers stay proportional */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Specific styling to match the visual complexity of the workflow graphic */
.workflow-img-wrapper {
  background: radial-gradient(circle at top right, #f2faff, #fff 50%);
}

/* Content & Typography */
.text-secondary-custom {
  color: var(--ve-dark2);
  line-height: 1.6;
}

/* Large Heading refinement */
.display-5 {
  letter-spacing: -1.5px;
}

.display-4 {
  font-weight: 800
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
  .display-5 {
    font-size: 2.2rem;
  }

  .text-secondary-custom {
    font-size: 1rem;
  }

  .img-wrapper {
    margin-bottom: 2rem !important;
  }
}


.text-teal {
  color: #000 !important;
  /* The signature green-teal color */
}

/* Icon Styling */
.icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #e6fbf7;
  /* Light teal background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #000;
  position: relative;
}

/* Optional: subtle pulse effect to match the screenshot's glow */
.icon-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--tezz-yellow);
  opacity: 0.1;
  transform: scale(1.2);
}

.step-card {
  background: #fff;
  height: 100%;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.tiny-text {
  font-size: 0.75rem;
  color: var(--ve-text)
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .col-lg-3 {
    margin-bottom: 2rem;
  }
}


/* Sidebar Sticky Logic */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding: 2rem;
  /* Adjust this based on your header height */
  z-index: 10;
}

/* Plan Details Styling */
.plan-details li {
  display: flex;
  align-items: flex-start;
}

/* Tiny text for disclaimers */
.tiny-text {
  font-size: 0.7rem;
}

/* On mobile, we might want to hide the sticky sidebar or make it a normal card */
@media (max-width: 991px) {
  .sticky-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

/* Button Customization to match your screenshot styles */
.btn-warning {
  background-color: #FFE01B;
  border: none;
  color: #000;
}

.btn-warning:hover {
  background-color: #ebd01a;
}

/* Card Wrapper Logic */
.cards-wrapper {
  position: relative;
  z-index: 1;
}

/* Base Card Styling */
.status-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Very subtle default border */
}

/* Status Icons */
.status-icon i {
  font-size: 3rem !important;
}

/* --- Specific Green Card styling --- */
.for-you-card {
  /* Rich green background gradient */
  background: var(--ve-dark);

  transform: rotate(-7deg);
}

/* --- Specific Red Card styling --- */
.not-for-you-card {
  background: var(--ve-dark2);
  transform: rotate(7deg);
  box-shadow: 0 10px 40px rgba(125, 18, 28, 0.2);
}

/* Feature List alignment */
.feature-list li {
  display: flex;
  align-items: flex-start;
}

.feature-list li i {
  margin-top: 2px;
}

/* Hover effect */
.status-card:hover {
  transform: translateY(-5px);
}

.not-for-you-card:hover {
  transform: rotate(3deg) translateY(-5px);
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
  .cards-wrapper .row {
    gap: 2rem;
  }

  .not-for-you-card {
    transform: none;
    /* Straighten on mobile */
  }

  .not-for-you-card:hover {
    transform: translateY(-5px);
  }
}

.cta-access-pass {
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* Background Placeholder (If you don't have the final image ready) */
.bg-custom-marquee {
  /* Mimics the visual depth of the image */
  background: linear-gradient(rgb(23 212 64 / 57%), rgb(23 212 64 / 53%)),
    url(../img/home/seo.jpg);
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* All-Access Button Styling */
.btn-all-access {
  background: #fff;
  color: #121212;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-all-access:hover {
  background: #f1f1f1;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Large Heading Refinement */
.display-5 {
  letter-spacing: -1.5px;
}

/* Responsiveness Adjustments */
@media (max-width: 991px) {
  .bg-custom-marquee {
    text-align: center;
  }

  .display-5 {
    font-size: 2rem;
  }

  /* Center the button on mobile */
  .cta-access-pass .text-lg-end {
    justify-content: center;
  }
}

.back-overview {
  padding: 2rem;
  background: var(--ve-dark2);
  color: #fff !important;
}

.back-overview h4 {
  color: var(--ve-dark)
}


.tiny-text {
  font-size: 0.7rem;
}

/* Custom form control focus states */
.form-control:focus,
.form-select:focus {
  background-color: transparent !important;
  border-color: #000 !important;
  box-shadow: none !important;
  color: white !important;
}

.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

.payment-method-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method-btn:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Background gradient for the summary side */
.checkout-summary-content {
  background: radial-gradient(circle at bottom left, rgba(13, 110, 253, 0.05), transparent 40%);
}


/* Main Container Glass */
.glass-container {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Left Panel Styling */
.summary-panel {
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid var(--glass-border);
}

/* Plan Cards */
.plan-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.plan-card.active {
  border-color: var(--accent);
  background: rgba(75, 0, 255, 0.1);
}

/* Custom Radios */
.glass-radio-outer {
  width: 20px;
  height: 20px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card.active .glass-radio-outer {
  border-color: white;
}

.glass-radio-inner {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

/* Input Styling */
.input-glass {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  transition: 0.3s;
}

.input-glass:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  outline: none;
}

.label-glass {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-bottom: 8px;
  display: block;
}

/* Tabs */
.tab-glass {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
}

.tab-glass.active {
  background: white;
  color: black;
  font-weight: 700;
}

/* Submit Button */
.btn-glass-submit {
  background: #fff;
  color: #000;
  border: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glass-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Tiny Utilities */
.tiny-text {
  font-size: 0.75rem;
}

.logo-orb {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #4b00ff, #00d2ff);
  border-radius: 50%;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .glass-container {
    border-radius: 0;
    border: none;
  }

  .summary-panel {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
}


/* cart page  */
.steps-cart {
  background: linear-gradient(rgb(23 212 64 / 57%), rgb(23 212 64 / 53%)),
    url(../img/home/seo.jpg);
  background-size: cover;
  padding: 2rem;
}

.ve-progress-wrapper {
  padding: 2rem
}

.ve-progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

/* The horizontal lines */
.ve-progress-line {
  position: absolute;
  top: 25px;
  /* Half of icon height */
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ve-dark);
  z-index: 1;
}

.ve-progress-fill {
  height: 100%;
  background: var(--ve-dark2);
  box-shadow: 0 0 15px var(--ve-dark2);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Step */
.ve-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}

.ve-step-icon {
  width: 50px;
  height: 50px;
  background: var(--tezz-dark);
  border: 2px solid var(--tezz-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tezz-white);
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.ve-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

/* Active State */
.ve-step.active .ve-step-icon {
  border-color: var(--tezz-green);
  color: var(--tezz-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  background: #000;
}

.ve-step.active .ve-step-label {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Completed State */
.ve-step.complete .ve-step-icon {
  background: var(--tezz-green);
  border-color: var(--tezz-green);
  color: var(--tezz-dark);
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--ve-dark);
  /* var(--ve-dark) */
  margin-right: 1rem;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

#step-1-wrapper {
  padding: 1rem;
  background: var(--ve-gold2)
}

.quantity-picker {
  background: #f8f9fa;
}

#upsell-carousel .item {
  text-align: center;
  transition: transform 0.3s ease;
}

#upsell-carousel .item:hover {
  transform: translateY(-5px);
}


#service-carousel .item {
  text-align: center;
  transition: transform 0.3s ease;
}

#service-carousel .item:hover {
  transform: translateY(-5px);
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #67e084 !important;
  /* var(--tezz-yellow) */
}

.service-details-section {
  background-color: var(--ve-gold2);
  font-family: 'DM Sans', sans-serif;
}

/* Sidebar Image Styling */
.badge-discount {
  font-size: 12px;
  letter-spacing: 1px;
}

/* Quantity Button Styling */
.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--tezz-yellow);
  border-color: var(--ve-dark);
}

/* Button Customization */
.btn-cart {
  background-color: #fff;
  color: var(--ve-dark);
  border: 2px solid var(--ve-dark);
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-cart:hover {
  background-color: var(--ve-dark);
  color: #fff;
}

.btn-buy {
  background-color: var(--btn-buy);
  color: #000;
  border: 2px solid var(--btn-buy);
  border-radius: 8px;
}

.btn-buy:hover {
  background-color: #55c76f;
  border-color: #55c76f;
}

/* Table Styling */
.table thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #eee;
}

.table td {
  padding: 1rem;
  font-size: 0.95rem;
  vertical-align: middle;
}


/* logo client */
:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {}

* {
  box-sizing: border-box;
}

.logo-back {
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--gap);
  width: 100%;
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ve-dark);
  background-color: var(--ve-dark);
}

.img-logo-plat img {
  width: 100px;
  height: auto;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(var(--mask-direction, to right),
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 80%,
      hsl(0 0% 0% / 0));
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }

  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Element styles */
.marquee-plat svg {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--ve-dark);
  background: var(--ve-dark);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.back-plat {
  background: var(--ve-dark);
  padding: 3rem 0;
}

/* pain points  */

.ecom-pain-section {
  padding: 4rem 0;
  background-color: var(--ve-gold2);
}

.pain-point-diagram {
  position: relative;
  user-select: none;
}

.center-ring-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-color-ring {
  width: var(--ring-size);
  height: var(--ring-size);
  border: 15px solid rgba(23, 212, 64, 0.8);
  /* Light green background */
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 15px rgba(23, 212, 64, 0.8);
}

/* Huge Question Mark in center */
.huge-question-mark {
  font-size: 10rem;
  font-weight: 800;
  color: var(--ve-dark);
  line-height: 1;
}

/* CARD & ICON GENERIC STYLING */
.pain-card {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.pain-card .card {
  max-width: 350px;
}

.pain-card .card p {
  color: var(--ve-dark)
}

.icon-circle-pain {
  width: 60px;
  height: 60px;
  background: var(--ve-gold);
  /* border: 2px solid var(--ve-dark); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  right: -70px;
  position: absolute;
  color: var(--ve-white);
  font-weight: bolder;
  box-shadow: 0 4px 15px rgba(23, 212, 64, 0.8);
}

.icon-circle-pain-1 {
  width: 60px;
  height: 60px;
  background: var(--ve-gold);
  /* border: 2px solid var(--ve-dark); */
  box-shadow: 0 4px 15px rgba(23, 212, 64, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  left: -70px;
  position: absolute;
  color: var(--ve-white);
  font-weight: bolder;
}

/* SPECIFIC POSITIONING - LARGE SCREENS ONLY */
@media (min-width: 992px) {
  .center-ring-wrapper {
    opacity: 1;
  }

  .pain-card {
    position: absolute;
  }

  /* Left Side Cards */
  [data-position="1"] {
    top: 6%;
    left: -10%;
    flex-direction: row;
  }

  [data-position="2"] {
    top: 40%;
    left: -20%;
    flex-direction: row-reverse;
  }

  [data-position="3"] {
    bottom: 0%;
    left: -10%;
    flex-direction: row-reverse;
  }

  /* Right Side Cards */
  [data-position="4"] {
    top: 6%;
    right: -10%;
    flex-direction: row-reverse;
  }

  [data-position="5"] {
    top: 40%;
    right: -20%;
    flex-direction: row;
  }

  [data-position="6"] {
    bottom: 0%;
    right: -10%;
    flex-direction: row-reverse;

  }
}

/* RESPONSIVE RESET - SMALL/MEDIUM SCREENS */
@media (max-width: 991px) {
  .pain-point-diagram {
    height: auto !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: calc(var(--ring-size) + 50px);
  }

  .pain-card {
    flex-direction: column-reverse !important;
    text-align: center;
    width: 100%;
    gap: 5px;
  }

  .icon-circle-pain {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }

  .icon-circle-plat-1 {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }

  .pain-card .card {
    max-width: 100%;
  }
}




/* toggle */
/* 

[hover-tooltip] {
  position: relative;
  cursor: default;
}

[hover-tooltip]:hover::before {
  content: attr(hover-tooltip);
  font-size: 14px;
  text-align: center;
  position: absolute;
  display: block;
  left: 50%;
  min-width: 150px;
  max-width: 200px;
  bottom: calc(100% + 10px);
  transform: translate(-50%);
  animation: fade-in 300ms ease;
  background: rgb(39, 39, 39);
  border-radius: 4px;
  padding: 10px;
  color: #ffffff;
  z-index: 1;
}

[hover-tooltip]:hover::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  width: 0;
  height: 0;
  bottom: calc(100% + 6px);
  margin-left: -3px;
  border: 1px solid black;
  border-color: rgb(39, 39, 39) transparent transparent transparent;
  border-width: 4px 6px 0;
  animation: fade-in 300ms ease;
  z-index: 1;
}

[hover-tooltip][tooltip-position=bottom]:hover::before {
  bottom: auto;
  top: calc(100% + 10px);
}

[hover-tooltip][tooltip-position=bottom]:hover::after {
  bottom: auto;
  top: calc(100% + 6px);
  border-color: transparent transparent rgb(39, 39, 39);
  border-width: 0 6px 4px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.container,
.main-example {
  text-align: center;
  margin: 100px 0 0;
}

.container.container,
.main-example.container {
  margin: 30px 0;
}

.container span,
.main-example span {
  border: 1px solid gray;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
}

body {
  font-family: arial;
}

.explanation {
  margin: 70px 30px;
}

h2 {
  text-align: center;
}

code {
  color: rgba(0, 0, 180, 0.9);
  background: rgba(0, 0, 180, 0.1);
  display: inline-block;
  border: 1px solid rgba(0, 0, 180, 0.9);
  border-radius: 3px;
  padding: 0 3px;
} */


/* client logo  */
.client-logo-services {
  align-items: center;
  display: flex;
  height: 50vh;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@-webkit-keyframes scroll-client-logo {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100px * 7))
  }
}

@-webkit-keyframes scroll-client-logo-1 {
  0% {
    transform: translateY(calc(-100px * 7));
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes scroll-client-logo {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100px * 7))
  }
}

@keyframes scroll-client-logo-1 {
  0% {
    transform: translateY(calc(-100px * 7));
  }

  100% {
    transform: translateY(0)
  }
}

.slider-client {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  margin: auto;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.slider-client .slide-track-client {
  -webkit-animation: scroll-client-logo 10s linear infinite;
  animation: scroll-client-logo 10s linear infinite;
  display: flex;
  flex-direction: column;
}

.slider-client .slide-track-client-1 {
  -webkit-animation: scroll-client-logo-1 10s linear infinite;
  animation: scroll-client-logo-1 10s linear infinite;
  display: flex;
  flex-direction: column;
}

.slider-client .slide-client-logo {
  height: 100px;
  width: 250px;
}

/* text-typing */
.text-typing {
  padding: 3rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.css-typing {
  width: fit-content;
}

.css-typing h1 {
  border-right: solid 3px var(--ve-dark2);
  white-space: nowrap;
  overflow: hidden;
  color: var(--ve-dark2);
  margin: 0 auto;
  text-transform: uppercase;
  display: block;
  font-size: 3rem !important;
}

/* Animation */
.css-typing h1:nth-child(1) {
  width: 100%;
  -webkit-animation: type 10s steps(60, end);
  animation: type 10s steps(60, end);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* 
.css-typing p:nth-child(2) {
  width: 25.3em;
  opacity: 0;
  -webkit-animation: type2 6s steps(40, end);
  animation: type2 6s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing p:nth-child(3) {
  width: 20.3em;
  opacity: 0;
  -webkit-animation: type2 4s steps(40, end);
  animation: type2 4s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 11s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing p:nth-child(4) {
  width: 20.3em;
  opacity: 0;
  -webkit-animation: type2 4s steps(40, end);
  animation: type2 4s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 12s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing p:nth-child(5) {
  width: 20.3em;
  opacity: 0;
  -webkit-animation: type2 4s steps(40, end);
  animation: type2 4s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 16s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing p:nth-child(6) {
  width: 20.3em;
  opacity: 0;
  -webkit-animation: type2 4s steps(40, end);
  animation: type2 4s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 20s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
} */

@keyframes type {
  0% {
    width: 0;
  }

  99.9% {
    border-right: .15em solid var(--ve-dark2);
  }

  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }

  1% {
    opacity: 1;
  }

  99.9% {
    border-right: .15em solid var(--ve-dark2);
  }

  100% {
    border: none;
    opacity: 1;
  }
}


/* cursor animations */

@keyframes animated-cursor {
  from {
    border-right-color: rgba(0, 255, 0, .75);
  }

  to {
    border-right-color: transparent;
  }
}


/* Drawer Animation */
/* .addon-drawer {
  background: linear-gradient(rgb(23 212 64 / 57%), rgb(23 212 64 / 53%)), url(../img/home/seo.jpg);
  background-size: cover;
  animation: slideDown 0.5s ease-out forwards;
  transform-origin: top;
  margin-top: 3rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
} */

/* Cart Sparkle Effect */
.cart-sparkle {
  position: relative;
  animation: bounce 0.4s ease;
}

/* Bouncing effect for the icon */
.cart-sparkle {
  animation: bounceIcon 0.5s ease-in-out;
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* Sparkle particles using the ::after pseudo-element */
.cart-sparkle::after {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.2rem;
  animation: sparkleEffect 0.8s ease-out forwards;
}

@keyframes sparkleEffect {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2) translateY(-10px);
  }

  100% {
    opacity: 0;
    transform: scale(1.5) translateY(-20px);
  }
}


/* Glassmorphism Effect */
.glass-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.glass-card {
  background: var(--ve-dark2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 #33f05e;
  max-width: 500px;
}

.glass-card .badge {
  background: var(--ve-gold);
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.offer-highlight {
  border-radius: 20px
}

.offer-highlight .ve-cta-btn {
  display: inline-block !important;
}

/* Addon Drawer at bottom */
.addon-drawer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ve-dark);
  padding: 20px;
  border-top: 3px solid #00FF00;
  /* Tezz Green */
  z-index: 999;
}

/* Animations */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
  transition: transform 0.5s;
}

.slide-enter-from {
  transform: translateY(100%);
}

.victory-icon {
  font-size: 5rem;
  animation: celebratePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes celebratePop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Optional: Make the success popup pulse */
.border-success {
  border-color: #00ff88 !important;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}


/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* ── Hero ── */
.ab-hero {
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.ab-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.ab-hero-glow-1 {
    width: 500px; height: 500px;
    background: rgba(23,212,64,.12);
    top: -100px; left: -100px;
}
.ab-hero-glow-2 {
    width: 400px; height: 400px;
    background: rgba(23,212,64,.08);
    bottom: -80px; right: -80px;
}
.ab-hero-h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.ab-hero-sub {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
}
.ab-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ab-hero-pill {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ab-hero-pill i { color: rgba(23,212,64,.9); }

/* Stats grid */
.ab-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ab-stat-card {
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}
.ab-stat-card h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0 0 4px;
    line-height: 1;
}
.ab-stat-card p {
    font-size: .85rem;
    font-weight: 600;
    margin: 0;
    opacity: .8;
}
.ab-stat-card--green {
    background: rgba(23,212,64,.15);
    border: 1px solid rgba(23,212,64,.25);
    color: #fff;
}
.ab-stat-card--green h2 { color: rgba(23,212,64,.95); }
.ab-stat-card--dark {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
}
.ab-stat-icon {
    position: absolute;
    bottom: 12px; right: 16px;
    font-size: 2rem;
    opacity: .12;
}

/* ── Story Timeline ── */
.ab-story-section {
    padding: 80px 0;
    background: #fff;
}
.ab-section-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #061b1b;
}
.ab-section-sub {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}
.ab-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.ab-tl-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(23,212,64,.3), rgba(23,212,64,.8), rgba(23,212,64,.3));
    transform: translateX(-50%);
}
.ab-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 48px;
    position: relative;
}
.ab-tl-item--left { flex-direction: row; }
.ab-tl-item--right { flex-direction: row-reverse; }
.ab-tl-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #003f3c;
    border: 3px solid rgba(23,212,64,.5);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(23,212,64,.08);
}
.ab-tl-dot--active {
    background: rgba(23,212,64,.9);
    color: #fff;
    border-color: rgba(23,212,64,.9);
    box-shadow: 0 0 0 8px rgba(23,212,64,.15), 0 0 20px rgba(23,212,64,.3);
}
.ab-tl-card {
    background: #f8fffe;
    border: 1px solid rgba(0,63,60,.1);
    border-radius: 16px;
    padding: 24px 28px;
    flex: 1;
    max-width: 380px;
    transition: all .3s;
}
.ab-tl-card:hover {
    border-color: rgba(23,212,64,.3);
    box-shadow: 0 8px 30px rgba(23,212,64,.1);
    transform: translateY(-2px);
}
.ab-tl-card--active {
    background: linear-gradient(135deg, #003f3c, #005a55);
    border-color: rgba(23,212,64,.4);
    color: #fff;
}
.ab-tl-card--active h4, .ab-tl-card--active p { color: #fff; }
.ab-tl-card--active p { opacity: .8; }
.ab-tl-year {
    font-size: .75rem;
    font-weight: 800;
    color: rgba(23,212,64,.9);
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 6px;
}
.ab-tl-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #061b1b;
    margin: 0 0 8px;
}
.ab-tl-card p {
    font-size: .88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── Mission / Vision ── */
.ab-mv-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}
.ab-mv-card {
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}
.ab-mv-card--mission {
    background: linear-gradient(135deg, #003f3c, #005a55);
    color: #fff;
}
.ab-mv-card--vision {
    background: #fff;
    border: 2px solid rgba(23,212,64,.2);
    color: #061b1b;
}
.ab-mv-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: rgba(23,212,64,.9);
    margin-bottom: 20px;
}
.ab-mv-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.ab-mv-card--mission h3 { color: #fff; }
.ab-mv-card--vision h3 { color: #061b1b; }
.ab-mv-card p {
    line-height: 1.8;
    font-size: .95rem;
    opacity: .85;
    margin-bottom: 0;
}
.ab-mv-divider {
    height: 1px;
    background: rgba(255,255,255,.15);
    margin: 24px 0;
}
.ab-mv-card--vision .ab-mv-divider { background: rgba(0,63,60,.1); }
.ab-mv-points { display: flex; flex-direction: column; gap: 10px; }
.ab-mv-point {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; font-weight: 600;
}
.ab-mv-point i { color: rgba(23,212,64,.9); font-size: .8rem; }
.ab-mv-card--vision .ab-mv-point { color: #333; }

/* ── Values ── */
.ab-values-section {
    padding: 80px 0;
    background: #fff;
}
.ab-val-card {
    background: #f8fffe;
    border: 1px solid rgba(0,63,60,.08);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.ab-val-card:hover {
    border-color: rgba(23,212,64,.3);
    box-shadow: 0 12px 40px rgba(23,212,64,.1);
    transform: translateY(-4px);
}
.ab-val-num {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(23,212,64,.08);
    line-height: 1;
}
.ab-val-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(23,212,64,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: rgba(23,212,64,.9);
    margin-bottom: 16px;
}
.ab-val-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: #061b1b;
    margin-bottom: 8px;
}
.ab-val-card p {
    font-size: .85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Team ── */
.ab-team-section {
    padding: 80px 0;
    background: #f8fffe;
}
.ab-team-card {
    background: #fff;
    border: 1px solid rgba(0,63,60,.08);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all .3s;
}
.ab-team-card:hover {
    border-color: rgba(23,212,64,.3);
    box-shadow: 0 12px 40px rgba(23,212,64,.1);
    transform: translateY(-4px);
}
.ab-team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.ab-team-info h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #061b1b;
    margin-bottom: 4px;
}
.ab-team-role {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(23,212,64,.9);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
    margin-bottom: 10px;
}
.ab-team-info p {
    font-size: .83rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}
.ab-team-socials { display: flex; gap: 8px; justify-content: center; }
.ab-social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex; align-items: center; justify-content: center;
    color: #333;
    font-size: .8rem;
    text-decoration: none;
    transition: all .2s;
}
.ab-social-btn:hover {
    background: rgba(23,212,64,.9);
    color: #fff;
}

/* ── Why Tezz ── */
.ab-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 100%);
    position: relative;
    overflow: hidden;
}
.ab-why-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ab-why-stat { text-align: center; }
.ab-why-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(23,212,64,.9);
}
.ab-why-stat span {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ab-why-stat-div {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.15);
}
.ab-why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s;
}
.ab-why-card:hover {
    background: rgba(23,212,64,.1);
    border-color: rgba(23,212,64,.3);
}
.ab-why-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: 1rem;
    margin-bottom: 12px;
}
.ab-why-card h6 {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.ab-why-card p {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
    margin: 0;
}

/* ── Testimonials ── */
.ab-testimonials-section {
    padding: 80px 0;
    background: #fff;
}
.ab-t-card {
    background: #f8fffe;
    border: 1px solid rgba(0,63,60,.1);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all .3s;
}
.ab-t-card:hover {
    border-color: rgba(23,212,64,.3);
    box-shadow: 0 12px 40px rgba(23,212,64,.1);
    transform: translateY(-4px);
}
.ab-t-card--dark {
    background: linear-gradient(135deg, #003f3c, #005a55);
    border-color: rgba(23,212,64,.2);
}
.ab-t-stars { color: #fbbf24; font-size: .85rem; margin-bottom: 16px; }
.ab-t-stars i { margin-right: 2px; }
.ab-t-quote {
    font-size: .92rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}
.ab-t-card--dark .ab-t-quote { color: rgba(255,255,255,.85); }
.ab-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ab-t-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.ab-t-author > div:nth-child(2) { flex: 1; }
.ab-t-author strong { display: block; font-size: .88rem; color: #061b1b; }
.ab-t-card--dark .ab-t-author strong { color: #fff; }
.ab-t-author span { font-size: .75rem; color: #888; }
.ab-t-card--dark .ab-t-author span { color: rgba(255,255,255,.5); }
.ab-t-metric { text-align: right; }
.ab-t-metric strong { display: block; font-size: 1.1rem; font-weight: 900; color: rgba(23,212,64,.9); }
.ab-t-metric span { font-size: .7rem; color: #888; }
.ab-t-card--dark .ab-t-metric span { color: rgba(255,255,255,.5); }

/* ── Final CTA ── */
.ab-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ab-final-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(23,212,64,.08);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(80px);
    pointer-events: none;
}
.ab-final-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
}
.ab-final-sub {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}
.ab-final-note {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ab-hero { padding: 80px 0 60px; }
    .ab-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ab-stat-card h2 { font-size: 1.8rem; }
    .ab-tl-line { left: 24px; }
    .ab-tl-item--left, .ab-tl-item--right { flex-direction: row; }
    .ab-tl-card { max-width: 100%; }
    .ab-timeline { padding-left: 20px; }
    .ab-why-stats { gap: 12px; }
    .ab-why-stat strong { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .ab-stats-grid { grid-template-columns: 1fr 1fr; }
    .ab-stat-card { padding: 20px 16px; }
    .ab-stat-card h2 { font-size: 1.5rem; }
}


/* ============================================================
   UNIFIED BREADCRUMB — used on all pages
   ============================================================ */
.tezz-breadcrumb {
    position: relative;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 80px 0 60px;
    margin-top: 0;
    overflow: hidden;
    text-align: center;
}

/* Glowing orbs */
.tezz-bc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
}
.tezz-bc-glow-1 {
    width: 400px; height: 400px;
    background: rgba(23,212,64,.12);
    top: -120px; left: -80px;
}
.tezz-bc-glow-2 {
    width: 300px; height: 300px;
    background: rgba(23,212,64,.08);
    bottom: -80px; right: -60px;
}

/* Subtle grid overlay */
.tezz-bc-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(23,212,64,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,212,64,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* Breadcrumb trail */
.tezz-bc-trail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-size: .82rem;
    font-weight: 600;
}
.tezz-bc-link {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.tezz-bc-link:hover { color: rgba(23,212,64,.9); }
.tezz-bc-link i { font-size: .75rem; }
.tezz-bc-sep {
    color: rgba(255,255,255,.25);
    font-size: .65rem;
    display: flex;
    align-items: center;
}
.tezz-bc-current {
    color: rgba(23,212,64,.9);
    font-weight: 700;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Page title */
.tezz-bc-h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

/* Description */
.tezz-bc-desc {
    color: rgba(255,255,255,.6);
    font-size: .98rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .tezz-breadcrumb { padding: 70px 0 50px; }
    .tezz-bc-h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .tezz-bc-current { max-width: 140px; }
}
@media (max-width: 480px) {
    .tezz-bc-trail { padding: 6px 14px; font-size: .75rem; gap: 6px; }
    .tezz-bc-h1 { font-size: 1.5rem; }
}

/* ============================================================
   ABOUT PAGE v2 — Full 11-Section Design
   ============================================================ */

/* ── Shared ── */
.ab2-section-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #061b1b;
}
.ab2-section-sub {
    color: #555;
    font-size: .98rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ── SECTION 1: Hero ── */
.ab2-hero {
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.ab2-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.ab2-hero-glow-1 { width:500px;height:500px;background:rgba(23,212,64,.12);top:-100px;left:-100px; }
.ab2-hero-glow-2 { width:400px;height:400px;background:rgba(23,212,64,.08);bottom:-80px;right:-80px; }
.ab2-hero-h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.ab2-hero-sub { color:rgba(255,255,255,.7);font-size:1.05rem;line-height:1.8;max-width:520px; }
.ab2-hero-trust { display:flex;align-items:center;flex-wrap:wrap;gap:12px; }
.ab2-trust-item { display:flex;align-items:center;gap:6px;color:rgba(255,255,255,.75);font-size:.82rem;font-weight:600; }
.ab2-trust-item i { color:rgba(23,212,64,.9); }
.ab2-trust-div { width:1px;height:16px;background:rgba(255,255,255,.2); }
.ab2-hero-stats { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.ab2-hs-card {
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:28px 24px;
    position:relative;
    overflow:hidden;
    transition:all .3s;
}
.ab2-hs-card:hover { border-color:rgba(23,212,64,.3);background:rgba(23,212,64,.08); }
.ab2-hs-card--lg { grid-column:span 2; }
.ab2-hs-card--green { background:rgba(23,212,64,.12);border-color:rgba(23,212,64,.25); }
.ab2-hs-icon { font-size:1.4rem;color:rgba(23,212,64,.9);margin-bottom:10px; }
.ab2-hs-card h2 { font-size:2.2rem;font-weight:900;color:#fff;margin:0 0 4px;line-height:1; }
.ab2-hs-card--lg h2 { font-size:2.8rem; }
.ab2-hs-card p { font-size:.82rem;color:rgba(255,255,255,.6);margin:0;font-weight:600; }

/* ── SECTION 2: Problem ── */
.ab2-problem-section { padding:80px 0;background:#fff; }
.ab2-prob-card {
    background:#f8fffe;
    border:1px solid rgba(0,63,60,.08);
    border-radius:20px;
    padding:32px 28px;
    height:100%;
    transition:all .3s;
}
.ab2-prob-card:hover { border-color:rgba(23,212,64,.25);box-shadow:0 12px 40px rgba(23,212,64,.08);transform:translateY(-3px); }
.ab2-prob-icon { width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:16px; }
.ab2-prob-icon--red { background:rgba(239,68,68,.1);color:#ef4444; }
.ab2-prob-card h5 { font-size:1rem;font-weight:800;color:#061b1b;margin-bottom:10px; }
.ab2-prob-card p { font-size:.85rem;color:#666;line-height:1.65;margin-bottom:16px; }
.ab2-prob-vs { display:flex;flex-direction:column;gap:6px; }
.ab2-vs-bad,.ab2-vs-good { font-size:.78rem;font-weight:600;display:flex;align-items:center;gap:6px;padding:6px 10px;border-radius:8px; }
.ab2-vs-bad { background:rgba(239,68,68,.08);color:#dc2626; }
.ab2-vs-bad i { color:#dc2626; }
.ab2-vs-good { background:rgba(23,212,64,.1);color:#15803d; }
.ab2-vs-good i { color:rgba(23,212,64,.9); }

/* ── SECTION 3: Who ── */
.ab2-who-section { padding:80px 0;background:#f8fffe; }
.ab2-who-badges { display:flex;flex-wrap:wrap;gap:8px; }
.ab2-who-badge {
    background:#fff;
    border:1px solid rgba(0,63,60,.12);
    color:#003f3c;
    padding:6px 14px;
    border-radius:50px;
    font-size:.8rem;
    font-weight:700;
    display:flex;align-items:center;gap:6px;
}
.ab2-who-badge i { color:rgba(23,212,64,.9); }
.ab2-team-card {
    background:#fff;
    border:1px solid rgba(0,63,60,.08);
    border-radius:16px;
    padding:20px 16px;
    text-align:center;
    transition:all .3s;
}
.ab2-team-card:hover { border-color:rgba(23,212,64,.3);box-shadow:0 8px 24px rgba(23,212,64,.1);transform:translateY(-3px); }
.ab2-team-av {
    width:56px;height:56px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:1.4rem;font-weight:900;color:#fff;
    margin:0 auto 12px;
    box-shadow:0 4px 16px rgba(0,0,0,.15);
}
.ab2-team-card h6 { font-size:.88rem;font-weight:800;color:#061b1b;margin-bottom:2px; }
.ab2-team-card span { font-size:.72rem;font-weight:700;color:rgba(23,212,64,.9);text-transform:uppercase;letter-spacing:.04em;display:block;margin-bottom:6px; }
.ab2-team-card p { font-size:.75rem;color:#888;line-height:1.5;margin:0; }

/* ── SECTION 4: What ── */
.ab2-what-section {
    padding:80px 0;
    background:linear-gradient(135deg,#061b1b 0%,#003f3c 100%);
}
.ab2-what-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:16px;
}
.ab2-what-card {
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    padding:24px 20px;
    position:relative;
    transition:all .3s;
}
.ab2-what-card:hover { background:rgba(23,212,64,.1);border-color:rgba(23,212,64,.3);transform:translateY(-3px); }
.ab2-what-icon { font-size:1.4rem;color:rgba(23,212,64,.9);margin-bottom:10px; }
.ab2-what-tag {
    position:absolute;top:16px;right:16px;
    font-size:.65rem;font-weight:800;
    color:rgba(23,212,64,.9);
    background:rgba(23,212,64,.1);
    border:1px solid rgba(23,212,64,.2);
    padding:2px 8px;border-radius:50px;
    letter-spacing:.06em;
}
.ab2-what-card h6 { font-size:.9rem;font-weight:800;color:#fff;margin-bottom:6px; }
.ab2-what-card p { font-size:.78rem;color:rgba(255,255,255,.55);line-height:1.5;margin:0; }

/* ── SECTION 5: Approach ── */
.ab2-approach-section { padding:80px 0;background:#fff; }
.ab2-ap-card {
    padding:48px 40px;
    height:100%;
    position:relative;
    overflow:hidden;
}
.ab2-ap-card--dark { background:linear-gradient(135deg,#003f3c,#005a55);color:#fff; }
.ab2-ap-card--light { background:#f8fffe;border:1px solid rgba(0,63,60,.08); }
.ab2-ap-num {
    position:absolute;top:24px;right:28px;
    font-size:5rem;font-weight:900;
    color:rgba(23,212,64,.08);line-height:1;
}
.ab2-ap-icon {
    width:52px;height:52px;border-radius:14px;
    background:rgba(23,212,64,.15);
    display:flex;align-items:center;justify-content:center;
    font-size:1.3rem;color:rgba(23,212,64,.9);
    margin-bottom:20px;
}
.ab2-ap-card h4 { font-size:1.3rem;font-weight:800;margin-bottom:14px; }
.ab2-ap-card--dark h4 { color:#fff; }
.ab2-ap-card--light h4 { color:#061b1b; }
.ab2-ap-card p { font-size:.9rem;line-height:1.75;margin-bottom:20px; }
.ab2-ap-card--dark p { color:rgba(255,255,255,.75); }
.ab2-ap-card--light p { color:#555; }
.ab2-ap-quote {
    font-size:.82rem;font-style:italic;font-weight:600;
    padding:12px 16px;border-radius:10px;
    border-left:3px solid rgba(23,212,64,.9);
}
.ab2-ap-card--dark .ab2-ap-quote { background:rgba(255,255,255,.08);color:rgba(255,255,255,.8); }
.ab2-ap-card--light .ab2-ap-quote { background:rgba(23,212,64,.08);color:#003f3c; }

/* ── SECTION 6: Why / Compare ── */
.ab2-why-section { padding:80px 0;background:#f8fffe; }
.ab2-compare-wrap { border-radius:20px;overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,.08); }
.ab2-compare-header {
    display:grid;grid-template-columns:2fr 1.5fr 1.5fr;
    background:#061b1b;color:#fff;
    padding:20px 24px;font-weight:800;font-size:.88rem;
    align-items:center;gap:16px;
}
.ab2-compare-other { color:rgba(255,255,255,.6);text-align:center; }
.ab2-compare-tezz {
    color:rgba(23,212,64,.9);text-align:center;
    display:flex;flex-direction:column;align-items:center;gap:4px;
}
.ab2-best-badge {
    font-size:.65rem;background:rgba(23,212,64,.2);
    border:1px solid rgba(23,212,64,.3);
    color:rgba(23,212,64,.9);padding:2px 10px;border-radius:50px;
}
.ab2-compare-row {
    display:grid;grid-template-columns:2fr 1.5fr 1.5fr;
    padding:16px 24px;align-items:center;gap:16px;
    font-size:.85rem;background:#fff;
    border-bottom:1px solid rgba(0,0,0,.05);
}
.ab2-compare-row--alt { background:#f8fffe; }
.ab2-compare-row .ab2-compare-feat { font-weight:700;color:#061b1b; }
.ab2-compare-row .ab2-compare-other { text-align:center;color:#888;display:flex;align-items:center;justify-content:center;gap:6px; }
.ab2-compare-row .ab2-compare-tezz { text-align:center;color:#15803d;font-weight:700;display:flex;align-items:center;justify-content:center;gap:6px; }
.ab2-x-icon { color:#ef4444; }
.ab2-check-icon { color:rgba(23,212,64,.9); }
.ab2-compare-footer {
    display:grid;grid-template-columns:2fr 1.5fr 1.5fr;
    padding:20px 24px;background:#fff;
    border-top:2px solid rgba(23,212,64,.2);
    align-items:center;gap:16px;
}
.ab2-compare-footer .ab2-compare-other { text-align:center; }
.ab2-compare-footer .ab2-compare-tezz { text-align:center; }
.ab2-compare-label { font-size:.8rem;color:#aaa;font-weight:600; }

/* ── SECTION 7: Process ── */
.ab2-process-section { padding:80px 0;background:#fff; }
.ab2-process-timeline { position:relative;max-width:900px;margin:0 auto; }
.ab2-process-timeline::before {
    content:'';position:absolute;left:50%;top:0;bottom:0;
    width:2px;background:linear-gradient(to bottom,rgba(23,212,64,.2),rgba(23,212,64,.8),rgba(23,212,64,.2));
    transform:translateX(-50%);
}
.ab2-proc-item {
    display:flex;align-items:flex-start;gap:24px;
    margin-bottom:48px;position:relative;
}
.ab2-proc-item--left { flex-direction:row; }
.ab2-proc-item--right { flex-direction:row-reverse; }
.ab2-proc-dot {
    width:52px;height:52px;border-radius:50%;
    background:#003f3c;border:3px solid rgba(23,212,64,.4);
    display:flex;align-items:center;justify-content:center;
    color:rgba(23,212,64,.9);font-size:1rem;
    flex-shrink:0;position:relative;z-index:2;
    box-shadow:0 0 0 6px rgba(23,212,64,.08);
    transition:all .3s;
}
.ab2-proc-item:hover .ab2-proc-dot {
    background:rgba(23,212,64,.9);color:#fff;
    border-color:rgba(23,212,64,.9);
    box-shadow:0 0 0 8px rgba(23,212,64,.15),0 0 20px rgba(23,212,64,.3);
}
.ab2-proc-card {
    background:#f8fffe;border:1px solid rgba(0,63,60,.1);
    border-radius:16px;padding:24px 28px;flex:1;max-width:380px;
    transition:all .3s;
}
.ab2-proc-card:hover { border-color:rgba(23,212,64,.3);box-shadow:0 8px 30px rgba(23,212,64,.1);transform:translateY(-2px); }
.ab2-proc-header { display:flex;align-items:flex-start;gap:12px;margin-bottom:12px; }
.ab2-proc-num {
    font-size:2rem;font-weight:900;color:rgba(23,212,64,.2);
    line-height:1;flex-shrink:0;
}
.ab2-proc-header h5 { font-size:1rem;font-weight:800;color:#061b1b;margin:0 0 4px; }
.ab2-proc-duration { font-size:.72rem;color:rgba(23,212,64,.9);font-weight:700; }
.ab2-proc-card p { font-size:.85rem;color:#555;line-height:1.65;margin-bottom:12px; }
.ab2-proc-output {
    font-size:.75rem;color:#888;
    background:rgba(23,212,64,.06);
    border:1px solid rgba(23,212,64,.15);
    border-radius:8px;padding:8px 12px;
}
.ab2-proc-output-label { font-weight:800;color:rgba(23,212,64,.9);margin-right:4px; }

/* ── SECTION 8: Industries ── */
.ab2-industries-section { padding:80px 0;background:#f8fffe; }
.ab2-ind-card {
    background:var(--ind-bg,#f8fffe);
    border:1px solid rgba(0,0,0,.06);
    border-radius:20px;padding:28px 24px;
    height:100%;transition:all .3s;
    position:relative;overflow:hidden;
}
.ab2-ind-card:hover { transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.1); }
.ab2-ind-icon {
    width:48px;height:48px;border-radius:12px;
    background:rgba(0,63,60,.08);
    display:flex;align-items:center;justify-content:center;
    font-size:1.2rem;color:#003f3c;margin-bottom:14px;
}
.ab2-ind-card h6 { font-size:.92rem;font-weight:800;color:#061b1b;margin-bottom:8px; }
.ab2-ind-card p { font-size:.78rem;color:#666;line-height:1.6;margin-bottom:12px; }
.ab2-ind-count {
    font-size:.72rem;font-weight:800;
    color:rgba(23,212,64,.9);
    background:rgba(23,212,64,.1);
    border:1px solid rgba(23,212,64,.2);
    padding:3px 10px;border-radius:50px;
}

/* ── SECTION 9: Stats / Proof ── */
.ab2-proof-section {
    padding:80px 0;
    background:linear-gradient(135deg,#061b1b 0%,#003f3c 100%);
}
.ab2-big-stats {
    display:flex;align-items:center;justify-content:center;
    flex-wrap:wrap;gap:0;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;padding:40px;
    margin-bottom:0;
}
.ab2-big-stat { text-align:center;padding:0 32px; }
.ab2-big-stat h2 { font-size:2.8rem;font-weight:900;color:rgba(23,212,64,.9);margin:0 0 4px;line-height:1; }
.ab2-big-stat p { font-size:.78rem;color:rgba(255,255,255,.55);font-weight:600;margin:0;text-transform:uppercase;letter-spacing:.05em; }
.ab2-big-stat-div { width:1px;height:60px;background:rgba(255,255,255,.1); }
.ab2-t-card {
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;padding:28px 24px;height:100%;
    transition:all .3s;
}
.ab2-t-card:hover { border-color:rgba(23,212,64,.3);background:rgba(23,212,64,.08); }
.ab2-t-card--dark { background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.15); }
.ab2-t-stars { color:#fbbf24;font-size:1rem;margin-bottom:14px;letter-spacing:2px; }
.ab2-t-card p { font-size:.88rem;color:rgba(255,255,255,.8);line-height:1.7;font-style:italic;margin-bottom:20px; }
.ab2-t-author { display:flex;align-items:center;gap:10px; }
.ab2-t-av { width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.95rem;font-weight:900;color:#fff;flex-shrink:0; }
.ab2-t-author > div:nth-child(2) { flex:1; }
.ab2-t-author strong { display:block;font-size:.85rem;color:#fff;font-weight:800; }
.ab2-t-author span { font-size:.72rem;color:rgba(255,255,255,.5); }
.ab2-t-metric { text-align:right; }
.ab2-t-metric strong { display:block;font-size:1.1rem;font-weight:900;color:rgba(23,212,64,.9); }
.ab2-t-metric span { font-size:.68rem;color:rgba(255,255,255,.4); }

/* ── SECTION 11: FAQ ── */
.ab2-faq-section { padding:80px 0;background:#fff; }
.ab2-faq-item {
    border:1px solid rgba(0,63,60,.1);
    border-radius:14px;margin-bottom:12px;
    overflow:hidden;transition:all .3s;
}
.ab2-faq-item.open { border-color:rgba(23,212,64,.3);box-shadow:0 4px 20px rgba(23,212,64,.08); }
.ab2-faq-btn {
    width:100%;background:none;border:none;
    padding:20px 24px;
    display:flex;align-items:center;justify-content:space-between;gap:16px;
    cursor:pointer;text-align:left;
}
.ab2-faq-btn span { font-size:.92rem;font-weight:700;color:#061b1b;line-height:1.4; }
.ab2-faq-chevron { color:#003f3c;font-size:.8rem;transition:transform .3s;flex-shrink:0; }
.ab2-faq-item.open .ab2-faq-chevron { transform:rotate(180deg);color:rgba(23,212,64,.9); }
.ab2-faq-body { max-height:0;overflow:hidden;transition:max-height .35s ease; }
.ab2-faq-item.open .ab2-faq-body { max-height:300px; }
.ab2-faq-body p { padding:0 24px 20px;font-size:.88rem;color:#555;line-height:1.75;margin:0; }
.ab2-faq-cta-card {
    background:#f8fffe;border:1px solid rgba(23,212,64,.2);
    border-radius:16px;padding:24px;
}
.ab2-faq-cta-icon { font-size:1.5rem;color:rgba(23,212,64,.9);margin-bottom:10px; }
.ab2-faq-cta-card h6 { font-size:.95rem;font-weight:800;color:#061b1b;margin-bottom:6px; }
.ab2-faq-cta-card p { font-size:.82rem;color:#666;line-height:1.6;margin-bottom:12px; }
.ab2-faq-cta-link { font-size:.82rem;font-weight:700;color:rgba(23,212,64,.9);text-decoration:none; }
.ab2-faq-cta-link:hover { text-decoration:underline; }

/* ── Final CTA ── */
.ab2-final-cta {
    padding:100px 0;
    background:linear-gradient(135deg,#061b1b 0%,#003f3c 100%);
    position:relative;overflow:hidden;text-align:center;
}
.ab2-final-glow {
    position:absolute;width:600px;height:600px;border-radius:50%;
    background:rgba(23,212,64,.08);top:50%;left:50%;
    transform:translate(-50%,-50%);filter:blur(80px);pointer-events:none;
}
.ab2-final-h2 { font-size:clamp(2rem,4vw,3rem);font-weight:900;color:#fff;line-height:1.15; }
.ab2-final-sub { color:rgba(255,255,255,.65);font-size:1rem;max-width:480px;margin:0 auto;line-height:1.7; }
.ab2-final-note { font-size:.78rem;color:rgba(255,255,255,.35);margin:0; }

/* ── Responsive ── */
@media (max-width:992px) {
    .ab2-compare-header,.ab2-compare-row,.ab2-compare-footer { grid-template-columns:1.5fr 1fr 1fr; }
    .ab2-process-timeline::before { left:26px; }
    .ab2-proc-item--left,.ab2-proc-item--right { flex-direction:row; }
    .ab2-proc-card { max-width:100%; }
    .ab2-process-timeline { padding-left:20px; }
}
@media (max-width:768px) {
    .ab2-hero { padding:80px 0 60px; }
    .ab2-hero-stats { grid-template-columns:1fr 1fr; }
    .ab2-hs-card--lg { grid-column:span 2; }
    .ab2-big-stats { padding:24px 16px;gap:0; }
    .ab2-big-stat { padding:0 16px; }
    .ab2-big-stat h2 { font-size:2rem; }
    .ab2-big-stat-div { height:40px; }
    .ab2-compare-header { display:none; }
    .ab2-compare-row { grid-template-columns:1fr;gap:4px;padding:14px 16px; }
    .ab2-compare-row .ab2-compare-feat { font-size:.9rem; }
    .ab2-compare-footer { grid-template-columns:1fr;text-align:center; }
    .ab2-what-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
    .ab2-hero-stats { grid-template-columns:1fr 1fr; }
    .ab2-hs-card--lg { grid-column:span 2; }
    .ab2-big-stats { flex-direction:column;gap:16px; }
    .ab2-big-stat-div { width:60px;height:1px; }
    .ab2-what-grid { grid-template-columns:1fr; }
}

/* ============================================================
   HOME HERO — SPLIT LAYOUT (text left, image right)
   ============================================================ */

.ve-hero--split {
    justify-content: center;
    align-items: center;
}

.ve-hero-split-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT column */
.ve-hero-left--split {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 0;
    text-align: left;
    align-items: flex-start;
}

.ve-hero-btns--left {
    justify-content: flex-start;
}

.ve-hero-stats--left {
    justify-content: flex-start;
}

/* RIGHT column */
.ve-hero-right--split {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.ve-hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.ve-hero-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.ve-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,27,27,.3) 0%, transparent 60%);
    border-radius: 24px;
    pointer-events: none;
}

/* Floating badges */
.ve-hero-float-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
    z-index: 4;
    animation: ve-float 3s ease-in-out infinite;
}

.ve-hero-float-badge--tl {
    top: 24px;
    left: 20px;
    animation-delay: 0s;
}

.ve-hero-float-badge--br {
    bottom: 24px;
    right: 20px;
    animation-delay: 1.5s;
}

.ve-hero-float-badge i {
    font-size: 1.2rem;
    color: rgba(23,212,64,.9);
    flex-shrink: 0;
}

.ve-hero-float-badge strong {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    color: #061b1b;
    line-height: 1.2;
}

.ve-hero-float-badge span {
    font-size: .7rem;
    color: #888;
    display: block;
}

/* Live indicator */
.ve-hero-live-dot-wrap {
    position: absolute;
    top: 24px;
    right: 20px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    z-index: 4;
    animation: heroLivePulse 2s ease-in-out infinite;
}

.ve-hero-float-badge--tl {
    top: 24px;
    left: 20px;
    animation-delay: 0s;
}

.ve-hero-float-badge--br {
    bottom: 24px;
    right: 20px;
    animation-delay: 1.5s;
}

@keyframes heroFloatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.ve-hero-float-badge-icon {
    font-size: 1.2rem;
    color: rgba(23,212,64,.9);
    flex-shrink: 0;
}

.ve-hero-float-badge strong {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    color: #061b1b;
    line-height: 1.2;
}

.ve-hero-float-badge span {
    font-size: .7rem;
    color: #888;
    display: block;
}

/* ── About Hero Image (right side) ── */
.ab2-hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.ab2-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.ab2-hero-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(6,27,27,.3) 0%,
        transparent 50%,
        rgba(0,63,60,.2) 100%
    );
    pointer-events: none;
}

/* Floating stat cards */
.ab2-hero-float {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 3;
    animation: ab2FloatBob 3s ease-in-out infinite;
}
.ab2-hero-float--tl {
    top: 24px;
    left: -20px;
    animation-delay: 0s;
}
.ab2-hero-float--br {
    bottom: 80px;
    right: -20px;
    animation-delay: 1.5s;
}
.ab2-float-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: .95rem;
    flex-shrink: 0;
}
.ab2-hero-float strong {
    display: block;
    font-size: .92rem;
    font-weight: 800;
    color: #061b1b;
    line-height: 1.2;
}
.ab2-hero-float span {
    font-size: .72rem;
    color: #888;
    font-weight: 500;
}

/* Live badge */
.ab2-hero-live {
    position: absolute;
    top: 24px;
    right: 20px;
    background: rgba(6,27,27,.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(23,212,64,.3);
    border-radius: 50px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    z-index: 3;
}
.ab2-hero-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(23,212,64,.9);
    box-shadow: 0 0 0 3px rgba(23,212,64,.2);
    animation: ab2Pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* Mini stats strip at bottom */
.ab2-hero-mini-stats {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: rgba(6,27,27,.88);
    backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 3;
}
.ab2-mini-stat { text-align: center; }
.ab2-mini-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(23,212,64,.9);
    line-height: 1;
}
.ab2-mini-stat span {
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}
.ab2-mini-div {
    width: 1px; height: 32px;
    background: rgba(255,255,255,.15);
}

/* Animations */
@keyframes ab2FloatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes ab2Pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(23,212,64,.2); }
    50%       { box-shadow: 0 0 0 6px rgba(23,212,64,.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .ab2-hero-float--tl { left: 10px; }
    .ab2-hero-float--br { right: 10px; }
    .ab2-hero-img { height: 380px; }
}
@media (max-width: 768px) {
    .ab2-hero-img { height: 300px; }
    .ab2-hero-float { display: none; }
    .ab2-hero-live { top: 12px; right: 12px; }
}

/* ============================================================
   CREATIVE STRATEGY v2
   ============================================================ */
.cs2-section {
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 100%);
    padding: 80px 40px;
}
.cs2-header { text-align: center; margin-bottom: 56px; }
.cs2-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; line-height: 1.15; }
.cs2-sub { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 680px; margin: 0 auto; line-height: 1.75; }

.cs2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* Image column */
.cs2-img-wrap { position: relative; border-radius: 24px; overflow: visible; }
.cs2-img { width: 100%; height: 460px; object-fit: cover; border-radius: 24px; display: block; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.cs2-img-overlay { position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, rgba(6,27,27,.3) 0%, transparent 60%); pointer-events: none; }
.cs2-float {
    position: absolute; background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
    border-radius: 14px; padding: 10px 14px; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15); z-index: 3;
    animation: cs2Bob 3s ease-in-out infinite;
}
.cs2-float--tl { top: 20px; left: -16px; animation-delay: 0s; }
.cs2-float--br { bottom: 70px; right: -16px; animation-delay: 1.5s; }
.cs2-float-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(23,212,64,.15); display: flex; align-items: center; justify-content: center; color: rgba(23,212,64,.9); font-size: .85rem; flex-shrink: 0; }
.cs2-float strong { display: block; font-size: .85rem; font-weight: 800; color: #061b1b; line-height: 1.2; }
.cs2-float span { font-size: .68rem; color: #888; }
.cs2-img-stats { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(6,27,27,.88); backdrop-filter: blur(12px); border-radius: 0 0 24px 24px; padding: 12px 20px; display: flex; align-items: center; justify-content: center; gap: 16px; z-index: 3; }
.cs2-img-stat { text-align: center; }
.cs2-img-stat strong { display: block; font-size: 1rem; font-weight: 900; color: rgba(23,212,64,.9); line-height: 1; }
.cs2-img-stat span { font-size: .65rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.cs2-img-stat-div { width: 1px; height: 28px; background: rgba(255,255,255,.15); }

/* Feature column */
.cs2-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.cs2-feat-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px; transition: all .3s; }
.cs2-feat-card:hover { background: rgba(23,212,64,.1); border-color: rgba(23,212,64,.3); transform: translateY(-2px); }
.cs2-feat-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(23,212,64,.15); display: flex; align-items: center; justify-content: center; color: rgba(23,212,64,.9); font-size: .95rem; margin-bottom: 10px; }
.cs2-feat-card h5 { font-size: .88rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cs2-feat-card p { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.55; margin: 0; }

/* Chart bar */
.cs2-chart-bar { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 16px 20px; }
.cs2-chart-label { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.cs2-chart-track { background: rgba(255,255,255,.1); border-radius: 50px; height: 10px; position: relative; margin-bottom: 12px; }
.cs2-chart-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, rgba(23,212,64,.6), rgba(23,212,64,.9)); transition: width 1s ease; }
.cs2-chart-val { position: absolute; right: 0; top: -22px; font-size: .75rem; font-weight: 800; color: rgba(23,212,64,.9); }
.cs2-chart-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cs2-chart-tags span { background: rgba(23,212,64,.1); border: 1px solid rgba(23,212,64,.2); color: rgba(23,212,64,.9); font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

@keyframes cs2Bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

@media (max-width: 992px) {
    .cs2-split { grid-template-columns: 1fr; }
    .cs2-img { height: 320px; }
    .cs2-float { display: none; }
}
@media (max-width: 576px) {
    .cs2-section { padding: 60px 20px; }
    .cs2-feat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GROWTH AUTOMATION v2
   ============================================================ */
.ga2-section { background: #fff; padding: 80px 40px; }
.ga2-header-row { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.ga2-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--ve-white); line-height: 1.15; }
.ga2-sub { color: var(--ve-white); font-size: 1rem; line-height: 1.75; }
.ga2-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

/* Image */
.ga2-img-wrap { position: relative; border-radius: 24px; }
.ga2-img { width: 100%; height: 380px; object-fit: contain; border-radius: 24px; display: block; }
.ga2-img-glow { position: absolute; inset: 0; border-radius: 24px; background: radial-gradient(circle at center, rgba(23,212,64,.08) 0%, transparent 70%); pointer-events: none; }
.ga2-badge { position: absolute; background: #fff; border: 1px solid rgba(0,63,60,.15); border-radius: 50px; padding: 7px 14px; font-size: .78rem; font-weight: 700; color: #003f3c; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.ga2-badge i { color: rgba(23,212,64,.9); }
.ga2-badge--1 { top: 20px; left: 20px; }
.ga2-badge--2 { bottom: 20px; right: 20px; }

/* Cards */
.ga2-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.ga2-card { background: #f8fffe; border: 1px solid rgba(0,63,60,.08); border-radius: 20px; padding: 28px 24px; position: relative; overflow: hidden; transition: all .3s; }
.ga2-card:hover { border-color: rgba(23,212,64,.3); box-shadow: 0 12px 40px rgba(23,212,64,.1); transform: translateY(-4px); }
.ga2-card--active { background: linear-gradient(135deg, #003f3c, #005a55); border-color: rgba(23,212,64,.3); }
.ga2-card--active h5, .ga2-card--active p { color: var(--ve-white)!important; }
.ga2-card-num { position: absolute; top: 16px; right: 20px; font-size: 3rem; font-weight: 900; color: rgba(23,212,64,.08); line-height: 1; }
.ga2-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(23,212,64,.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: rgba(23,212,64,.9); margin-bottom: 16px; }
.ga2-card--active .ga2-card-icon { background: rgba(255,255,255,.15); color: #fff; }
.ga2-card h5 { font-size: .95rem; font-weight: 800; color: #061b1b; margin-bottom: 8px; }
.ga2-card p { font-size: .82rem; color: #666; line-height: 1.6; margin-bottom: 12px; }
.ga2-card-tag { font-size: .68rem; font-weight: 800; color: rgba(23,212,64,.9); background: rgba(23,212,64,.1); border: 1px solid rgba(23,212,64,.2); padding: 3px 10px; border-radius: 50px; display: inline-block; }
.ga2-card--active .ga2-card-tag { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.2); }

@media (max-width: 992px) {
    .ga2-header-row { grid-template-columns: 1fr; }
    .ga2-cards { grid-template-columns: 1fr 1fr; }
    .ga2-stats-strip { flex-wrap: wrap; gap: 24px; padding: 24px; }
    .ga2-strip-div { display: none; }
}
@media (max-width: 576px) {
    .ga2-section { padding: 60px 20px; }
    .ga2-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PROVEN METRICS v2
   ============================================================ */
.pm2-section { padding: 80px 0; background: #f8fffe; }
.pm2-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #061b1b; line-height: 1.15; }
.pm2-sub { color: #555; font-size: .98rem; line-height: 1.75; }

.pm2-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.pm2-card { border-radius: 24px; padding: 36px 28px; position: relative; overflow: hidden; transition: all .3s; }
.pm2-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.pm2-card--1 { background: linear-gradient(135deg, #003f3c, #005a55); color: #fff; }
.pm2-card--2 { background: linear-gradient(135deg, #061b1b, #003f3c); color: #fff; }
.pm2-card--3 { background: rgba(23,212,64,.12); border: 1px solid rgba(23,212,64,.2); }
.pm2-card--4 { background: #fff; border: 1px solid rgba(0,63,60,.1); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.pm2-card-bg-num { position: absolute; top: 10px; right: 16px; font-size: 5rem; font-weight: 900; opacity: .08; line-height: 1; color: #fff; }
.pm2-card--3 .pm2-card-bg-num, .pm2-card--4 .pm2-card-bg-num { color: #003f3c; }
.pm2-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: rgba(23,212,64,.9); margin-bottom: 16px; }
.pm2-card--3 .pm2-card-icon, .pm2-card--4 .pm2-card-icon { background: rgba(23,212,64,.12); }
.pm2-pct { font-size: 3rem; font-weight: 900; color: rgba(23,212,64,.9); margin: 0 0 4px; line-height: 1; }
.pm2-card--1 .pm2-pct, .pm2-card--2 .pm2-pct { color: rgba(23,212,64,.9); }
.pm2-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.pm2-card--1 .pm2-label, .pm2-card--2 .pm2-label { color: rgba(255,255,255,.6); }
.pm2-card--3 .pm2-label, .pm2-card--4 .pm2-label { color: #003f3c; }
.pm2-desc { font-size: .82rem; line-height: 1.65; margin-bottom: 16px; }
.pm2-card--1 .pm2-desc, .pm2-card--2 .pm2-desc { color: rgba(255,255,255,.7); }
.pm2-card--3 .pm2-desc, .pm2-card--4 .pm2-desc { color: #555; }
.pm2-bar { background: rgba(255,255,255,.15); border-radius: 50px; height: 6px; overflow: hidden; }
.pm2-card--3 .pm2-bar, .pm2-card--4 .pm2-bar { background: rgba(0,63,60,.1); }
.pm2-bar-fill { height: 100%; border-radius: 50px; background: rgba(23,212,64,.9); transition: width 1.2s ease; }

/* Trust strip */
.pm2-trust-strip { background: linear-gradient(135deg, #061b1b, #003f3c); border-radius: 16px; padding: 20px 32px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.pm2-trust-item { display: flex; align-items: center; gap: 8px; padding: 0 24px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.75); }
.pm2-trust-item i { color: rgba(23,212,64,.9); }
.pm2-trust-div { width: 1px; height: 24px; background: rgba(255,255,255,.15); }

@media (max-width: 992px) {
    .pm2-cards { grid-template-columns: 1fr 1fr; }
    .pm2-trust-strip { gap: 12px; }
    .pm2-trust-div { display: none; }
}
@media (max-width: 576px) {
    .pm2-cards { grid-template-columns: 1fr; }
    .pm2-trust-item { padding: 0 12px; }
}

/* ============================================================
   D2C / B2B / B2C SECTION
   ============================================================ */
.biz2-section { padding: 80px 0; background: #fff; }
.biz2-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #061b1b; line-height: 1.15; }
.biz2-sub { color: #555; font-size: 1rem; line-height: 1.75; max-width: 600px; margin: 0 auto; }

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

.biz2-card { border-radius: 24px; overflow: hidden; transition: all .3s; position: relative; }
.biz2-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.biz2-card--d2c { background: linear-gradient(160deg, #003f3c 0%, #005a55 100%); color: #fff; }
.biz2-card--b2b { background: linear-gradient(160deg, #061b1b 0%, #003f3c 100%); color: #fff; }
.biz2-card--b2c { background: linear-gradient(160deg, rgba(23,212,64,.12) 0%, rgba(23,212,64,.05) 100%); border: 1px solid rgba(23,212,64,.2); }

.biz2-card-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 28px 0; }
.biz2-badge { font-size: .75rem; font-weight: 900; letter-spacing: .1em; background: rgba(23,212,64,.9); color: #fff; padding: 5px 14px; border-radius: 50px; }
.biz2-card--b2c .biz2-badge { background: #003f3c; }
.biz2-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: rgba(23,212,64,.9); }
.biz2-card--b2c .biz2-card-icon { background: rgba(0,63,60,.1); color: #003f3c; }

.biz2-card h3 { font-size: 1.3rem; font-weight: 800; padding: 16px 28px 8px; margin: 0; color: var(--ve-gold)}
.biz2-card--b2c h3 { color: #061b1b; }
.biz2-card p { font-size: .85rem; line-height: 1.7; padding: 0 28px 16px; margin: 0; }
.biz2-card--d2c p, .biz2-card--b2b p { color: rgba(255,255,255,.75); }
.biz2-card--b2c p { color: #555; }

.biz2-img-wrap { padding: 0 28px 16px; }
.biz2-img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; display: block; }

.biz2-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 28px 20px; }
.biz2-features span { font-size: .75rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.biz2-card--d2c .biz2-features span, .biz2-card--b2b .biz2-features span { color: rgba(255,255,255,.8); }
.biz2-card--b2c .biz2-features span { color: #333; }
.biz2-features i { color: rgba(23,212,64,.9); font-size: .7rem; }

.biz2-stat { margin: 0 28px 28px; background: rgba(255,255,255,.1); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.biz2-card--b2c .biz2-stat { background: rgba(0,63,60,.08); }
.biz2-stat strong { font-size: 1.6rem; font-weight: 900; color: rgba(23,212,64,.9); line-height: 1; }
.biz2-stat span { font-size: .78rem; font-weight: 600; }
.biz2-card--d2c .biz2-stat span, .biz2-card--b2b .biz2-stat span { color: rgba(255,255,255,.65); }
.biz2-card--b2c .biz2-stat span { color: #555; }

.biz2-cta { text-align: center; }
.biz2-cta p { font-size: 1rem; color: #555; margin-bottom: 16px; font-weight: 500; }

@media (max-width: 992px) {
    .biz2-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
}
@media (max-width: 576px) {
    .biz2-section { padding: 60px 0; }
    .biz2-features { grid-template-columns: 1fr; }
}

/* ============================================================
   CREATIVE STRATEGY v3 — RADIAL CIRCLE INFOGRAPHIC
   ============================================================ */
.cs3-section {
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 100%);
    padding: 80px 40px;
    overflow: hidden;
}

/* Header */
.cs3-header { text-align: center; margin-bottom: 60px; }
.cs3-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; line-height: 1.15; }
.cs3-sub { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 900px; margin: 0 auto; line-height: 1.75; }

.cs3-radial-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0 40px;
    padding: 0 2rem;
    margin: 0 auto 48px;
}

/* ── SIDES ── */
.cs3-side { display: flex; flex-direction: column; gap: 32px; }

/* Each item row */
.cs3-item {
    display: flex;
    align-items: center;
    gap: 0;
}
.cs3-item--left { flex-direction: row; justify-content: flex-end; }
.cs3-item--right { flex-direction: row; justify-content: flex-start; }

/* Connector line */
.cs3-item-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(23,212,64,.2), rgba(23,212,64,.7));
    flex-shrink: 0;
}
.cs3-item--left .cs3-item-line {
    background: linear-gradient(90deg, rgba(23,212,64,.7), rgba(23,212,64,.2));
}

/* Dot at connection point */
.cs3-item-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(23,212,64,.9);
    border: 2px solid rgba(23,212,64,.3);
    box-shadow: 0 0 0 4px rgba(23,212,64,.1);
    flex-shrink: 0;
}

/* Text block */
.cs3-item-text--right { text-align: right; padding-right: 12px; }
.cs3-item-text--left { text-align: left; padding-left: 12px; }
.cs3-item-text h5 {
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}
.cs3-item-text p {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    line-height: 1.55;
    margin: 0;
}

/* ── CENTER CIRCLE ── */
.cs3-center {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rings */
.cs3-ring {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs3-ring--outer { width: 280px; height: 280px; animation: cs3Spin 20s linear infinite; }
.cs3-ring--mid   { width: 210px; height: 210px; animation: cs3Spin 14s linear infinite reverse; }
.cs3-ring-svg { width: 100%; height: 100%; }

/* Inner filled circle */
.cs3-inner-circle {
    position: relative;
    z-index: 3;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(23,212,64,.9), rgba(0,63,60,.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(23,212,64,.1),
        0 0 0 16px rgba(23,212,64,.05),
        0 12px 40px rgba(0,0,0,.3);
}
.cs3-inner-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 6px;
}

.cs3-inner-icon img{
  border-radius: 100%;
}
.cs3-inner-circle span {
    font-size: .65rem;
    font-weight: 800;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.4;
}

/* Orbit dots */
.cs3-orbit-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(23,212,64,.9);
    box-shadow: 0 0 8px rgba(23,212,64,.6);
    z-index: 4;
}
.cs3-orbit-dot--1 { top: 10px; left: 50%; transform: translateX(-50%); animation: cs3OrbitPulse 2s ease-in-out infinite; }
.cs3-orbit-dot--2 { bottom: 10px; left: 50%; transform: translateX(-50%); animation: cs3OrbitPulse 2s ease-in-out infinite .7s; }
.cs3-orbit-dot--3 { top: 50%; right: 10px; transform: translateY(-50%); animation: cs3OrbitPulse 2s ease-in-out infinite 1.4s; }

/* ── STATS STRIP ── */
.cs3-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px 40px;
    max-width: 900px;
    margin: 0 auto;
}
.cs3-strip-stat { text-align: center; padding: 0 32px; }
.cs3-strip-stat strong { display: block; font-size: 1.4rem; font-weight: 900; color: rgba(23,212,64,.9); line-height: 1; margin-bottom: 4px; }
.cs3-strip-stat span { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.cs3-strip-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* Animations */
@keyframes cs3Spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes cs3OrbitPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50%       { opacity: .4; transform: translateX(-50%) scale(.6); }
}

/* Responsive */
@media (max-width: 992px) {
    .cs3-radial-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 32px;
        justify-items: center;
    }
    .cs3-side--left, .cs3-side--right { width: 100%; max-width: 500px; }
    .cs3-side--left .cs3-item { flex-direction: row; justify-content: flex-start; }
    .cs3-side--left .cs3-item-text { text-align: left; padding-right: 0; padding-left: 12px; }
    .cs3-side--left .cs3-item-line { background: linear-gradient(90deg, rgba(23,212,64,.2), rgba(23,212,64,.7)); }
    .cs3-center { order: -1; }
}
@media (max-width: 576px) {
    .cs3-section { padding: 60px 20px; }
    .cs3-center { width: 220px; height: 220px; }
    .cs3-ring--outer { width: 220px; height: 220px; }
    .cs3-ring--mid   { width: 165px; height: 165px; }
    .cs3-inner-circle { width: 100px; height: 100px; }
    .cs3-inner-icon { font-size: 1.5rem; }
    .cs3-stats-strip { padding: 20px; gap: 16px; }
    .cs3-strip-div { display: none; }
    .cs3-strip-stat { padding: 0 12px; }
}

/* ── cs3 item image additions ── */
.cs3-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cs3-item-content--right { flex-direction: row-reverse; }
.cs3-item-content--left  { flex-direction: row; }

.cs3-item-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(23,212,64,.4);
    box-shadow: 0 0 0 4px rgba(23,212,64,.1);
    background: rgba(255,255,255,.06);
}
.cs3-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .cs3-item-img-wrap { width: 44px; height: 44px; }
}

/* ============================================================
   PROFESSIONAL FOUNDATION CTA SECTION
   ============================================================ */
.pf-cta-section {
    position: relative;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Background glows */
.pf-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.pf-bg-glow-1 { width: 500px; height: 500px; background: rgba(23,212,64,.1); top: -100px; left: -100px; }
.pf-bg-glow-2 { width: 400px; height: 400px; background: rgba(23,212,64,.07); bottom: -80px; right: -80px; }

/* Floating brand logos */
.pf-float-logo {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
    animation: pfLogoFloat 4s ease-in-out infinite;
}
.pf-float-logo--1 { top: 12%; right: 8%;  animation-delay: 0s; }
.pf-float-logo--2 { top: 20%; right: 18%; animation-delay: 1s; }
.pf-float-logo--3 { bottom: 20%; right: 6%; animation-delay: 2s; }
.pf-float-logo--4 { bottom: 30%; right: 22%; animation-delay: 1.5s; }

@keyframes pfLogoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Main inner layout */
.pf-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── LEFT: White card ── */
.pf-cta-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
    position: relative;
    z-index: 2;
}
.pf-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(23,212,64,.1);
    border: 1px solid rgba(23,212,64,.3);
    color: #15803d;
    font-size: .78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.pf-cta-h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #061b1b;
    line-height: 1.15;
    margin-bottom: 16px;
}
.pf-cta-highlight {
    background: linear-gradient(90deg, #003f3c, rgba(23,212,64,.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pf-cta-desc {
    font-size: .95rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 20px;
}
.pf-cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.pf-cta-pill {
    background: #f0fdf4;
    border: 1px solid rgba(23,212,64,.2);
    color: #15803d;
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pf-cta-pill i { font-size: .65rem; }
.pf-cta-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.pf-cta-mini-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,.08);
}
.pf-mini-stat { text-align: center; padding: 0 20px; }
.pf-mini-stat strong { display: block; font-size: 1.2rem; font-weight: 900; color: #003f3c; line-height: 1; }
.pf-mini-stat span { font-size: .7rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.pf-mini-div { width: 1px; height: 32px; background: rgba(0,0,0,.1); }

/* ── RIGHT: Device mockup ── */
.pf-cta-device {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.pf-device-wrap {
    position: relative;
    display: inline-block;
}

/* Phone frame */
.pf-phone-frame {
    width: 260px;
    background: #0a0a0a;
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,.1),
        0 32px 80px rgba(0,0,0,.5),
        inset 0 0 0 1px rgba(255,255,255,.05);
    position: relative;
}
.pf-phone-notch {
    width: 80px; height: 20px;
    background: #0a0a0a;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}
.pf-phone-notch::before {
    content: '';
    position: absolute;
    top: 4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
}
.pf-phone-screen {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}
.pf-phone-img {
    width: 100%;
    display: block;
    height: 420px;
    object-fit: cover;
    object-position: top;
}

/* Floating metric badges */
.pf-device-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    z-index: 3;
    animation: pfBadgeBob 3s ease-in-out infinite;
}
.pf-device-badge--tl { top: 30px; left: -60px; animation-delay: 0s; }
.pf-device-badge--br { bottom: 60px; right: -60px; animation-delay: 1.5s; }
.pf-device-badge i {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: .9rem;
    flex-shrink: 0;
}
.pf-device-badge strong { display: block; font-size: .88rem; font-weight: 800; color: #061b1b; line-height: 1.2; }
.pf-device-badge span { font-size: .68rem; color: #888; }

/* Live dot */
.pf-device-live {
    position: absolute;
    top: -16px; left: 50%; transform: translateX(-50%);
    background: rgba(6,27,27,.9);
    border: 1px solid rgba(23,212,64,.3);
    border-radius: 50px;
    padding: 5px 12px;
    display: flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.8);
    white-space: nowrap;
    z-index: 4;
}
.pf-device-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(23,212,64,.9);
    box-shadow: 0 0 0 3px rgba(23,212,64,.2);
    animation: pfLivePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pfBadgeBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes pfLivePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(23,212,64,.2); }
    50%       { box-shadow: 0 0 0 6px rgba(23,212,64,.08); }
}

/* Responsive */
@media (max-width: 992px) {
    .pf-cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .pf-cta-device { order: -1; }
    .pf-phone-frame { width: 220px; }
    .pf-phone-img { height: 340px; }
    .pf-device-badge--tl { left: -20px; }
    .pf-device-badge--br { right: -20px; }
    .pf-float-logo { display: none; }
}
@media (max-width: 576px) {
    .pf-cta-card { padding: 32px 24px; }
    .pf-cta-h2 { font-size: 1.7rem; }
    .pf-phone-frame { width: 200px; }
    .pf-phone-img { height: 300px; }
    .pf-device-badge { display: none; }
    .pf-mini-stat { padding: 0 12px; }
}

/* ============================================================
   PROFESSIONAL FOUNDATION CTA v2 — Exact image match
   ============================================================ */
.pf2-section {
    position: relative;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 55%, #0a2e2e 100%);
    padding: 80px 0;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* Background */
.pf2-bg { position: absolute; inset: 0; z-index: 0; }
.pf2-bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.pf2-bg-glow-1 { width: 600px; height: 600px; background: rgba(23,212,64,.08); top: -150px; left: -100px; }
.pf2-bg-glow-2 { width: 400px; height: 400px; background: rgba(23,212,64,.06); bottom: -100px; right: 10%; }

/* Floating logos — scattered on right half */
.pf2-logo {
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,.8);
    z-index: 2;
    animation: pf2Float 4s ease-in-out infinite;
}
.pf2-logo--1 { top: 10%; right: 12%; animation-delay: 0s; }
.pf2-logo--2 { top: 18%; right: 28%; animation-delay: .8s; color: rgba(23,212,64,.9); }
.pf2-logo--3 { bottom: 22%; right: 10%; animation-delay: 1.6s; }
.pf2-logo--4 { bottom: 30%; right: 30%; animation-delay: 2.4s; }
.pf2-logo--5 { top: 50%; right: 6%; animation-delay: 1.2s; }

@keyframes pf2Float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-10px) rotate(3deg); }
}

/* ── Main 3-column layout ── */
.pf2-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 3;
}

/* ── LEFT: White card ── */
.pf2-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 32px 80px rgba(0,0,0,.3);
    position: relative;
    z-index: 4;
    /* Slightly extend right to overlap phone */
    margin-right: -30px;
}
.pf2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(23,212,64,.1);
    border: 1px solid rgba(23,212,64,.25);
    color: #15803d;
    font-size: .75rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.pf2-h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: #061b1b;
    line-height: 1.15;
    margin-bottom: 14px;
}
.pf2-highlight {
    background: linear-gradient(90deg, #003f3c, rgba(23,212,64,.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pf2-desc {
    font-size: .9rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 380px;
}
.pf2-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.pf2-btn-primary {
    background: linear-gradient(135deg, #003f3c, rgba(23,212,64,.9));
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(23,212,64,.3);
}
.pf2-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(23,212,64,.4); color: #fff; }
.pf2-btn-ghost {
    color: #003f3c;
    font-size: .85rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(0,63,60,.2);
    display: inline-flex;
    align-items: center;
    transition: all .3s;
}
.pf2-btn-ghost:hover { border-color: rgba(23,212,64,.5); color: #003f3c; }
.pf2-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.pf2-trust span { font-size: .75rem; font-weight: 600; color: #888; display: flex; align-items: center; gap: 5px; }
.pf2-trust i { color: rgba(23,212,64,.9); font-size: .7rem; }

/* ── CENTER: Phone ── */
.pf2-phone-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
}
.pf2-phone {
    width: 240px;
    background: #0d0d0d;
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,.12),
        0 40px 100px rgba(0,0,0,.6),
        inset 0 0 0 1px rgba(255,255,255,.06);
    position: relative;
}
.pf2-phone-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 14px 4px;
    color: rgba(255,255,255,.7);
    font-size: .6rem;
}
.pf2-phone-time { font-weight: 700; font-size: .65rem; color: #fff; }
.pf2-phone-notch {
    width: 60px; height: 16px;
    background: #0d0d0d;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.pf2-phone-icons { display: flex; gap: 4px; font-size: .55rem; color: rgba(255,255,255,.7); }
.pf2-phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}
.pf2-phone-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Phone floating badges */
.pf2-phone-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    z-index: 6;
    white-space: nowrap;
    animation: pf2BadgeBob 3s ease-in-out infinite;
}
.pf2-phone-badge--tl { top: 40px; left: -80px; animation-delay: 0s; }
.pf2-phone-badge--br { bottom: 60px; right: -80px; animation-delay: 1.5s; }
.pf2-badge-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: .85rem;
    flex-shrink: 0;
}
.pf2-phone-badge strong { display: block; font-size: .85rem; font-weight: 800; color: #061b1b; line-height: 1.2; }
.pf2-phone-badge span { font-size: .65rem; color: #888; }

@keyframes pf2BadgeBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ── RIGHT: Stats on dark ── */
.pf2-right {
    padding-left: 60px;
    position: relative;
    z-index: 3;
}
.pf2-right-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pf2-rstat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all .3s;
}
.pf2-rstat:hover { background: rgba(23,212,64,.1); border-color: rgba(23,212,64,.3); }
.pf2-rstat h3 { font-size: 1.8rem; font-weight: 900; color: rgba(23,212,64,.9); margin: 0 0 4px; line-height: 1; }
.pf2-rstat p { font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 600; margin: 0; text-transform: uppercase; letter-spacing: .05em; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .pf2-phone-badge--tl { left: -50px; }
    .pf2-phone-badge--br { right: -50px; }
    .pf2-right { padding-left: 40px; }
}
@media (max-width: 992px) {
    .pf2-layout { grid-template-columns: 1fr; gap: 40px; }
    .pf2-card { margin-right: 0; max-width: 560px; margin: 0 auto; }
    .pf2-phone-wrap { order: -1; }
    .pf2-right { padding-left: 0; max-width: 560px; margin: 0 auto; }
    .pf2-phone-badge--tl { left: -20px; }
    .pf2-phone-badge--br { right: -20px; }
    .pf2-logo { display: none; }
}
@media (max-width: 576px) {
    .pf2-section { padding: 60px 0; }
    .pf2-card { padding: 32px 24px; }
    .pf2-phone { width: 200px; }
    .pf2-phone-img { height: 320px; }
    .pf2-phone-badge { display: none; }
    .pf2-right-stats { grid-template-columns: 1fr 1fr; }
    .pf2-rstat h3 { font-size: 1.4rem; }
}

/* ============================================================
   PROFESSIONAL FOUNDATION CTA v3 — One unified section
   ============================================================ */
.pf3-section {
    position: relative;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 90px 0;
    overflow: hidden;
}
.pf3-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.pf3-glow-1 { width: 500px; height: 500px; background: rgba(23,212,64,.1); top: -120px; left: -80px; }
.pf3-glow-2 { width: 350px; height: 350px; background: rgba(23,212,64,.07); bottom: -80px; right: 5%; }

/* Layout */
.pf3-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left — plain text on dark bg, no box */
.pf3-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
}
.pf3-desc {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 460px;
}
.pf3-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.pf3-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.pf3-trust span {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pf3-trust i { color: rgba(23,212,64,.9); font-size: .7rem; }

/* Right — image with floating icons */
.pf3-right { position: relative; }

/* Floating brand icons */
.pf3-icon {
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,.8);
    z-index: 3;
    animation: pf3IconFloat 4s ease-in-out infinite;
}
.pf3-icon--1 { top: -20px; left: 10%;  animation-delay: 0s;   color: rgba(23,212,64,.9); }
.pf3-icon--2 { top: 10%;  right: -10px; animation-delay: .8s; }
.pf3-icon--3 { bottom: 15%; right: -15px; animation-delay: 1.6s; }
.pf3-icon--4 { bottom: -10px; left: 20%; animation-delay: 2.4s; color: rgba(23,212,64,.8); }
.pf3-icon--5 { top: 40%;  left: -15px; animation-delay: 1.2s; }

@keyframes pf3IconFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Image */
.pf3-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.pf3-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    border-radius: 24px;
    display: block;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.pf3-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(6,27,27,.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating metric badges on image */
.pf3-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    z-index: 4;
    animation: pf3BadgeBob 3s ease-in-out infinite;
    white-space: nowrap;
}
.pf3-badge--tl { top: 24px; left: -20px; animation-delay: 0s; }
.pf3-badge--br { bottom: 60px; right: -20px; animation-delay: 1.5s; }
.pf3-badge-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: .85rem;
    flex-shrink: 0;
}
.pf3-badge strong { display: block; font-size: .85rem; font-weight: 800; color: #061b1b; line-height: 1.2; }
.pf3-badge span { font-size: .65rem; color: #888; }

/* Live indicator */
.pf3-live {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(6,27,27,.85);
    backdrop-filter: blur(10px);
    border-radius: 0 0 24px 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    z-index: 4;
}
.pf3-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(23,212,64,.9);
    box-shadow: 0 0 0 3px rgba(23,212,64,.2);
    animation: pf3Pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pf3BadgeBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes pf3Pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(23,212,64,.2); }
    50%       { box-shadow: 0 0 0 6px rgba(23,212,64,.08); }
}

/* Responsive */
@media (max-width: 992px) {
    .pf3-inner { grid-template-columns: 1fr; gap: 48px; }
    .pf3-right { order: -1; }
    .pf3-img { height: 320px; }
    .pf3-badge--tl { left: 10px; }
    .pf3-badge--br { right: 10px; }
}
@media (max-width: 576px) {
    .pf3-section { padding: 60px 0; }
    .pf3-img { height: 260px; }
    .pf3-badge { display: none; }
    .pf3-icon { width: 40px; height: 40px; font-size: 1rem; }
}

/* ============================================================
   COLLABORATOR PLAN SECTION v2
   ============================================================ */
.collab2-section {
    position: relative;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 90px 0;
    overflow: hidden;
}
.collab2-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.collab2-glow-1 { width: 500px; height: 500px; background: rgba(23,212,64,.1); top: -120px; left: -80px; }
.collab2-glow-2 { width: 400px; height: 400px; background: rgba(23,212,64,.07); bottom: -80px; right: -60px; }

/* Header */
.collab2-header { text-align: center; margin-bottom: 56px; }
.collab2-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; line-height: 1.12; }
.collab2-sub { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* Engine cards grid */
.collab2-engines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    align-items: start;
}

/* Base card */
.collab2-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all .3s;
}
.collab2-card:hover {
    border-color: rgba(23,212,64,.3);
    background: rgba(23,212,64,.06);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

/* Featured card */
.collab2-card--featured {
    background: rgba(23,212,64,.1);
    border-color: rgba(23,212,64,.35);
    box-shadow: 0 0 0 1px rgba(23,212,64,.2), 0 20px 60px rgba(0,0,0,.3);
    transform: translateY(-8px);
}
.collab2-card--featured:hover { transform: translateY(-14px); }
.collab2-featured-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(23,212,64,.9);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 2;
}

/* Card number */
.collab2-card-num {
    position: absolute;
    top: 16px; left: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    line-height: 1;
    z-index: 0;
}

/* Card icon */
.collab2-card-icon {
    position: absolute;
    top: 20px; left: 20px;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: rgba(23,212,64,.9);
    z-index: 2;
}

/* Card image */
.collab2-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.collab2-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .4s;
}
.collab2-card:hover .collab2-card-img img { transform: scale(1.04); }
.collab2-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(6,27,27,.8));
}

/* Card body */
.collab2-card-body { padding: 20px 24px 28px; position: relative; z-index: 1; }
.collab2-tag {
    font-size: .65rem;
    font-weight: 800;
    color: rgba(23,212,64,.9);
    background: rgba(23,212,64,.1);
    border: 1px solid rgba(23,212,64,.2);
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .08em;
    display: inline-block;
    margin-bottom: 10px;
}
.collab2-card-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}
.collab2-card-body p {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-bottom: 16px;
}
.collab2-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.collab2-list li {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.collab2-list i { color: rgba(23,212,64,.9); font-size: .7rem; flex-shrink: 0; }

/* Bottom CTA strip */
.collab2-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 28px 36px;
}
.collab2-cta-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.collab2-cstat { text-align: center; padding: 0 28px; }
.collab2-cstat strong { display: block; font-size: 1.4rem; font-weight: 900; color: rgba(23,212,64,.9); line-height: 1; margin-bottom: 3px; }
.collab2-cstat span { font-size: .7rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.collab2-cstat-div { width: 1px; height: 36px; background: rgba(255,255,255,.12); }
.collab2-cta-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.collab2-cta-note { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* Responsive */
@media (max-width: 992px) {
    .collab2-engines { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
    .collab2-card--featured { transform: none; }
    .collab2-cta-strip { flex-direction: column; text-align: center; }
    .collab2-cta-stats { justify-content: center; }
}
@media (max-width: 576px) {
    .collab2-section { padding: 60px 0; }
    .collab2-cta-strip { padding: 20px; }
    .collab2-cstat { padding: 0 16px; }
    .collab2-cstat-div { display: none; }
}

/* ============================================================
   COLLABORATOR PLAN v3 — Simple: left text+3boxes, right image
   ============================================================ */
.collab3-section {
    position: relative;
    background: linear-gradient(135deg, #061b1b 0%, #003f3c 60%, #0a2e2e 100%);
    padding: 90px 0;
    overflow: hidden;
}
.collab3-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(23,212,64,.08);
    filter: blur(100px);
    top: -150px; right: -100px;
    pointer-events: none;
}

/* Layout */
.collab3-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left */
.collab3-h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
}
.collab3-sub {
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 420px;
}
.collab3-note {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
    margin-left: 1rem;
}

/* 3 boxes */
.collab3-boxes {
    display: flex;
    gap: 12px;
}
.collab3-box {
    display: flex;
        flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 18px 20px;
    transition: all .3s;
}
.collab3-box:hover {
    border-color: rgba(23,212,64,.3);
    background: rgba(23,212,64,.07);
}
.collab3-box--active {
    background: rgba(23,212,64,.1);
    border-color: rgba(23,212,64,.3);
}
.collab3-box-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: 1rem;
    flex-shrink: 0;
}
.collab3-box h6 {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}
.collab3-box p {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    line-height: 1.55;
    margin: 0;
}

/* Right image */
.collab3-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.collab3-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.collab3-img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.collab3-img-badge i {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(23,212,64,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(23,212,64,.9);
    font-size: .9rem;
    flex-shrink: 0;
}
.collab3-img-badge strong { display: block; font-size: .88rem; font-weight: 800; color: #061b1b; line-height: 1.2; }
.collab3-img-badge span { font-size: .68rem; color: #888; }

/* Responsive */
@media (max-width: 992px) {
    .collab3-inner { grid-template-columns: 1fr; gap: 40px; }
    .collab3-img { height: 320px; }
}
@media (max-width: 576px) {
    .collab3-section { padding: 60px 0; }
    .collab3-img { height: 260px; }
}

/* ============================================================
   D2C / B2B / B2C — Logo center + connecting lines + 3 boxes
   ============================================================ */
.biz3-section { padding: 80px 0; background: #fff; }
.biz3-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #061b1b; line-height: 1.15; }
.biz3-sub { color: #555; font-size: 1rem; line-height: 1.75; max-width: 580px; margin: 0 auto; }

/* Diagram container */
.biz3-diagram { max-width: 1000px; margin: 0 auto 40px; }

/* Top row: D2C | center | B2B */
.biz3-top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
}

/* Center column */
.biz3-center-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: row;
    padding: 0 8px;
}

/* Horizontal lines */
.biz3-line {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, rgba(23,212,64,.3), rgba(23,212,64,.8));
    flex-shrink: 0;
}
.biz3-line--left  { background: linear-gradient(90deg, rgba(23,212,64,.8), rgba(23,212,64,.3)); }
.biz3-line--right { background: linear-gradient(90deg, rgba(23,212,64,.3), rgba(23,212,64,.8)); }

/* Logo wrap */
.biz3-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Vertical line going down */
.biz3-line-down {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(23,212,64,.8), rgba(23,212,64,.3));
}

/* Rings around logo */
.biz3-logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(23,212,64,.3);
    animation: biz3Spin 12s linear infinite;
}
.biz3-logo-ring--outer { width: 110px; height: 110px; animation-duration: 16s; }
.biz3-logo-ring--inner { width: 82px; height: 82px; animation-direction: reverse; animation-duration: 10s; }

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

/* Logo circle */
.biz3-logo-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003f3c, #005a55);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 6px rgba(23,212,64,.1), 0 8px 32px rgba(0,0,0,.15);
    position: relative;
    z-index: 2;
}
.biz3-logo-img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); }

/* Boxes */
.biz3-box {
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s;
}
.biz3-box:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.biz3-box--d2c { background: linear-gradient(160deg, #003f3c, #005a55); }
.biz3-box--b2b { background: linear-gradient.biz3-logo-ring--inn03f3c); }
.biz3-box--b2c { background: rgba(23,212,64,.08); b
@keyframes biz3Spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); er { padding: 24px 24
/* Logo circle */
.biz3-logosplay: flex; align-items: center; justify-content: space-between; margin-bottom: 1    width: 64px; hcon {
    width: 40px; height: 40    background: ldius: 1    display: flex; align-items: center; jus
    display: fl    box-shadow: 0 0 0 6px rgba(23,ontent: center;
    font-size:     position: relative;
    z-index: 2;
}
.biz3-logo-img { width: 40p{ bac    z-index: 2;
}
.biz.1}
.biz3-logo-if3c;
/* Boxes */
.biz3-box {
    border-radius: 20px;
   ht: 900;
    letter-spacing: .1em;
    background: rgba(23,212,64,.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
}
.biz3-bo.biz2c .biz3-badge { background: #003f3c; }
.biz3-box h5 { font-size: .95rem; font-weight: 800; margin-bottom: 6px; }
.biz3-box--d2c h5, .biz3-box--b2b h5 { color: #fff; }
.biz3-box--b2c h5 { color: #061b1b; }
.biz3-box p { font-size: .78rem; line-height: 1.6; margin-bottom: 12px; }
.biz3-box--d2c p, .biz3-box--b2b p { color: rgba(255,255,255,.7); }
.biz3-box--b2c p { color: #555; }
.biz3-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.biz3-tags span {
    font-size: .68rem; font-weight: 700;
    padding: 3px 9px; border-radius: 50px;
}
.biz3-box--d2c .biz3-tags span, .biz3-box--b2b .biz3-tags span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.biz3-box--b2c .biz3-tags span { background: rgba(0,63,60,.08); color: #003f3c; }
.biz3-stat { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.biz3-box--b2c .biz3-stat { border-top-color: rgba(0,63,60,.1); }
.biz3-stat strong { font-size: 1.3rem; font-weight: 900; color: rgba(23,212,64,.9); line-height: 1; }
.biz3-stat span { font-size: .72rem; font-weight: 600; }
.biz3-box--d2c .biz3-stat span, .biz3-box--b2b .biz3-stat span { color: rgba(255,255,255,.55); }
.biz3-box--b2c .biz3-stat span { color: #888; }

/* Bottom row */
.biz3-bottom-row {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    position: relative;
}
.biz3-bottom-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(23,212,64,.8), rgba(23,212,64,.3));
}

/* CTA */
.biz3-cta { text-align: center; }
.biz3-cta p { font-size: 1rem; color: #555; margin-bottom: 16px; font-weight: 500; }

/* Responsive */
@media (max-width: 768px) {
    .biz3-top-row { grid-template-columns: 1fr; gap: 0; }
    .biz3-center-col { padding: 20px 0; flex-direction: column; }
    .biz3-line { display: none; }
    .biz3-line-down { height: 30px; }
    .biz3-bottom-row { padding-top: 30px; }
    .biz3-bottom-row::before { height: 30px; }
    .biz3-logo-ring { display: none; }
}
}
}
}
}

/* ============================================================
   SERVICE PAGE — MEDIA CAROUSEL
   ============================================================ */
.svc-media-section {
    padding: 60px 0;
    background: #f8fffe;
}
.svc-media-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.svc-media-track {
    display: flex;
    transition: transform .4s ease;
}
.svc-media-slide {
    flex-shrink: 0;
}
.svc-media-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0 8px;
}
.svc-media-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.svc-media-caption {
    position: absolute;
    bottom: 16px; left: 24px; right: 24px;
    background: rgba(6,27,27,.8);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    text-align: center;
}
.svc-media-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #003f3c;
    font-size: .9rem;
    transition: all .2s;
    z-index: 3;
}
.svc-media-btn:hover { background: rgba(23,212,64,.9); color: #fff; }
.svc-media-btn:disabled { opacity: .3; cursor: not-allowed; }
.svc-media-btn--prev { left: 12px; }
.svc-media-btn--next { right: 12px; }
.svc-media-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 0;
}
.svc-media-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,63,60,.2);
    cursor: pointer;
    transition: all .2s;
}
.svc-media-dot.active {
    background: rgba(23,212,64,.9);
    width: 24px;
    border-radius: 4px;
}

/* Process card duration badge */
.sv2-process-duration {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(23,212,64,.9);
    background: rgba(23,212,64,.1);
    border: 1px solid rgba(23,212,64,.2);
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .svc-media-img { height: 240px; }
}
