:root {
  /* ARISEPK theme - dark blue & bright blue accent */
  --primary: #3366FF;
  --primary-soft: rgba(51, 102, 255, 0.12);
  --dark: #0F1A3B;
  --dark-soft: #101E49;
  --text-main: #FFFFFF;
  --text-muted: #94a3b8;
  --card-bg: #1E2B4D;
  --border-soft: rgba(148, 163, 184, 0.3);
  --accent: #3366FF;
  --hero-blue-dark: #101E49;
  --hero-blue-mid: #1E407C;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--dark);
  /* Geometric planes + diagonal lines (matches reference image) */
  background-image: url("../images/bg-pattern.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-main);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.navbar-brand .logo-img {
  height: 85px;
  width: auto;
  max-height: 85px;
  display: block;
  object-fit: contain;
}

/* Center pill container */
.nav-pill-shell{
  background: var(--card-bg);
  border-radius: 50px;
  padding: 6px 10px;
}

/* Nav links */
.nav-pill-link{
  color: #d1d5db;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all .3s ease;
}

/* Hover */
.nav-pill-link:hover{
  color: white;
}

/* Active */
.nav-pill-link.active{
  background-color: #101E49 !important;
  color: #fff;
  border-radius: 12px;
  border: 1px solid #1E407C !important;
}

/* CTA button */
.btn-nav-cta{
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.btn-nav-cta:hover{
  background: #101E49;
  color: #fff;
}

/* Nav: mobile menu – white background and dark toggle for small devices */
@media (max-width: 991px) {
  .navbar {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .navbar-toggler {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
  }

  .navbar-toggler:hover {
    background: #f5f5f5 !important;
    border-color: rgba(0, 0, 0, 0.3);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
    outline: none;
  }

  .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .nav-pill-shell {
    background: none;
  }

  .navbar .container {
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .navbar .navbar-brand {
    flex-shrink: 1;
    min-width: 0;
    margin-right: 0.5rem;
  }

  .navbar .navbar-brand .logo-img {
    max-width: 100%;
    object-fit: contain;
  }

  .navbar .navbar-toggler {
    flex-shrink: 0;
    margin-left: auto;
  }

  .navbar-collapse {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-pill-shell .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-pill-link {
    padding: 10px 16px;
    text-align: center;
    color: #000 !important;
  }

  .nav-pill-link:hover {
    color: #000 !important;
    opacity: 0.85;
  }

  .nav-pill-link.active {
    color: #fff !important;
  }

  .navbar-brand .logo-img {
    height: 72px;
    max-height: 72px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand .logo-img {
    height: 60px;
    max-height: 60px;
  }
}

/* Extra breakpoint so navbar stays white on devices that report width just above 991px (e.g. some Android/Chrome) */
@media (min-width: 992px) and (max-width: 1024px) {
  .navbar {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
  }
  .navbar-toggler {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* HERO - initial state for entrance animation */
#hero .hero-inner .hero-heading-line,
#hero .hero-inner .hero-heading-highlight,
#hero .hero-inner .hero-subtitle,
#hero .hero-inner .hero-cta {
  opacity: 0;
}

/* HERO */
.hero {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--card-bg);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-badge span {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-small {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.6rem;
  margin-bottom: 0.9rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  color: var(--text-main);
  font-size: 0.9rem;
}

.hero-play .play-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--card-bg);
}

.hero-stats {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  color: #e5e7eb;
}

/* New centered hero layout */
.hero-landing {
  position: relative;
  overflow: hidden;
  /* background on body so animation shows through top white gradient */
  background: linear-gradient(180deg, #fafbfd 0%, #f0f2f7 4%, #e8ecf4 8%, #c5cddc 12%, #8a9ab5 18%, #3d4f6f 38%, #101e47 58%);
}

.hero-landing::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35%;
  height: 60%;
  z-index: -1;
}

/* Hero section gentle up-down float animation */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-landing .hero-inner {
  animation: heroFloat 2s ease-in-out infinite;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-heading h1 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.hero-heading-line {
  display: block;
}

.hero-heading-line-large {
  margin-top: 0.25rem;
}

.hero-heading-highlight {
  display: inline-block;
  margin: 0 0.35rem;
  padding: 0.25rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  transform: skewX(-10deg);
}

.hero-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
}

/* Agency highlight strip under hero (full width) */
.agency-highlight {
  width: 100%;
  max-width: 100%;
  /* background on body so animation shows through */
}

.agency-highlight-wrapper {
  position: relative;
  width: 100%;
}

.agency-highlight-media {
  position: relative;
  overflow: hidden;
  background: transparent;
  width: 100%;
}

.agency-highlight-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  opacity: 0.12;
}

.agency-highlight-marquee-inner {
  white-space: nowrap;
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  animation: agencyMarquee 22s linear infinite;
}

.agency-highlight-img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 65%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.agency-highlight-img {
  width: auto;
  max-width: 65%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.agency-highlight-card {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  background: rgba(15, 26, 59, 0.96);
  border-radius: 20px;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.agency-highlight-label {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.agency-highlight-avatars {
  display: inline-flex;
}

.agency-highlight-avatars .avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #101E49;
  background: linear-gradient(135deg, #c4f1ff, #93c5fd);
  margin-left: -8px;
}

.agency-highlight-avatars .avatar-circle:first-child {
  margin-left: 0;
}

.agency-highlight-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.agency-highlight-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

@media (max-width: 767.98px) {
  .agency-highlight-wrapper {
    margin-top: 0;
  }

  .agency-highlight-marquee-inner {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }

  .agency-highlight-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.2rem;
  }

  .agency-highlight-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 575.98px) {
  .agency-highlight-marquee-inner {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }

  .agency-highlight-card {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .agency-highlight-avatars .avatar-circle {
    width: 24px;
    height: 24px;
    margin-left: -6px;
  }

  .agency-highlight-meta {
    font-size: 0.8rem;
  }
}

.hero-subtitle.hero-subtitle-center {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

.hero-cta.hero-cta-centered {
  margin-top: 2rem;
  justify-content: center;
}

.hero-main-btn {
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--primary);
  border: none;
  color: #fff;
  box-shadow: 0 18px 40px rgba(51, 102, 255, 0.35);
}

.hero-btn-icon {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1rem;
}

.hero-main-btn:hover {
  background: #5c7cff;
  color: #fff;
}

/* Hero responsive typography */
@media (max-width: 991.98px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-icon-badge {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin: 0 0.35rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-main-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-heading {
    font-size: 1.85rem;
  }

  .hero-heading-line-large {
    margin-top: 0.2rem;
  }

  .hero-icon-badge {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin: 0 0.25rem;
  }

  .hero-heading-highlight {
    padding: 0.2rem 0.65rem;
    font-size: inherit;
  }

  .hero-subtitle,
  .hero-subtitle.hero-subtitle-center {
    max-width: 100%;
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-heading h1 {
    font-size: inherit;
  }

  .hero-icon-badge {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* Global primary buttons used elsewhere */
.btn-primary-solid {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.btn-primary-solid:hover {
  background: #5c7cff;
  color: #fff;
}

.btn-primary-soft {
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  border: 1px solid rgba(51, 102, 255, 0.5);
  font-weight: 500;
}

.btn-primary-soft:hover {
  background: rgba(51, 102, 255, 0.22);
  color: #a5b4fc;
}

.hero-metric-card {
  background: linear-gradient(135deg, var(--card-bg), var(--dark));
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 26, 59, 0.85);
  max-width: 440px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.hero-metric-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(51, 102, 255, 0.18), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}

.hero-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-metric-pill {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

.hero-metric-logo {
  font-weight: 800;
  font-size: 0.92rem;
  color: #e5e7eb;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metric-box {
  background: rgba(30, 43, 77, 0.85);
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-metric-value {
  margin-top: 0.3rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f9fafb;
}

.hero-metric-footer {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-metric-badge {
  background: rgba(22, 163, 74, 0.19);
  color: #4ade80;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-200plus {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  padding: 0.22rem 0.65rem;
  border: 1px dashed rgba(34, 197, 94, 0.55);
  font-size: 0.75rem;
  color: #bbf7d0;
  margin-top: 0.7rem;
}

/* Container padding on small screens to avoid edge-to-edge content */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* SECTION GENERIC */
.section {
  padding: 4.3rem 0;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

.section-desc {
  color: var(--text-muted);
  max-width: 30rem;
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-desc {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .section-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }
}

/* SERVICES */
.services-bg {
  background: transparent;
}

.services-grid {
  margin-top: 1.5rem;
}

.service-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(51, 102, 255, 0.16), transparent 60%),
    var(--card-bg);
  border-radius: 1.6rem;
  padding: 2rem 2.1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 26px 60px rgba(15, 26, 59, 0.95);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 1);
  border-color: rgba(51, 102, 255, 0.6);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(15, 26, 59, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.service-link {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
}

.service-link:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .service-card {
    padding: 1.5rem 1.5rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    padding: 1.25rem 1.25rem;
  }
}

/* STATS / BRANDS */
.pill-tag {
  display: inline-block;
  font-size: 0.76rem;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  background: var(--primary-soft);
  border: 1px solid rgba(51, 102, 255, 0.35);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 1.4rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  height: 100%;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #e5e7eb;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* BRANDS STRIP */
.brands-strip {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), transparent 55%),
    var(--dark-soft);
  border-radius: 1.8rem;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .brands-strip {
    padding: 1.25rem 1rem;
    border-radius: 1.25rem;
  }
}

.brands-marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
}

.brands-marquee-top {
  margin-bottom: 0.9rem;
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: brandsScrollLeft 22s linear infinite;
}

.brands-marquee-bottom .brands-marquee-track {
  animation: brandsScrollRight 22s linear infinite;
}

.brand-logo-card {
  min-width: 150px;
  height: 70px;
  border-radius: 0.9rem;
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 1rem;
  box-shadow: 0 16px 40px rgba(15, 26, 59, 0.9);
}

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

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

@media (max-width: 575.98px) {
  .brand-logo-card {
    min-width: 120px;
    height: 60px;
    font-size: 0.8rem;
  }
}

/* CASE STUDIES */
.case-studies-header {
  margin-bottom: 2.5rem;
}

.case-studies-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.case-studies-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

.case-studies-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  perspective: 1200px;
}

/* Two columns: left and right in a single row */
.case-study-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.case-study-col-right {
  margin-top: 3.5rem;
}

/* Each block is a separate rounded box */
.case-study-box {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.case-study-box:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

/* Image box – separate card with slight lift */
.case-study-screen {
  position: relative;
  aspect-ratio: 600 / 340;
  overflow: hidden;
  background: var(--dark-soft);
}

.case-study-col-left .case-study-screen {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.case-study-col-right .case-study-screen {
  transform: perspective(1000px) rotateY(2deg) rotateX(1deg);
}

.case-study-screen:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-2px);
}

.case-study-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-screen-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case-study-screen-green {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.12) 0%, var(--dark-soft) 40%);
}

.case-study-screen-green .case-study-screen-overlay {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, transparent 50%, rgba(22, 163, 74, 0.12) 100%);
}

.case-study-screen-pink {
  background: linear-gradient(160deg, rgba(236, 72, 153, 0.1) 0%, rgba(251, 146, 60, 0.08) 30%, var(--dark-soft) 60%);
}

.case-study-screen-pink .case-study-screen-overlay {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, transparent 40%, rgba(251, 146, 60, 0.12) 100%);
}

/* Details box – separate dark card below image box */
.case-study-body {
  padding: 1.5rem 1.6rem 1.75rem;
  background: var(--card-bg);
}

.case-study-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fb923c;
  margin-bottom: 0.6rem;
}

.case-study-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.case-study-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.case-study-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.case-study-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fb923c;
  line-height: 1.2;
}

.case-study-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.case-studies-cta {
  margin-top: 2rem;
}

.btn-view-all {
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .case-study-col-right {
    margin-top: 0;
  }

  .case-study-col-left .case-study-screen,
  .case-study-col-right .case-study-screen {
    transform: none;
  }

  .case-study-screen:hover {
    transform: translateY(-2px);
  }

  .case-studies-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 767.98px) {
  .case-studies-cards-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .case-study-heading {
    font-size: 0.98rem;
  }

  .case-study-metric-value {
    font-size: 1.25rem;
  }
}

/* PERFORMANCE HIGHLIGHT */
.performance-highlight {
  background: transparent;
}

.performance-highlight .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.performance-hero {
  position: relative;
  text-align: center;
}

.performance-stats {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.performance-pill {
  min-width: 150px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), transparent 65%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(10px);
}

.performance-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f9fafb;
}

.performance-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.performance-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.performance-cards-row {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 920px;
  padding: 0 1.5rem;
  z-index: 2;
}

.performance-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.4rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  height: 100%;
}

.performance-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.performance-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.performance-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.performance-values-row {
  margin-top: 2.2rem;
  gap: 0.75rem;
  position: relative;
  z-index: 3;
}

.performance-value-pill {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), transparent 65%);
  border: 1px solid rgba(148, 163, 184, 0.65);
  color: #f9fafb;
  font-size: 0.82rem;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.performance-value-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.45rem;
  background: rgba(251, 146, 60, 0.14);
  border: 1px solid rgba(251, 146, 60, 0.9);
}

.performance-value-text {
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* SHARK TANK CLIENTS SECTION */
.shark-tank-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.shark-tank-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.shark-tank-card {
  background: rgba(30, 43, 77, 0.85);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shark-tank-card:hover {
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.shark-tank-card-image-wrap {
  aspect-ratio: 400 / 240;
  overflow: hidden;
  background: var(--card-bg);
}

.shark-tank-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shark-tank-card-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 1rem 1.25rem 0.4rem;
}

.shark-tank-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 1.25rem 1.25rem;
  line-height: 1.5;
}

.shark-tank-highlight {
  color: #fb923c;
  font-weight: 600;
}

.shark-tank-stat {
  white-space: nowrap;
}

.shark-tank-icon {
  margin-left: 0.15rem;
  opacity: 0.95;
}

.shark-tank-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.shark-tank-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(30, 43, 77, 0.8);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shark-tank-arrow:hover {
  background: rgba(51, 102, 255, 0.25);
  border-color: rgba(51, 102, 255, 0.5);
  color: #fff;
}

#sharkTankCarousel .carousel-control-prev,
#sharkTankCarousel .carousel-control-next {
  display: none;
}

@media (max-width: 991.98px) {
  .shark-tank-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .shark-tank-title {
    font-size: 1.5rem;
  }

  .shark-tank-desc {
    font-size: 0.88rem;
  }

  .shark-tank-card-brand {
    font-size: 1rem;
    margin: 0.85rem 1rem 0.35rem;
  }

  .shark-tank-card-text {
    font-size: 0.82rem;
    margin: 0 1rem 1rem;
  }

  /* Performance: stack below image on small screens */
  .performance-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .performance-hero .performance-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    order: 1;
  }

  .performance-stats {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    margin-top: 1.25rem;
    order: 2;
  }

  .performance-cards-row {
    position: static;
    transform: none;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 1rem 0.75rem;
    margin-top: 1rem;
    order: 3;
  }

  .performance-pill {
    min-width: 120px;
    padding: 0.7rem 0.9rem;
  }

  .performance-number {
    font-size: 1.2rem;
  }

  .performance-card {
    padding: 1.2rem 1.3rem;
  }

  .performance-values-row {
    margin-top: 1.5rem;
    justify-content: center;
  }

  .performance-value-pill {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .performance-hero .performance-image {
    max-height: 220px;
  }

  .shark-tank-title {
    font-size: 1.35rem;
  }

  .shark-tank-card {
    border-radius: 1rem;
  }

  .performance-pill {
    min-width: 100px;
    padding: 0.6rem 0.75rem;
  }

  .performance-number {
    font-size: 1.1rem;
  }

  .performance-label {
    font-size: 0.72rem;
  }
}

/* TESTIMONIALS */
.testimonials-section {
  position: relative;
  overflow: hidden;
  /* background on body so animation shows through */
}

.testimonials-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  color: rgba(148, 163, 184, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-scroll-outer {
  max-height: 65vh;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-bottom: 2rem;
}

.testimonials-scroll-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: testimonialsScroll 45s linear infinite;
}

.testimonials-scroll-inner:hover {
  animation-play-state: paused;
}

@keyframes testimonialsScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  flex-shrink: 0;
  background: rgba(30, 43, 77, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
}

.testimonial-stars {
  color: #fb923c;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.testimonial-quote {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fb923c;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: Georgia, serif;
}

.testimonial-headline {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(51, 102, 255, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e5e7eb;
  flex-shrink: 0;
}

.testimonial-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-company {
  color: #e5e7eb;
  font-weight: 500;
}

.testimonial-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
  .testimonials-scroll-outer {
    max-height: 55vh;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .testimonial-card {
    padding: 1.25rem 1.25rem;
  }

  .testimonial-quote {
    font-size: 2.5rem;
  }

  .testimonial-headline {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonials-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .testimonials-bg-text {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .testimonials-scroll-outer {
    max-height: 50vh;
  }

  .testimonial-card {
    padding: 1rem 1rem;
  }

  .testimonial-quote {
    font-size: 2rem;
  }

  .testimonial-headline {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.8rem;
  }

  .testimonial-meta {
    font-size: 0.75rem;
  }

  .testimonial-logo {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }

  .testimonials-section-title {
    font-size: 1.35rem;
  }
}

/* VIDEO LINKS */
.video-links-row {
  align-items: flex-start;
}

.video-link-card {
  background: var(--card-bg);
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.video-single {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--dark-soft);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.video-single:hover {
  transform: scale(1.02);
}

.video-single img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-attribution-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 1rem 0 0.2rem;
}

.video-attribution-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.video-links-cta {
  margin-top: 2rem;
}

.btn-video-cta {
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-icon {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .video-link-card {
    padding: 1rem;
  }

  .video-attribution-name {
    font-size: 0.95rem;
  }

  .video-attribution-role {
    font-size: 0.78rem;
  }

  .btn-video-cta {
    padding: 0.65rem 1.35rem;
    font-size: 0.85rem;
  }
}

/* OUR SPECIALITIES (WHY US) */
.specialities-header {
  margin-bottom: 2rem;
}

.specialities-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.specialities-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.specialities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.speciality-block {
  border-radius: 1.15rem;
  overflow: hidden;
}

.speciality-block-image {
  background: transparent;
}

.speciality-image-wrap {
  position: relative;
  aspect-ratio: 600 / 380;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--card-bg);
}

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

.speciality-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  pointer-events: none;
}

.speciality-image-label {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.speciality-image-highlight {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  margin-left: 0.15rem;
}

.speciality-block-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 1rem 0 0;
  padding: 0 0.25rem;
}

.speciality-block-card {
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem 1.6rem;
}

.speciality-card-intro {
  font-size: 0.88rem;
  color: #e5e7eb;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.speciality-big-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.speciality-big-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.speciality-card-footer {
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.speciality-block-tags {
  position: relative;
  min-height: 200px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speciality-tags-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(51, 102, 255, 0.18) 0%, rgba(30, 43, 77, 0.6) 40%, rgba(51, 102, 255, 0.12) 100%);
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.speciality-tags-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.speciality-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 102, 255, 0.4);
}

.speciality-block-accent {
  background: var(--primary);
  border: none;
  padding: 1.5rem 1.6rem;
}

.speciality-accent-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.speciality-accent-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.speciality-accent-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991.98px) {
  .specialities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .specialities-title {
    font-size: 1.75rem;
  }

  .speciality-image-label {
    font-size: 1.5rem;
    bottom: 1.5rem;
    left: 1rem;
  }

  .speciality-big-number {
    font-size: 2.25rem;
  }

  .speciality-accent-number {
    font-size: 2.25rem;
  }

  .speciality-block-card,
  .speciality-block-accent {
    padding: 1.25rem 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .specialities-header {
    margin-bottom: 1.5rem;
  }

  .specialities-title {
    font-size: 1.5rem;
  }

  .speciality-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .speciality-image-label {
    font-size: 1.25rem;
    bottom: 1.25rem;
  }

  .speciality-big-number {
    font-size: 1.9rem;
  }

  .speciality-accent-number {
    font-size: 1.9rem;
  }

  .speciality-block-tags {
    min-height: 160px;
    padding: 1rem;
  }

  .speciality-tag {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }
}

/* TEAM */
.team-section {
  overflow: hidden;
  /* background on body so animation shows through */
}

.team-section .container {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.team-header {
  margin-bottom: 2rem;
  text-align: center;
}

.team-badge {
  display: inline-block;
  background: #fb923c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.team-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.team-scroll-outer {
  overflow: hidden;
  margin: 0 -1rem;
}

.team-scroll-inner {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 1rem;
  animation: teamScroll 20s linear infinite;
}

.team-scroll-inner:hover {
  animation-play-state: paused;
}

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

.team-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--card-bg);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.team-photo {
  aspect-ratio: 200 / 240;
  overflow: hidden;
  background: var(--dark-soft);
}

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

.team-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 0.75rem 0.2rem;
  line-height: 1.25;
}

.team-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0 0.75rem 1rem;
}

