/* =====================================================
   OZEN KASHEVET — SaaS Dark Theme
   Pixel-perfect match to saas-v-b-WARM-full.html
   ===================================================== */

/* CSS VARIABLES */
:root {
  --bg: #080A0C;
  --s1: #0E1114;
  --s2: #141820;
  --s3: #1C2028;
  --teal: #14B8A6;
  --teal2: #2DD4BF;
  --teal3: #5EEAD4;
  --teal-glow: rgba(20,184,166,0.12);
  --teal-soft: rgba(20,184,166,0.06);
  --w: #fff;
  --w9: rgba(255,255,255,0.92);
  --w8: rgba(255,255,255,0.85);
  --w6: rgba(255,255,255,0.7);
  --w5: rgba(255,255,255,0.6);
  --w3: rgba(255,255,255,0.35);
  --w15: rgba(255,255,255,0.18);
  --w1: rgba(255,255,255,0.1);
  --w05: rgba(255,255,255,0.05);
  --gold: #C9A84C;
  --warm: rgba(20,184,166,0.04);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--w9);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  direction: rtl;
}
::selection { background: rgba(20,184,166,0.3); }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: 'Heebo', sans-serif; }
input, textarea { font-family: 'Heebo', sans-serif; }

/* ===================== SKIP TO CONTENT ===================== */
.skip-to-content {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--teal);
  color: var(--bg);
  padding: 12px 24px;
  z-index: 200;
  font-weight: 700;
  transition: top 0.3s;
}
.skip-to-content:focus {
  top: 0;
}

/* ===================== NAV ===================== */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,10,12,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(20,184,166,0.1);
}
.logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo em {
  color: var(--teal);
  font-style: normal;
}
.logo__img {
  height: 36px;
  width: auto;
  display: block;
}
.n-links {
  display: flex;
  gap: 28px;
  align-items: center;
  position: relative;
}
.n-links > a,
.n-dropdown > a {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.n-links > a:hover,
.n-dropdown > a:hover {
  color: #14B8A6;
  border-bottom-color: #14B8A6;
}
.n-links > a.active,
.n-dropdown > a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 700;
}
/* Active pill background for emphasis */
.n-links > a.active {
  background: rgba(20,184,166,0.12);
  padding: 4px 12px;
  border-radius: 100px;
  border-bottom: none;
}

/* Services dropdown */
.n-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.n-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: rgba(14,17,20,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(20,184,166,0.12);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  z-index: 10;
}
.n-dropdown:hover .n-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.n-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--w5);
  border-radius: 8px;
  transition: all 0.2s;
}
.n-dropdown-menu a:hover {
  background: var(--w05);
  color: var(--w);
}

.n-cta {
  background: linear-gradient(135deg, #14B8A6, #2DD4BF);
  color: #050505;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease;
  display: inline-block;
}
.n-cta:hover {
  transform: scale(1.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--w);
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,10,12,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: var(--w5);
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal);
}
.mobile-menu__cta {
  margin-top: 16px;
  display: inline-block;
}

