:root {
  --navy: #0B1428;
  --navy-2: #101c36;
  --teal: #16803F;
  --teal-dark: #0F5C2C;
  --mint: #EAF7EE;
  --paper: #FFFFFF;
  --ink: #0B1428;
  --muted: #5C6B7A;
  --line: #E2E9EC;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

/* ---------- CUSTOM SCROLLBAR ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--mint);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--mint);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border-radius: 20px;
  border: 2px solid var(--mint);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: var(--mint);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  transition: .25s;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

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

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: #000;
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: .3s;
  background: rgba(11, 20, 40, .0);
}

header.scrolled {
  background: rgb(11 20 40 / 81%);
  backdrop-filter: blur(8px);
  padding: 14px 0;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  z-index: 2;
}

.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #7bd0dc);
  position: relative;
  flex-shrink: 0;
}

.brand .mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 5px;
  background: repeating-radial-gradient(circle at 3px 3px, rgba(11, 20, 40, .35) 0 1.4px, transparent 1.5px 5px);
}

.brand .logo-img {
  height: 76px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
}

.brand span.up {
  color: var(--teal);
}

nav {
  display: flex;
  gap: 34px;
}

nav a {
  color: #dfe8ee;
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  padding: 4px 0;
}

nav a:hover,
nav a.active {
  color: var(--teal);
}

.head-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfe8ee;
  transition: .2s;
}

.socials a svg {
  display: block;
}

.socials a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .25s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform .35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.mobile-nav a.active {
  color: var(--teal);
}

.mobile-nav .socials {
  margin-top: 20px;
}

/* ---------- HERO (shared banner) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero.small {
  min-height: 56vh;
}

.hero .bubbles {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, .10) 0 30%, transparent 32%);
  background-size: 46px 46px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(63, 169, 186, .22), transparent 55%), linear-gradient(120deg, rgba(11, 20, 40, .97) 20%, rgba(11, 20, 40, .55) 70%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 170px;
}

.hero.small .wrap {
  padding-bottom: 80px;
}

.hero h1 {
  font-weight: 400;
  color: #fff;
  font-size: clamp(32px, 6.2vw, 84px);
  line-height: 1.05;
  margin: 14px 0 26px;
  max-width: 920px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  color: #c7d3dc;
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.crumb {
  color: #c7d3dc;
  font-size: 14px;
  margin-top: 16px;
}

.crumb a {
  color: var(--teal);
  font-weight: 600;
}

/* ---------- STATS / CONNECT ---------- */
.connect-wrap {
  margin-top: -100px;
  position: relative;
  z-index: 3;
}

.connect {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  box-shadow: 0 30px 70px rgba(11, 20, 40, .28);
  background: #fff;
}

.connect-left {
  background: var(--teal);
  padding: 44px 44px;
  color: #fff;
  grid-row: span 2;
}

.connect-left .eyebrow {
  color: rgba(255, 255, 255, .75);
}

.connect-left h2 {
  font-size: 28px;
  margin: 12px 0 14px;
  line-height: 1.22;
}

.connect-left p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 22px;
  max-width: 420px;
  font-size: 14.5px;
}

.stat-box {
  background: #fff;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-box:nth-child(3),
.stat-box:nth-child(5) {
  border-right: none;
}

.stat-box:nth-child(4),
.stat-box:nth-child(5) {
  border-bottom: none;
}

.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--navy);
  line-height: 1;
}

.stat-box .lbl {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 6px;
  max-width: 200px;
}

/* ---------- CLIENTS ---------- */
.clients {
  padding: 120px 0 70px;
  text-align: center;
}

.clients h2 {
  font-size: clamp(26px, 4vw, 36px);
  max-width: 640px;
  margin: 16px auto 50px;
  line-height: 1.3;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-tile {
  aspect-ratio: 1/0.85;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  letter-spacing: .02em;
}

.client-tile:nth-child(4n+2) {
  background: linear-gradient(135deg, #22303f, #3FA9BA);
}

.client-tile:nth-child(4n+3) {
  background: linear-gradient(135deg, #1a2740, #557a86);
}

.client-tile:nth-child(4n+4) {
  background: linear-gradient(135deg, #0B1428, #2C8494);
}

/* ---------- CLIENT LOGO CAROUSEL (4 boxes, auto-cycling) ---------- */
.logo-carousel {
  grid-template-columns: repeat(4, 1fr);
}

.logo-box {
  position: relative;
  aspect-ratio: 1/0.85;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(11, 20, 40, .06);
  overflow: hidden;
}

.logo-slide {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 72%;
  max-height: 62%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .9s ease, transform .9s ease;
}

.logo-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* ---------- SPLIT / PRACTICES ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
}

.split-left {
  background: var(--navy);
  position: relative;
  padding: 80px 60px;
  color: #fff;
  overflow: hidden;
}

.split-left .bubbles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, .16) 0 38%, rgba(255, 255, 255, .03) 40% 45%, transparent 46%);
  background-size: 44px 44px;
}