@media (max-width: 767.98px) {
  .team-title {
    font-size: 1.65rem;
  }

  .team-card {
    width: 180px;
  }

  .team-photo {
    aspect-ratio: 180 / 220;
  }
}

@media (max-width: 575.98px) {
  .team-header {
    margin-bottom: 1.5rem;
  }

  .team-title {
    font-size: 1.45rem;
  }

  .team-card {
    width: 160px;
  }

  .team-photo {
    aspect-ratio: 160 / 200;
  }

  .team-name {
    font-size: 0.72rem;
    padding: 0.6rem 0.6rem 0.15rem;
  }

  .team-role {
    font-size: 0.68rem;
    padding: 0 0.6rem 0.85rem;
  }
}

/* LET'S TALK! / CONTACT */
.lets-talk-row {
  align-items: flex-start;
}

.lets-talk-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}

.lets-talk-word {
  color: #fff;
}

.lets-talk-accent {
  color: var(--primary);
}

.lets-talk-form-wrap {
  background: var(--card-bg);
  border-radius: 1.25rem;
  padding: 1.75rem 1.85rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.lets-talk-form .row {
  margin-bottom: 0;
}

.lets-talk-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}

.lets-talk-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: none;
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  transition: background 0.2s ease;
}

.lets-talk-input::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.lets-talk-input:focus {
  outline: none;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 2px rgba(51, 102, 255, 0.4);
}