/* ===================== HERO with BG IMAGE ===================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.85);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,12,0.7) 0%, rgba(8,10,12,0.25) 40%, rgba(8,10,12,0.8) 100%);
}
/* Glow orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.18) 0%, rgba(20,184,166,0.05) 40%, transparent 65%);
  top: -150px;
  right: -150px;
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 60%);
  bottom: -100px;
  left: -200px;
  pointer-events: none;
  z-index: 1;
}
.h-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.h-label::before, .h-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.h-label::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.h-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -5px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.h-title span {
  display: block;
  background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-title em {
  display: block;
  -webkit-text-fill-color: var(--teal);
  font-style: normal;
}
.h-sub {
  font-size: 18px;
  color: var(--w6);
  max-width: 440px;
  line-height: 1.65;
  margin: 0 auto 40px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.h-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.h-btns a {
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.hb-p {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  box-shadow: 0 0 40px rgba(20,184,166,0.2);
}
.hb-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 48px rgba(20,184,166,0.35);
}
.hb-g {
  background: rgba(255,255,255,0.1);
  color: var(--w);
  border: 1px solid var(--w15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hb-g:hover {
  background: rgba(255,255,255,0.15);
}
.h-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
.h-stat {
  text-align: center;
}
.h-stat__n {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
}
.h-stat__n em {
  color: var(--teal);
  font-style: normal;
}
.h-stat__l {
  font-size: 11px;
  color: var(--w3);
  font-weight: 500;
  margin-top: 2px;
}

/* ===================== SHARED SECTION ===================== */
.sec {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.sec__e {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec__t {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.sec__t em {
  color: var(--teal);
  font-style: normal;
}
.sec__d {
  font-size: 16px;
  color: var(--w5);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ===================== PROBLEMS (Bento) ===================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.bc {
  background: linear-gradient(145deg, rgba(20,184,166,0.04), var(--s1));
  border: 1px solid rgba(20,184,166,0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.bc::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(20,184,166,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.bc:hover::before { opacity: 1; }
.bc:hover {
  border-color: rgba(20,184,166,0.5);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 32px rgba(20,184,166,0.15);
  transform: translateY(-4px);
}
.bc:nth-child(1) { grid-column: span 2; }
.bc:nth-child(4) { grid-column: span 2; }
.bc__i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.bc:hover .bc__i {
  background: var(--teal);
  color: var(--bg);
  border-color: var(--teal);
}
.bc__t {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.bc__x {
  font-size: 13px;
  color: var(--w5);
  line-height: 1.6;
}

/* ===================== PHOTO STRIP ===================== */
.photo-strip {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
}
.photo-strip img {
  filter: brightness(0.55) saturate(0.95);
}
.photo-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
}
.photo-strip__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}
.photo-strip__text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}
.photo-strip__text h3 em {
  color: var(--teal);
  font-style: normal;
}

/* ===================== SERVICES ===================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc {
  background: linear-gradient(180deg, rgba(20,184,166,0.03), var(--s1));
  border: 1px solid rgba(20,184,166,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.svc:hover::before { opacity: 1; }
.svc:hover {
  transform: translateY(-8px);
  border-color: rgba(20,184,166,0.5);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 32px rgba(20,184,166,0.15);
}
.svc__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.svc__img img {
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.svc:hover .svc__img img {
  transform: scale(1.05);
}
.svc__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.6));
}
.svc__num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  z-index: 2;
  letter-spacing: -2px;
}
.svc__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc__t {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.svc__m {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 14px;
}
.svc__desc {
  font-size: 14px;
  color: var(--w5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc__list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.svc__list li {
  font-size: 13px;
  color: var(--w3);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.svc__link {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--w1);
  width: 100%;
  transition: gap 0.3s;
}
.svc__link:hover { gap: 12px; }

/* ===================== QUOTE ===================== */
.qb {
  text-align: center;
  padding: 56px 40px;
  border-top: 1px solid rgba(20,184,166,0.12);
  border-bottom: 1px solid rgba(20,184,166,0.12);
  background: linear-gradient(180deg, rgba(20,184,166,0.02), transparent);
  position: relative;
}
.qb::before {
  content: '"';
  font-size: 120px;
  font-weight: 900;
  color: rgba(20,184,166,0.35);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 50%;
  transform: translateX(50%);
  line-height: 1;
}
.qb p {
  font-size: 20px;
  font-weight: 300;
  color: var(--w5);
  max-width: 560px;
  margin: 0 auto 8px;
  line-height: 1.7;
  font-style: italic;
}
.qb em {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}

/* ===================== PROCESS ===================== */
.process-wrap {
  border-top: 1px solid rgba(20,184,166,0.1);
  border-bottom: 1px solid rgba(20,184,166,0.1);
  background: linear-gradient(180deg, rgba(20,184,166,0.02), transparent, rgba(20,184,166,0.02));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ps {
  padding: 48px 36px;
  border-left: 1px solid var(--w1);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.ps:last-child { border-left: none; }
.ps:hover { background: var(--w05); }
.ps__num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(20,184,166,0.4);
  letter-spacing: -3px;
  margin-bottom: 16px;
  line-height: 1;
  transition: color 0.3s;
}
.ps:hover .ps__num { color: rgba(20,184,166,0.7); }
.ps__arrow {
  position: absolute;
  left: -8px;
  top: 56px;
  color: var(--w1);
  font-size: 10px;
}
.ps__t {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.ps__x {
  font-size: 13px;
  color: var(--w5);
  line-height: 1.6;
}
.process-cta {
  text-align: center;
  padding: 56px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-cta__line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin: 0 auto 28px;
}
.process-cta__t {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}
.process-cta__s {
  font-size: 15px;
  color: var(--w5);
  margin-bottom: 24px;
}
.process-cta__btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.process-cta__btns a {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===================== SPLIT SECTION ===================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.split--reverse { direction: ltr; }
.split--reverse > * { direction: rtl; }
.split__img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.split__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.split:hover .split__img img { transform: scale(1.03); }
.split__img::after {
  content: '';
  position: absolute;
  inset: 0;
}
.split--right .split__img::after {
  background: linear-gradient(90deg, transparent 50%, var(--bg));
}
.split--left .split__img::after {
  background: linear-gradient(-90deg, transparent 50%, var(--bg));
}
.split__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__content .sec__e { margin-bottom: 10px; }
.split__content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.split__content h2 em {
  color: var(--teal);
  font-style: normal;
}
.split__content p {
  font-size: 15px;
  color: var(--w5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.split__features {
  list-style: none;
  margin-bottom: 28px;
}
.split__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--w6);
  padding: 6px 0;
}
.split__features li i {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 10px;
  flex-shrink: 0;
}
.check-square {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #14B8A6;
  flex-shrink: 0;
}
.split__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  align-self: flex-start;
}
.split__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20,184,166,0.3);
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.about-img {
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--w1);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--s2), var(--s3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 900;
  color: rgba(20,184,166,0.15);
}
.about-intro {
  font-size: 16px;
  color: var(--w5);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-quote {
  padding: 24px;
  border-radius: 16px;
  border-right: 3px solid var(--teal);
  background: rgba(20,184,166,0.04);
  margin-bottom: 32px;
}
.about-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--w5);
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.as {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(20,184,166,0.1);
  background: rgba(20,184,166,0.03);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.as:hover { border-color: rgba(20,184,166,0.4); box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); }
.as__n {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}
.as__n em {
  color: var(--teal);
  font-style: normal;
}
.as__l {
  font-size: 11px;
  color: var(--w3);
  margin-top: 2px;
}

/* Beliefs */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.beliefs-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.belief-card {
  background: linear-gradient(145deg, rgba(20,184,166,0.04), var(--s1));
  border: 1px solid rgba(20,184,166,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.belief-card:hover {
  border-color: rgba(20,184,166,0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(20,184,166,0.1);
}
.belief-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.belief-icon svg {
  width: 32px;
  height: 32px;
  fill: #14B8A6;
}
.belief-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.belief-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ===================== INLINE FORM ===================== */
.inline-form {
  border-top: 1px solid rgba(20,184,166,0.15);
  border-bottom: 1px solid rgba(20,184,166,0.15);
  padding: 40px;
  background: linear-gradient(135deg, rgba(20,184,166,0.05), rgba(20,184,166,0.1));
}
.inline-form__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.inline-form__text h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.inline-form__text p {
  font-size: 14px;
  color: var(--w5);
}
.inline-form__fields {
  display: flex;
  gap: 8px;
}
.inline-form__fields input {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--w15);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--w);
  font-size: 14px;
  width: 160px;
  transition: border-color 0.3s;
}
.inline-form__fields input:focus {
  border-color: var(--teal);
  outline: none;
}
.inline-form__fields input::placeholder {
  color: var(--w3);
}
.inline-form__fields button {
  background: var(--teal);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inline-form__fields button:hover {
  background: var(--teal2);
}

/* ===================== REVIEWS ===================== */
.reviews-sec {
  background: linear-gradient(180deg, var(--s1), rgba(20,184,166,0.03), var(--s1));
  border-top: 1px solid rgba(20,184,166,0.1);
  border-bottom: 1px solid rgba(20,184,166,0.1);
}
.reviews-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.testimonials-carousel {
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
}
.rc {
  background: linear-gradient(145deg, rgba(20,184,166,0.04), rgba(14,17,20,0.8));
  border: 1px solid rgba(20,184,166,0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.rc:hover { border-color: rgba(20,184,166,0.4); box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 32px rgba(20,184,166,0.15); }
.rc__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.rc__stars i {
  color: var(--gold);
  font-size: 12px;
}
.rc__text {
  font-size: 14px;
  color: var(--w5);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}
.rc__tag {
  display: inline-flex;
  background: rgba(20,184,166,0.06);
  border: 1px solid rgba(20,184,166,0.12);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
  align-self: flex-start;
}
.rc__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--w1);
}
.rc__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.rc__name {
  font-size: 14px;
  font-weight: 700;
}
.rc__dog {
  font-size: 12px;
  color: var(--w3);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 32px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(20,184,166,0.08);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--teal); }
.faq-q h3 {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--teal);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: transparent;
  color: var(--teal);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
/* JS handles open state via inline styles (scrollHeight-based) */
.faq-answer p {
  font-size: 14px;
  color: var(--w5);
  line-height: 1.8;
}

/* ===================== CTA ===================== */
.cta-sec {
  position: relative;
  overflow: hidden;
}
.cta-sec__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-sec__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.75);
}
.cta-sec__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,12,0.75), rgba(8,10,12,0.55));
}
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 120px 40px;
}
.cta-persuade .cta-eye {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-persuade h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.cta-persuade h2 em {
  color: var(--teal);
  font-style: normal;
}
.cta-persuade > p {
  font-size: 16px;
  color: var(--w5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--w8);
}
.cta-trust-item i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(20,184,166,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 11px;
  flex-shrink: 0;
}
.cta-mini-review {
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--w1);
  background: var(--w05);
}
.cta-mini-review p {
  font-size: 14px;
  font-style: italic;
  color: var(--w5);
  line-height: 1.7;
  margin-bottom: 6px;
}
.cta-mini-review span {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}
.form-testimonial-carousel {
  position: relative;
  min-height: 120px;
}
.form-testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  padding: 20px;
}
.form-testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.cta-form-card {
  background: linear-gradient(180deg, rgba(20,184,166,0.06), rgba(14,17,20,0.9));
  border: 1px solid rgba(20,184,166,0.15);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(20,184,166,0.06);
}
.cta-form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,0.5), transparent);
}
.cta-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.cta-form-card input,
.cta-form-card textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--w1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--w);
  font-size: 14px;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}