.split-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 20, 40, .85), rgba(11, 20, 40, .4));
}

.split-left>* {
  position: relative;
  z-index: 2;
}

.split-left .eyebrow {
  color: var(--teal);
}

.split-left h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  color: #fff;
  margin: 14px 0 20px;
  max-width: 420px;
  line-height: 1.25;
}

.split-left p {
  color: #c7d3dc;
  max-width: 440px;
  margin-bottom: 32px;
}

.split-right {
  background: var(--teal);
  padding: 80px 60px;
  color: #fff;
}

.split-right h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.split-right>p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 30px;
  max-width: 440px;
}

.practice {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.practice:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.practice strong {
  font-size: 16px;
}

/* ---------- PRODUCTS ---------- */
.products {
  padding: 110px 0 0;
}

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.products-head h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px;
  display: block;
  cursor: pointer;
}

.product-card .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16, .84, .44, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-card .tex {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, .5) 0 34%, rgba(160, 210, 220, .15) 36% 42%, transparent 44%);
  background-size: 36px 36px;
}

.product-card:nth-child(1) .tex {
  background-color: #8fb9c2;
}

.product-card:nth-child(2) .tex {
  background-color: #5a8b96;
}

.product-card:nth-child(3) .tex {
  background-color: #c9974f;
  background-image: none;
}

.product-card:nth-child(4) .tex {
  background-color: #294256;
}

.product-card:nth-child(5) .tex {
  background-color: #16803F;
  background-image: none;
}

.product-card:nth-child(6) .tex {
  background-color: #7a5a3a;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 20, 40, .88) 0%, rgba(11, 20, 40, .05) 55%);
  z-index: 1;
}

.product-card .cap {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.product-card .cap strong {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  display: block;
}

.product-card .cap span {
  font-size: 13px;
  color: #c7d3dc;
}

/* ---------- PRODUCT SHOWCASE SLIDER ---------- */
.prod-showcase {
  padding: 100px 0 0;
}

.prod-slider {
  position: relative;
  width: 100%;
}

.prod-slides-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy);
  width: 100%;
  min-height: 440px;
  box-shadow: 0 20px 50px rgba(11, 20, 40, .15);
}

.prod-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.prod-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Transition classes */
.prod-slide.sliding {
  transition: transform .6s cubic-bezier(.4, 0, .2, 1), opacity .6s ease;
}

/* Enter from right (next product slides in from right) */
.prod-slide.enter-from-right {
  transform: translateX(100%);
  opacity: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Enter from left (prev product slides in from left) */
.prod-slide.enter-from-left {
  transform: translateX(-100%);
  opacity: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Exit to left (current slides out to the left) */
.prod-slide.exit-to-left {
  transform: translateX(-100%);
  opacity: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Exit to right (current slides out to the right) */
.prod-slide.exit-to-right {
  transform: translateX(100%);
  opacity: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.prod-slide-img {
  position: relative;
  overflow: hidden;
  background: #1a2740;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-slide-info {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.prod-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(22, 128, 63, .3);
  line-height: 1;
  margin-bottom: 12px;
}

.prod-slide-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.25;
}

.prod-slide-info p {
  color: #a9b7c2;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}

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

.prod-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(22, 128, 63, .15);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: .02em;
}

.prod-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Slider arrows */
.prod-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .3s ease;
  color: var(--navy);
  z-index: 5;
}

.prod-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: scale(1.08);
}

.prod-arrow svg {
  stroke: currentColor;
}

/* Slider dots */
.prod-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.prod-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(22, 128, 63, .2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .35s cubic-bezier(.16, .84, .44, 1);
}

.prod-dot.active {
  background: var(--teal);
  width: 30px;
  border-radius: 5px;
}

/* Facility card images */
.fac-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 20, 40, .88) 0%, rgba(11, 20, 40, .05) 55%);
}