.lets-talk-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lets-talk-btn:hover {
  background: #5c7cff;
  color: #fff;
}

@media (max-width: 991.98px) {
  .lets-talk-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .lets-talk-form-wrap {
    padding: 1.35rem 1.35rem;
  }

  .lets-talk-input {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .lets-talk-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .lets-talk-heading {
    font-size: 1.75rem;
  }

  .lets-talk-form-wrap {
    padding: 1.15rem 1.15rem;
  }

  .lets-talk-label {
    font-size: 0.75rem;
  }
}

/* FOOTER */
.footer {
  padding: 3rem 0 2rem;
  background: transparent;
  font-size: 0.85rem;
}

.footer-top {
  margin-bottom: 2rem;
  align-items: flex-start;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
  padding: 1.5rem 0;
}

.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.footer-contact-icon {
  flex-shrink: 0;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.footer-contact-icon svg {
  display: block;
}

.footer-contact-text {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
}


.footer-nav-row {
  justify-content: flex-end;
}

.footer-col-title {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-link {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-follow-block {
  background: transparent;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social-label {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #d3d3d3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-icon:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: #fff;
}

.footer-social-icon svg {
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding-top: 1rem;
  /* border-top: 1px solid rgba(148, 163, 184, 0.2); */
}

.footer-bottom-link {
  color: #d3d3d3;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-bottom-link:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .footer-top {
    padding: 1.25rem 0;
  }

  .footer-contact-cards {
    margin-bottom: 1.5rem;
  }

  .footer-nav-row {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-top {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
  }

  .footer-contact-card {
    padding: 0.85rem 1rem;
  }

  .footer-contact-text {
    font-size: 0.82rem;
  }

  .footer-follow-block {
    padding: 1.5rem 1rem 1rem;
    margin-top: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.85rem;
  }

  .footer-bottom-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .footer-col-title {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .footer-social-label {
    font-size: 0.9rem;
  }

  .footer-social-icon {
    width: 40px;
    height: 40px;
  }
}

/* RESPONSIVE – hero (legacy .hero-title) */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 5.5rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-metric-card {
    margin-top: 2rem;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.15rem;
  }
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Base: hidden until in view */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.is-visible {
  opacity: 1;
}

/* Fade up - default choice for sections */
.animate-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in only */
.animate-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease 0.15s;
}

.animate-fade-in.is-visible {
  opacity: 1;
}

/* Scale in - good for cards/images */
.animate-scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left/right */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for children */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }
.animate-delay-7 { transition-delay: 0.7s; }
.animate-delay-8 { transition-delay: 0.8s; }
.animate-delay-9 { transition-delay: 0.9s; }
.animate-delay-10 { transition-delay: 1s; }