.cta-form-card input:focus,
.cta-form-card textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.08);
}
.cta-form-card input::placeholder,
.cta-form-card textarea::placeholder {
  color: var(--w3);
}
/* Phone field: LTR typing, RTL placeholder */
input[type="tel"],
input[name="phone"] {
  direction: ltr;
  text-align: right;
}
input[type="tel"]::placeholder,
input[name="phone"]::placeholder {
  direction: rtl;
  text-align: right;
}

/* Breadcrumbs (inside hero) */
.breadcrumbs {
  position: absolute;
  top: 16px;
  right: 40px;
  z-index: 2;
  direction: rtl;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}
.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover {
  color: var(--teal, #14B8A6);
}
.bc-sep {
  color: #444;
  font-size: 11px;
  margin: 0 4px;
}
.bc-current {
  color: #aaa;
  font-weight: 400;
}
/* Inside mini-hero: breadcrumbs flow normally (not absolute) */
.israpet-mini-hero .breadcrumbs {
  position: static;
  margin-bottom: 16px;
}

.cta-form-card textarea {
  min-height: 80px;
  resize: vertical;
}
.cta-form-card button[type="submit"] {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  padding: 16px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  transition: all 0.3s;
  margin-top: 4px;
}
.cta-form-card button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20,184,166,0.3);
}
.cta-divider {
  text-align: center;
  font-size: 13px;
  color: var(--w3);
  margin: 16px 0;
  position: relative;
}
.cta-divider::before, .cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--w1);
}
.cta-divider::before { right: 0; }
.cta-divider::after { left: 0; }
.cta-phone {
  display: block;
  text-align: center;
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.3s;
}
.cta-phone:hover { opacity: 0.7; }
.cta-hours {
  text-align: center;
  font-size: 12px;
  color: var(--w3);
  margin-top: 6px;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success i {
  font-size: 48px;
  color: var(--teal);
  margin-bottom: 16px;
}
.form-success p {
  font-size: 18px;
  font-weight: 700;
  color: var(--w);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid rgba(20,184,166,0.12);
  padding: 64px 40px 0;
  background: linear-gradient(180deg, rgba(20,184,166,0.03), var(--s1));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand .f-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--w);
  margin-bottom: 10px;
}
.footer-brand .f-logo em {
  color: var(--teal);
  font-style: normal;
}
.f-logo__img {
  height: 40px;
  width: auto;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.22s;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-social a i {
  font-size: 16px;
}
.footer-social a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(20,184,166,0.1);
  transform: translateY(-2px);
}
.f-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.f-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color 0.22s;
}
.f-col a:hover { color: var(--teal); }
.f-col a i {
  margin-left: 6px;
  font-size: 11px;
}
.f-hours {
  display: block;
  font-size: 12px;
  color: #888;
  padding: 2px 0;
  margin-top: 4px;
}
.f-hours:first-of-type { margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(20,184,166,0.08);
  margin-top: 40px;
  padding: 16px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #999;
}
.footer-israpet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  direction: rtl;
}
.footer-israpet a { color: #666; }
.footer-israpet a:hover { color: var(--teal); }
.footer-israpet-logo {
  height: 18px;
  width: auto;
  opacity: 0.7;
  vertical-align: middle;
  transition: opacity 0.22s;
}
.footer-israpet-logo:hover { opacity: 1; }

/* ===================== 404 PAGE ===================== */
.israpet-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 24px;
}
.israpet-404__container {
  max-width: 480px;
}
.israpet-404__paw {
  font-size: 72px;
  color: var(--teal);
  margin-bottom: 24px;
}
.israpet-404__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.israpet-404__subtitle {
  color: var(--w5);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.israpet-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.israpet-404__actions .btn {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  transition: all 0.3s;
}
.israpet-404__actions .btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
}
.israpet-404__actions .btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--w);
  border: 1px solid var(--w15);
}