.product-card .cap {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.product-card .cap strong {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  display: block;
}

.product-card .cap span {
  font-size: 13px;
  color: #c7d3dc;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 120px 0;
  background: var(--mint);
}

.testimonials .head {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--navy);
  padding: 34px 30px;
  border-bottom: 4px solid var(--teal);
  position: relative;
}

.review-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.review-card .stars {
  color: #F5C451;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 14px;
}

.review-card p.body {
  color: #c7d3dc;
  font-size: 14.5px;
  margin-bottom: 22px;
}

.review-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.review-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(22, 128, 63, .25);
  cursor: pointer;
  padding: 0;
  border: none;
  transition: transform .3s cubic-bezier(.16, .84, .44, 1), background .3s ease, width .3s ease;
}

.review-dots .dot.active {
  background: var(--teal);
  width: 26px;
  border-radius: 5px;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-foot .avatar-sm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #1a2740);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  flex-shrink: 0;
}

.review-foot strong {
  color: #fff;
  font-size: 14.5px;
  display: block;
}

.review-foot span {
  color: var(--teal);
  font-size: 12.5px;
}

/* ---------- TEAM ---------- */
.team {
  padding: 120px 0;
  background: var(--paper);
  text-align: center;
}

.team h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 14px 0 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.team-card {
  background: var(--navy);
  padding: 34px 28px 30px;
  border-bottom: 4px solid var(--teal);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #1a2740);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin-bottom: 20px;
}

.team-card .role {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.team-card h4 {
  color: #fff;
  font-size: 20px;
  margin: 8px 0 10px;
}

.team-card p {
  color: #a9b7c2;
  font-size: 13.5px;
}

.team-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.team-founders .team-card {
  border-bottom-color: #7bd0dc;
}

/* ---------- ABOUT PAGE EXTRAS ---------- */
.welcome {
  padding: 100px 0;
}

.welcome .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 14px 0 22px;
}

.welcome p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.welcome-panel {
  background: var(--navy);
  padding: 50px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.welcome-panel .bubbles {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, .16) 0 38%, transparent 46%);
  background-size: 40px 40px;
}

.welcome-panel>* {
  position: relative;
  z-index: 2;
}

.welcome-panel strong {
  color: var(--teal);
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
}

.welcome-panel .big {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.3;
}

.mission-band {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.mission-band .eyebrow {
  color: var(--teal);
}

.mission-band h2 {
  font-size: clamp(24px, 4vw, 34px);
  max-width: 760px;
  margin: 16px auto 0;
  line-height: 1.35;
  color: #fff;
}

.facilities {
  padding: 110px 0;
  background: var(--mint);
}

.facilities .head {
  text-align: center;
  margin-bottom: 50px;
}

.facilities h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 10px;
}

.fac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fac-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
}

.fac-card .tex {
  position: absolute;
  inset: 0;
  background-color: #3d5c68;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 14px);
}

.fac-card:nth-child(2) .tex {
  background-color: #22303f;
}

.fac-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 20, 40, .9) 0%, rgba(11, 20, 40, .1) 60%);
}

.fac-card .cap {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.specs {
  padding: 100px 0;
  background: var(--paper);
}

.specs .head {
  text-align: center;
  margin-bottom: 50px;
}

.specs h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 10px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.spec-card {
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}

.spec-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
}

.spec-note {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td,
.spec-table th {
  padding: 9px 4px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table td:first-child {
  color: var(--muted);
}

.spec-table td:last-child {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.tape-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.tape-card {
  margin-top: 0;
}

.tape-table-wrap {
  overflow-x: auto;
}

.tape-table {
  min-width: 380px;
}

.tape-table th {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--teal);
}

.tape-table td:last-child {
  text-align: left;
  font-weight: 400;
  color: var(--ink);
}

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

@media (max-width: 640px) {
  .spec-grid,
  .tape-grid {
    grid-template-columns: 1fr;
  }
}

.org {
  padding: 100px 0;
  text-align: center;
}

.org .head {
  margin-bottom: 50px;
}

.org h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 10px;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.org-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.org-node {
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 4px;
}

.org-node.lead {
  background: var(--teal);
  color: #fff;
}

.org-node.op {
  background: #eef4f5;
  color: var(--navy);
  border: 1px solid var(--line);
}

.org-arrow {
  color: var(--muted);
  font-size: 20px;
}

.bankers-strip {
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bankers-strip .eyebrow {
  margin-bottom: 20px;
}

.banker-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.banker-pill {
  padding: 16px 30px;
  background: var(--mint);
  border-radius: 40px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
}

/* ---------- BRANCHES / MAP ---------- */
.branches {
  padding: 110px 0 0;
  text-align: center;
}

.branches .head {
  margin-bottom: 50px;
}

.branches h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 10px;
}

.branch-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  text-align: left;
  align-items: stretch;
}

.branch-info h3 {
  font-size: 22px;
  margin-bottom: 22px;
}

.branch-info h4 {
  font-size: 14px;
  margin: 22px 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  font-weight: 700;
}

.branch-info h4:first-of-type {
  margin-top: 0;
}

.branch-info p,
.branch-info a:not(.btn) {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.branch-info .btn {
  margin-top: 26px;
  color: #fff;
}

.map-embed-wrap {
  overflow: hidden;
  min-height: 380px;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ---------- CLIENT LOGO MARQUEE (infinite right-to-left swipe) ---------- */
.client-marquee {
  padding: 90px 0 100px;
  text-align: center;
  overflow: hidden;
}

.client-marquee h2 {
  font-size: clamp(24px, 3.6vw, 32px);
  max-width: 640px;
  margin: 12px auto 46px;
}

.marquee-viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}

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

.marquee-logo {
  flex-shrink: 0;
  width: 170px;
  height: 104px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(11, 20, 40, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.marquee-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mint);
  margin-top: 110px;
}

.quote-form {
  background: var(--navy);
  padding: 80px 60px;
}

.quote-form h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.quote-form>p {
  color: #a9b7c2;
  margin-bottom: 34px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  margin-bottom: 20px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8492a0;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.faq {
  padding: 80px 60px;
}

.faq .eyebrow {
  color: var(--teal-dark);
}

.faq h2 {
  font-size: 32px;
  margin: 12px 0 34px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.faq-q {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  gap: 16px;
}

.faq-q .plus {
  font-size: 20px;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: .25s;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-a p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: #c7d3dc;
  padding: 90px 0 0;
  margin-top: 110px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.foot-grid h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin-bottom: 20px;
}

.foot-grid p,
.foot-grid li,
.foot-grid a {
  font-size: 14px;
  color: #a9b7c2;
  margin-bottom: 9px;
}

.foot-grid li {
  list-style: none;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.foot-bottom .socials a {
  border-color: rgba(255, 255, 255, .2);
}

/* ---------- WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 190;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  transition: .2s;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

.wa-float svg {
  display: block;
}

/* ---------- MOTION / ENTRANCE ---------- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .eyebrow {
  animation: heroFadeUp .8s cubic-bezier(.16, .84, .44, 1) both;
}

.hero h1 {
  animation: heroFadeUp .9s cubic-bezier(.16, .84, .44, 1) .1s both;
}

.hero p {
  animation: heroFadeUp .9s cubic-bezier(.16, .84, .44, 1) .22s both;
}

.hero .crumb,
.hero .hero-btns {
  animation: heroFadeUp .9s cubic-bezier(.16, .84, .44, 1) .32s both;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, .84, .44, 1), transform .8s cubic-bezier(.16, .84, .44, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.product-grid .reveal:nth-child(4n+2),
.fac-grid .reveal:nth-child(2),
.client-grid .reveal:nth-child(4n+2),
.logo-carousel .reveal:nth-child(4n+2),
.team-grid .reveal:nth-child(4n+2),
.team-founders .reveal:nth-child(2),
.review-grid .reveal:nth-child(2) {
  transition-delay: .1s;
}

.product-grid .reveal:nth-child(4n+3),
.client-grid .reveal:nth-child(4n+3),
.logo-carousel .reveal:nth-child(4n+3),
.team-grid .reveal:nth-child(4n+3),
.review-grid .reveal:nth-child(3) {
  transition-delay: .2s;
}

.product-grid .reveal:nth-child(4n+4),
.client-grid .reveal:nth-child(4n+4),
.logo-carousel .reveal:nth-child(4n+4),
.team-grid .reveal:nth-child(4n+4) {
  transition-delay: .3s;
}

/* ---------- INTERACTIVE MOTION ---------- */
.btn {
  transition: transform .3s cubic-bezier(.16, .84, .44, 1), box-shadow .3s ease, background .25s ease, color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 20, 40, .16);
}

.btn:active {
  transform: translateY(-1px);
}

.brand {
  transition: opacity .3s ease;
}

.brand:hover {
  opacity: .82;
}

nav a {
  transition: color .25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16, .84, .44, 1);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

.fac-card,
.team-card,
.logo-box,
.client-tile,
.branch-info,
.welcome-panel {
  transition: transform .4s cubic-bezier(.16, .84, .44, 1), box-shadow .4s ease;
}

.fac-card:hover,
.logo-box:hover,
.client-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(11, 20, 40, .18);
}

.team-card {
  transition: transform .35s cubic-bezier(.16, .84, .44, 1), box-shadow .35s ease, border-color .35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11, 20, 40, .12);
}

.org-node,
.banker-pill {
  transition: transform .3s ease, box-shadow .3s ease;
}

.org-node:hover,
.banker-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(11, 20, 40, .14);
}

.socials a {
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28), 0 0 0 0 rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.wa-float {
  animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float:hover {
  animation-play-state: paused;
}

/* ---------- SCROLL-LINKED SWIPE (SPLIT SECTION) ---------- */
/* No opacity fade — position is driven directly by scroll progress via JS
   (see inline script). will-change hints the browser this will animate. */
.split-left,
.split-right {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .hero .eyebrow,
  .hero h1,
  .hero p,
  .hero .crumb,
  .hero .hero-btns,
  .wa-float {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =================== RESPONSIVE =================== */
@media(max-width:1080px) {
  .wrap {
    padding: 0 24px;
  }

  .logo-carousel {
    gap: 14px;
  }
}

@media(max-width:900px) {
  header .wrap {
    gap: 12px;
  }

  .brand {
    font-size: clamp(15px, 4vw, 19px);
    gap: 8px;
  }

  .brand .logo-img {
    height: clamp(34px, 8vw, 46px);
  }

  nav,
  .head-right .socials {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }

  .hero .wrap {
    padding-top: 95px;
    padding-bottom: 20px;
  }

  .hero p {
    margin-bottom: 16px;
  }

  .connect-wrap {
    margin-top: -85px;
  }

  .connect {
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 15px 40px rgba(11, 20, 40, .2);
  }

  .connect-left {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 24px 20px;
  }

  .connect-left h2 {
    font-size: clamp(20px, 3.5vw, 26px);
    margin: 8px 0 10px;
    line-height: 1.25;
  }

  .connect-left p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .stat-box {
    padding: 18px 20px;
  }

  .stat-box .num {
    font-size: 24px;
  }

  .stat-box .lbl {
    font-size: 12.5px;
    max-width: none;
    margin-top: 4px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-left,
  .split-right {
    padding: 40px 28px;
  }

  .quote {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .faq {
    padding: 40px 28px;
  }

  .welcome .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .welcome-panel {
    padding: 28px 24px;
  }

  .fac-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-embed-wrap,
  .map-embed {
    min-height: 280px;
  }

  /* ---------- PRODUCT SLIDER RESPONSIVE (TABLET) ---------- */
  .prod-slider {
    position: relative;
    display: block;
  }

  .prod-arrow {
    position: absolute;
    top: 90px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border: none;
  }

  .prod-arrow-left {
    left: 10px;
  }

  .prod-arrow-right {
    right: 10px;
  }

  .prod-slides-viewport {
    min-height: 500px;
    height: 500px;
    width: 100%;
  }

  .prod-slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .prod-slide-img {
    height: 100%;
  }

  .prod-slide-img img {
    height: 100%;
  }

  .prod-slide-info {
    padding: 24px 20px;
    justify-content: center;
  }

  .prod-num {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .prod-slide-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .prod-slide-info p {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .tape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media(max-width:640px) {
  .wrap {
    padding: 0 16px;
  }

  .client-marquee {
    padding: 60px 0 70px;
  }

  .marquee-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .marquee-logo {
    width: 130px;
    height: 82px;
    padding: 12px;
  }

  header {
    padding: 12px 0;
  }

  header.scrolled {
    padding: 10px 0;
  }

  .brand {
    font-size: 14px;
    gap: 6px;
  }

  .brand .logo-img {
    height: 32px;
  }

  .hero .wrap {
   
    padding-bottom: 415px;
  }

  .hero h1 {
    font-size: clamp(22px, 6.5vw, 32px);
    margin: 10px 0 14px;
  }

  .hero p {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 11.5px;
  }

  .connect-wrap {
    margin-top: -309px;
  }

  .connect {
    grid-template-columns: 1fr 1fr;
  }

  .connect-left {
    grid-column: 1 / -1;
    padding: 20px 16px;
  }

  .connect-left h2 {
    font-size: 18.5px;
    margin: 6px 0 8px;
  }

  .connect-left p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .stat-box {
    padding: 14px 14px;
  }

  .stat-box .num {
    font-size: 20px;
  }

  .stat-box .lbl {
    font-size: 11px;
    margin-top: 3px;
    max-width: none;
  }

  .client-grid,
  .logo-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-box {
    border-radius: 6px;
  }

  .logo-slide {
    max-width: 82%;
    max-height: 60%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-card .cap {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .product-card .cap strong {
    font-size: 13px;
  }

  .product-card .cap span {
    font-size: 10.5px;
  }

  .review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-dots {
    display: flex;
  }

  .review-card {
    min-width: 80vw;
    max-width: 80vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 24px 20px;
  }

  .review-card .quote-mark {
    font-size: 38px;
    margin-bottom: 4px;
  }

  .review-card p.body {
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .review-foot .avatar-sm {
    width: 36px;
    height: 36px;
    font-size: 13.5px;
  }

  .review-foot strong {
    font-size: 13.5px;
  }

  .review-foot span {
    font-size: 11.5px;
  }

  .team-founders {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-card {
    padding: 22px 18px;
  }

  .team-card .avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .team-card .role {
    font-size: 11px;
  }

  .team-card h4 {
    font-size: 15px;
    margin: 6px 0 8px;
  }

  .team-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .split-left,
  .split-right,
  .quote-form,
  .faq {
    padding: 36px 20px;
  }

  .split-left h2,
  .split-right h3,
  .quote-form h2,
  .faq h2 {
    font-size: 22px;
  }

  .split-left p,
  .split-right>p,
  .quote-form>p,
  .faq-a p {
    font-size: 13.5px;
  }

  .welcome .wrap {
    gap: 24px;
  }

  .welcome-panel {
    padding: 28px 20px;
  }

  .welcome-panel .big {
    font-size: 18px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .branch-info h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .branch-info h4 {
    font-size: 13px;
    margin: 14px 0 4px;
  }

  .branch-info p,
  .branch-info a {
    font-size: 13px;
  }

  .map-embed-wrap,
  .map-embed {
    min-height: 260px;
  }

  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .foot-grid h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .foot-grid p,
  .foot-grid li,
  .foot-grid a {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 12px;
  }

  .products-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .org-row {
    gap: 8px;
  }

  .org-node {
    padding: 8px 12px;
    font-size: 11.5px;
  }

  .banker-row {
    gap: 12px;
  }

  .prod-slides-viewport {
    min-height: 460px;
    height: 460px;
  }

  .prod-slide {
    grid-template-rows: 261px 1fr;
  }

  .prod-slide-info {
    padding: 16px 14px;
  }

  .prod-slide-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .prod-slide-info p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .prod-tags span {
    padding: 4px 8px;
    font-size: 10.5px;
  }

  .prod-arrow {
    width: 38px;
    height: 38px;
    top: 75px;
  }

  .prod-arrow-left {
    left: 8px;
  }

  .prod-arrow-right {
    right: 8px;
  }

  .prod-nav-bar {
    gap: 12px;
    margin-top: 16px;
  }

  .tape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .spec-card.tape-card {
    padding: 14px 10px;
  }

  .spec-card.tape-card h3 {
    font-size: 12.5px;
    margin-bottom: 10px;
    line-height: 1.35;
  }

  .spec-table td,
  .spec-table th {
    padding: 6px 2px;
    font-size: 11px;
  }
}

@media(max-width:420px) {
  header .wrap {
    gap: 8px;
  }

  .brand {
    font-size: 13px;
  }

  .brand .logo-img {
    height: 30px;
  }

  .connect-left {
    padding: 28px 18px;
  }

  .connect-left h2 {
    font-size: 19px;
  }

  .connect-left p {
    font-size: 12.5px;
  }

  .stat-box {
    padding: 14px 12px;
  }

  .stat-box .num {
    font-size: 18px;
  }

  .stat-box .lbl {
    font-size: 10.5px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .client-grid,
  .logo-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}