/* ===================== FLOATING BUTTONS ===================== */
.float-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-call,
.float-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.float-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.float-call {
  background: var(--teal);
  box-shadow: 0 4px 20px rgba(20,184,166,0.35);
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(20,184,166,0.5);
}
.float-call[data-biz="0"] { display: none; }

/* ===================== REVIEWS MARQUEE ===================== */

/* ===================== SECTION COLOR VARIANTS ===================== */

/* Full-width wrapper for sections that need colored backgrounds */
.sec-wrap {
  width: 100%;
}

/* ---------- LIGHT (White) sections ---------- */
.sec--light {
  background: #F8FAFB;
  color: #1A1A2E;
}
/* .sec elements get full-width bg via box-shadow (no wrapper needed) */
.sec.sec--light {
  box-shadow: 0 0 0 100vmax #F8FAFB;
  clip-path: inset(-2px -100vmax);
}
.sec.sec--teal {
  position: relative;
}
.sec.sec--teal::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
  z-index: 0;
  pointer-events: none;
}
.sec.sec--teal > * {
  position: relative;
  z-index: 1;
}
.sec--light .sec__e {
  color: var(--teal);
}
.sec--light .sec__t {
  color: #1A1A2E;
}
.sec--light .sec__t em {
  color: var(--teal);
}
.sec--light .sec__d {
  color: #555;
}
/* Light bento cards */
.sec--light .bc {
  background: #fff;
  border-color: #E2E8F0;
}
.sec--light .bc:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(20,184,166,0.12);
}
.sec--light .bc__i {
  color: var(--teal);
  border-color: var(--teal);
}
.sec--light .bc:hover .bc__i {
  background: var(--teal);
  color: #fff;
}
.sec--light .bc__t {
  color: #1A1A2E;
}
.sec--light .bc__x {
  color: #666;
}
/* Light service cards */
.sec--light .svc {
  background: #fff;
  border-color: #E2E8F0;
}
.sec--light .svc:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(20,184,166,0.15);
}
.sec--light .svc__t {
  color: #1A1A2E;
}
.sec--light .svc__m {
  color: var(--teal);
}
.sec--light .svc__desc {
  color: #555;
}
.sec--light .svc__list li {
  color: #666;
}
.sec--light .svc__link {
  color: var(--teal);
  border-top-color: #E2E8F0;
}
.sec--light .svc__num {
  color: rgba(20,184,166,0.15);
}
/* Light process */
.sec--light.process-wrap {
  background: #F8FAFB;
  border-color: #E2E8F0;
}
.sec--light .ps {
  border-left-color: #E2E8F0;
}
.sec--light .ps:hover {
  background: rgba(20,184,166,0.04);
}
.sec--light .ps__num {
  color: rgba(20,184,166,0.35);
}
.sec--light .ps:hover .ps__num {
  color: rgba(20,184,166,0.6);
}
.sec--light .ps__t {
  color: #1A1A2E;
}
.sec--light .ps__x {
  color: #666;
}
.sec--light .ps__arrow {
  color: #ccc;
}
.sec--light .process-cta__t {
  color: #1A1A2E;
}
.sec--light .process-cta__s {
  color: #666;
}
.sec--light .process-cta__line {
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.sec--light .hb-g {
  background: rgba(20,184,166,0.08);
  color: var(--teal);
  border-color: var(--teal);
}
.sec--light .hb-g:hover {
  background: rgba(20,184,166,0.15);
}
/* Light about */
.sec--light .about-intro {
  color: #555;
}
.sec--light .about-quote {
  background: rgba(20,184,166,0.06);
  border-right-color: var(--teal);
}
.sec--light .about-quote p {
  color: #444;
}
.sec--light .about-img {
  border-color: #E2E8F0;
}
.sec--light .as {
  background: #fff;
  border-color: #E2E8F0;
}
.sec--light .as:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(20,184,166,0.12);
}
.sec--light .as__n {
  color: #1A1A2E;
}
.sec--light .as__n em {
  color: var(--teal);
}
.sec--light .as__l {
  color: #888;
}
.sec--light .belief-card {
  background: #fff;
  border-color: #E2E8F0;
}
.sec--light .belief-card:hover {
  border-color: rgba(20,184,166,0.4);
  box-shadow: 0 8px 24px rgba(20,184,166,0.1);
}
.sec--light .belief-title {
  color: #1A1A2E;
}
.sec--light .belief-text {
  color: #666;
}
.sec--light .belief-icon svg {
  fill: var(--teal);
}
/* Light split */
.sec--light.split {
  background: #F8FAFB;
}
.sec--light .split__content h2 {
  color: #1A1A2E;
}
.sec--light .split__content h2 em {
  color: var(--teal);
}
.sec--light .split__content p {
  color: #555;
}
.sec--light .split__content .sec__e {
  color: var(--teal);
}
.sec--light .split__features li {
  color: #444;
}
.sec--light .check-square {
  background: var(--teal);
}
.sec--light.split--right .split__img::after {
  background: linear-gradient(90deg, transparent 40%, #F8FAFB);
}
.sec--light.split--left .split__img::after {
  background: linear-gradient(-90deg, transparent 40%, #F8FAFB);
}
.sec--light .split__img img {
  filter: brightness(0.75) saturate(1);
}
/* Light FAQ */
.sec--light .faq-item {
  border-bottom-color: #E2E8F0;
}
.sec--light .faq-q {
  color: #1A1A2E;
}
.sec--light .faq-q:hover {
  color: var(--teal);
}
.sec--light .faq-q h3 {
  color: inherit;
}
.sec--light .faq-answer p {
  color: #555;
}
.sec--light .faq-toggle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.sec--light .faq-item.open .faq-toggle {
  background: transparent;
  color: var(--teal);
}
/* Light reviews */
.sec--light.reviews-sec {
  background: #F8FAFB;
  border-color: #E2E8F0;
}
.sec--light .rc {
  background: #fff;
  border-color: #E2E8F0;
}
.sec--light .rc:hover {
  border-color: var(--teal);
}
.sec--light .rc__text {
  color: #555;
}
.sec--light .rc__name {
  color: #1A1A2E;
}
.sec--light .rc__dog {
  color: #888;
}
.sec--light .rc__author {
  border-top-color: #E2E8F0;
}
.sec--light .rc__tag {
  background: rgba(20,184,166,0.08);
  border-color: rgba(20,184,166,0.15);
  color: var(--teal);
}
.sec--light .carousel-dot {
  background: #ccc;
}
.sec--light .carousel-dot.active {
  background: var(--teal);
}

/* ---------- TEAL sections ---------- */
.sec--teal {
  background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
  color: #fff;
}
.sec--teal .sec__e {
  color: rgba(255,255,255,0.8);
}
.sec--teal .sec__t {
  color: #fff;
}
.sec--teal .sec__t em {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255,255,255,0.4);
}
.sec--teal .sec__d {
  color: rgba(255,255,255,0.85);
}
/* Teal quote */
.sec--teal.qb {
  background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
  border-color: rgba(255,255,255,0.15);
}
.sec--teal.qb::before {
  color: rgba(255,255,255,0.2);
}
.sec--teal.qb p {
  color: rgba(255,255,255,0.95);
}
.sec--teal.qb em {
  color: #fff;
}
/* Teal inline form */
.sec--teal.inline-form {
  background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
  border-color: rgba(255,255,255,0.15);
}
.sec--teal .inline-form__text h3 {
  color: #fff;
}
.sec--teal .inline-form__text p {
  color: rgba(255,255,255,0.85);
}
.sec--teal .inline-form__fields input {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.sec--teal .inline-form__fields input::placeholder {
  color: rgba(255,255,255,0.6);
}
.sec--teal .inline-form__fields input:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.2);
}
.sec--teal .inline-form__fields button {
  background: #fff;
  color: #0D9488;
}
.sec--teal .inline-form__fields button:hover {
  background: #F0FDFA;
  color: #0D9488;
}
/* Photo strip transitions between section colors */
.photo-strip--light-to-dark .photo-strip__overlay {
  background: linear-gradient(180deg, #F8FAFB 0%, transparent 25%, transparent 75%, var(--bg) 100%);
}
.photo-strip--light-to-teal .photo-strip__overlay {
  background: linear-gradient(180deg, #F8FAFB 0%, transparent 25%, transparent 75%, #0D9488 100%);
}

/* ===================== RESPONSIVE ===================== */
/* ===== Tablet landscape (769px–1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  nav { padding: 14px 24px; gap: 20px; }
  .n-links { gap: 16px; }
  .n-links > a,
  .n-dropdown > a { font-size: 12px; }
  .n-cta { font-size: 11px; padding: 7px 16px; }
  .hero { padding: 120px 32px 64px; }
  .sec { padding: 80px 32px; }
  .svc-grid { gap: 12px; }
  .svc__body { padding: 20px 20px 24px; }
  .svc__t { font-size: 18px; }
  .about-grid { gap: 32px; }
  .split__content { padding: 48px 32px; }
  .cta-split { gap: 32px; padding: 80px 32px; }
  .process-cta { padding: 40px 32px; }
  footer { padding: 48px 32px 0; }
}

/* ===== Mobile (max 768px) ===== */
@media (max-width: 768px) {
  /* Nav */
  .n-links { display: none; }
  .n-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 14px 20px; }

  /* Hero */
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .h-title { font-size: 48px; letter-spacing: -3px; }
  .h-sub { font-size: 16px; max-width: 100%; }
  .h-btns { flex-direction: column; align-items: center; }
  .h-btns a { width: 100%; max-width: 320px; justify-content: center; min-height: 48px; }
  .h-stats { gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
  .h-stat__n { font-size: 28px; }

  /* Sections */
  .sec { padding: 64px 20px; }
  .sec__t { font-size: 28px; letter-spacing: -1.5px; }
  .sec__d { font-size: 14px; max-width: 100%; }

  /* Problems */
  .bento { grid-template-columns: 1fr; }
  .bc:nth-child(1), .bc:nth-child(4) { grid-column: span 1; }
  .bc { padding: 24px; }

  /* Photo strip */
  .photo-strip { height: 200px; }
  .photo-strip__text h3 { font-size: 20px; padding: 0 20px; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }
  .svc__body { padding: 24px 20px 28px; }

  /* Quote */
  .qb { padding: 40px 20px; }
  .qb p { font-size: 16px; }
  .qb::before { font-size: 80px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .ps { border-left: none; border-bottom: 1px solid var(--w1); padding: 32px 20px; }
  .sec--light .ps { border-bottom-color: #E2E8F0; }
  .ps:last-child { border-bottom: none; }
  .ps__arrow { display: none; }
  .process-cta { padding: 40px 20px; }
  .process-cta__btns { flex-direction: column; align-items: center; }
  .process-cta__btns a { width: 100%; max-width: 320px; justify-content: center; min-height: 48px; }

  /* Split */
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split__img { min-height: 260px; }
  .split__content { padding: 40px 20px; }
  .split--reverse { direction: rtl; }
  .split__btn { align-self: stretch; justify-content: center; min-height: 48px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .beliefs-grid { grid-template-columns: repeat(2, 1fr); }
  .beliefs-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .belief-card { padding: 24px; }

  /* Inline form */
  .inline-form { padding: 32px 20px; }
  .inline-form__inner { flex-direction: column; text-align: center; }
  .inline-form__fields { flex-direction: column; width: 100%; }
  .inline-form__fields input { width: 100%; min-height: 48px; font-size: 16px; }
  .inline-form__fields button { width: 100%; min-height: 48px; font-size: 16px; }

  /* Reviews */
  .reviews-container { padding: 0 20px; }

  /* FAQ */
  .faq-q h3 { font-size: 15px; }
  .faq-toggle { min-width: 32px; width: 32px; height: 32px; }

  /* CTA */
  .cta-split { grid-template-columns: 1fr; padding: 64px 20px; gap: 32px; }
  .cta-form-card { padding: 28px 20px; }
  .cta-form-card input,
  .cta-form-card textarea { min-height: 48px; font-size: 16px; }
  .cta-form-card button[type="submit"] { min-height: 48px; font-size: 16px; }

  /* Breadcrumbs */
  .breadcrumbs { top: 12px; right: 20px; }

  /* Case study */
  .case-study__item { flex-direction: column; }

  /* Footer */
  footer { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px 20px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p { margin: 0 auto 16px; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Floating buttons */
  .float-buttons { bottom: 16px; left: 16px; gap: 10px; }
  .float-call, .float-whatsapp { width: 50px; height: 50px; }
  .float-call svg, .float-whatsapp svg { width: 22px; height: 22px; }
}

/* ===== Small phones (max 480px) ===== */
@media (max-width: 480px) {
  .h-title { font-size: 36px; letter-spacing: -2px; }
  .h-sub { font-size: 15px; }
  .h-stat__n { font-size: 24px; }
  .h-stats { gap: 16px; }

  .sec__t { font-size: 24px; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .as__n { font-size: 22px; }
  .as { padding: 14px; }

  .beliefs-grid { grid-template-columns: 1fr; }
  .beliefs-grid--3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-brand { text-align: center; }
  .footer-brand p { margin: 0 auto 16px; }
  .footer-social { justify-content: center; }

  .rc { padding: 24px; }

  .bc { padding: 20px; }
  .bc__t { font-size: 15px; }
}

/* ===== Extra small (max 374px) ===== */
@media (max-width: 374px) {
  nav { padding: 12px 16px; }
  .logo { font-size: 15px; }
  .hero { padding: 100px 16px 48px; }
  .h-title { font-size: 32px; letter-spacing: -1.5px; }
  .sec { padding: 56px 16px; }
  .sec__t { font-size: 22px; }
  .split__content { padding: 32px 16px; }
  .cta-split { padding: 48px 16px; }
  .cta-form-card { padding: 24px 16px; }
  .inline-form { padding: 28px 16px; }
  .photo-strip { height: 160px; }
  .photo-strip__text h3 { font-size: 18px; }
  footer { padding: 40px 16px 0; }
  .float-buttons { bottom: 12px; left: 12px; }
  .float-call, .float-whatsapp { width: 46px; height: 46px; }
}
@media (max-width: 768px) {
  .breadcrumbs,
  .breadcrumbs-bar {
    display: none !important;
  }
}
