/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  /* Primary Blues */
  --p50: #EBF2FF;
  --p100: #D0E3FF;
  --p200: #A8C9FF;
  --p300: #75AAFF;
  --p400: #4D90FF;
  --p500: #2B7FFF;
  --p600: #1A67E8;
  --p700: #1250C4;
  --p800: #0C3A96;
  --p900: #072688;
  --p950: #031440;
  /* Neutral Blue-Grays */
  --n50: #F8FAFC;
  --n100: #F1F5F9;
  --n200: #E2E8F0;
  --n300: #CBD5E1;
  --n400: #94A3B8;
  --n500: #64748B;
  --n600: #475569;
  --n700: #334155;
  --n800: #1E293B;
  --n900: #0F172A;
  --n950: #020617;
  /* Semantic */
  --whatsapp: #25D366;
  --accent: #1A67E8;
  /* Typography */
  --ff-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ═══════════════════════════════════════
   RESET
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  color: var(--n900);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  font-family: var(--ff-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════ */
.announce {
  background: var(--p700);
  text-align: center;
  padding: 14px 20px;
  position: relative;
  z-index: 102;
}

.announce a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s;
}

.announce a:hover {
  opacity: .85;
}

.announce .wa-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 32px);
  transition: top .3s;
}

.navbar.at-top {
  top: 60px;
}

.navbar-inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 clamp(20px, 3vw, 36px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 32, 69, .4);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  margin-top: 12px;
  transition: all .4s;
}

.navbar.scrolled .navbar-inner {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
}

.navbar.scrolled {
  top: 0;
  padding: 0;
  background: rgba(4, 32, 69, .95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
}

/* Nav Links — desktop */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav CTA Buttons */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.nav-cta.phone {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta.phone svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.nav-cta.wa {
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta.wa svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Burger X animation when open */
.navbar.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* ═══════════════════════════════════════
   PREMIUM MOBILE MENU OVERLAY
   ═══════════════════════════════════════ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(165deg, #031440 0%, #072688 40%, #0C3A96 100%);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mob-menu.is-open {
  transform: translateX(0);
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 24px 32px;
}

.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mob-menu-logo {
  height: 64px;
  filter: brightness(0) invert(1);
}

.mob-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s;
}

.mob-menu-close:hover {
  background: rgba(255, 255, 255, .15);
}

/* Nav links */
.mob-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mob-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  transition: background .2s, transform .15s;
  opacity: 0;
  transform: translateX(30px);
  border: 1px solid rgba(255, 255, 255, .08);
}

.mob-menu.is-open .mob-menu-link {
  opacity: 1;
  transform: translateX(0);
}

.mob-menu.is-open .mob-menu-link:nth-child(1) {
  transition-delay: .1s;
}

.mob-menu.is-open .mob-menu-link:nth-child(2) {
  transition-delay: .15s;
}

.mob-menu.is-open .mob-menu-link:nth-child(3) {
  transition-delay: .2s;
}

.mob-menu.is-open .mob-menu-link:nth-child(4) {
  transition-delay: .25s;
}

.mob-menu.is-open .mob-menu-link:nth-child(5) {
  transition-delay: .3s;
}



.mob-menu-link span {
  flex: 1;
}

.mob-menu-arrow {
  opacity: .3;
  flex-shrink: 0;
}

.mob-menu-link:active {
  background: rgba(255, 255, 255, .06);
  transform: scale(.98);
}

.mob-menu-link:active .mob-menu-arrow {
  transform: translateX(3px);
}

/* Divider */
.mob-menu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  margin: 24px 0;
}

/* CTA buttons */
.mob-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mob-menu-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .15s;
}

.mob-menu-cta:active {
  transform: scale(.98);
}

.mob-menu-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
}

.mob-menu-cta--phone {
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(37, 99, 235, .25);
}

.mob-menu-cta-icon--phone {
  background: var(--p600);
  color: #fff;
}

.mob-menu-cta--wa {
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .2);
}

.mob-menu-cta-icon--wa {
  background: #25D366;
  color: #fff;
}

.mob-menu-cta-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.mob-menu-cta-value {
  display: block;
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

/* Footer badge */
.mob-menu-footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: center;
}

.mob-menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
}

.mob-menu-badge svg {
  color: #22c55e;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 560px;
  max-height: 960px;
  overflow: hidden;
}

/* Video Background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
  border: 0;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(4, 32, 69, .25) 0%,
      rgba(4, 32, 69, .1) 35%,
      rgba(4, 32, 69, .45) 65%,
      rgba(4, 32, 69, .82) 100%);
}

/* Hero Inner — Function Health pattern */
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 3vw, 36px) clamp(28px, 4vh, 48px);
}

/* Left Column */
.hero-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .4);
  }

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

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  max-width: 640px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(.85rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, .72);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 24px;
  font-weight: 400;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--p500);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .3s, transform .2s, box-shadow .3s;
  border: 1px solid rgba(255, 255, 255, .1);
  width: fit-content;
}

.hero-cta:hover {
  background: var(--p400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 111, 194, .35);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* Stats Row — right side, bottom aligned */
/* Stats Row — original design */
.hero-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 8px;
  position: relative;
}

.hero-row-item {
  text-align: center;
  padding: 0 clamp(16px, 2.5vw, 32px);
}

.hero-row-item h5 {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-row-item .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-row-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

/* Hero Quick Form — floats ON TOP of stats, same width */
.hero-form-wrap {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(4, 32, 69, .75);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.hero-form-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-form-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-form-input {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color .3s, background .3s;
}

.hero-form-input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.hero-form-input:focus {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .18);
}

/* Phone prefix */
.hero-form-phone {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  transition: border-color .3s, background .3s;
}

.hero-form-phone:focus-within {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .18);
}

.hero-form-prefix {
  padding: 0 0 0 14px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  user-select: none;
}

.hero-form-phone .hero-form-input {
  border: none;
  background: transparent;
  padding-left: 6px;
  flex: 1;
  min-width: 0;
}

.hero-form-phone .hero-form-input:focus {
  border: none;
  background: transparent;
}

.hero-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.hero-form-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, .35);
}

/* Hero form field wrappers */
.hero-form-field {
  flex: 1 1 0;
  min-width: 0;
}

.hero-form-field--phone {
  flex: 1 1 0;
  min-width: 0;
}

.hero-form-row>.hero-form-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  align-self: stretch;
}

/* Hero form error messages */
.hero-form-error {
  display: none;
  font-family: var(--ff-body);
  font-size: 11px;
  color: #f87171;
  margin-top: 4px;
  padding-left: 2px;
}

.hero-form-field.has-error .hero-form-input,
.hero-form-field.has-error .hero-form-phone {
  border-color: #f87171;
}

.hero-form-field.has-error .hero-form-error {
  display: block;
}

/* Contact form error messages */
.cform-error {
  display: none;
  font-family: var(--ff-body);
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  padding-left: 2px;
}

.cform-field.has-error input,
.cform-field.has-error select {
  border-color: #ef4444 !important;
}

.cform-field.has-error .cform-error {
  display: block;
}


/* ═══════════════════════════════════════
   MOBILE CONTACT FORM — Only visible ≤768px
   ═══════════════════════════════════════ */
.mcform {
  display: none;
  position: relative;
  overflow: clip;
  padding: 60px 0;
  width: 100%;
  max-width: 100%;
}

.mcform-content {
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.mcform-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  border: 1px solid rgba(255, 255, 255, .6);
}

.mcform-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--p600), var(--p700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.mcform-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--p900);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.mcform-sub {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--n500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.mcform-field {
  margin-bottom: 16px;
}

.mcform-field label {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--p900);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mcform-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--n200);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.mcform-input-wrap:focus-within {
  border-color: var(--p500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.mcform-input-wrap i {
  color: var(--n400);
  font-size: 18px;
  flex-shrink: 0;
}

.mcform-prefix {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--n500);
  flex-shrink: 0;
  user-select: none;
}

.mcform-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--p900);
  background: transparent;
  height: 100%;
}

.mcform-input-wrap input::placeholder {
  color: var(--n300);
}

.mcform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--p700), var(--p800));
  color: #fff;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  margin-top: 8px;
}

.mcform-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .3);
}

.mcform-btn i {
  font-size: 18px;
}

.mcform-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--n400);
}

.mcform-privacy i {
  font-size: 13px;
  color: var(--p600);
}

/* Mobile form error messages */
.mcform-error {
  display: none;
  font-family: var(--ff-body);
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  padding-left: 2px;
}

.mcform-field.has-error .mcform-input-wrap {
  border-color: #ef4444;
}

.mcform-field.has-error .mcform-error {
  display: block;
}


/* ═══════════════════════════════════════
   TESTIMONIALS — Bento Grid
   ═══════════════════════════════════════ */
.testimonials {
  background: var(--n50);
  padding: clamp(48px, 8vh, 96px) 0;
}

.testimonials-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 24px);
}

.testimonials-heading {
  text-align: center;
  margin-bottom: clamp(32px, 5vh, 56px);
}

.testimonials-heading h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--p900);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.testimonials-heading h2 em {
  font-style: italic;
  font-weight: 400;
}

.testimonials-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: var(--n500);
  margin-top: 10px;
}

/* Bento grid: all 7 visible */
.bento-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

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

/* Each column stacks vertically */
.bento-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

/* --- Tall Video Card --- */
.t-card--tall {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex: 1 1 0;
  min-height: 440px;
}

.t-card--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.t-card--tall:hover img {
  transform: scale(1.04);
}

.t-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 32, 69, .6) 100%);
  pointer-events: none;
}

.t-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.t-card-play svg {
  width: 20px;
  height: 20px;
  fill: var(--p700);
  margin-left: 2px;
}

.t-card--tall:hover .t-card-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

/* Caption overlaid on image bottom */
.t-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.t-card-quote {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 4px;
}

.t-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

/* Playing state */
.t-card--tall.playing .t-card-play,
.t-card--tall.playing .t-card-overlay,
.t-card--tall.playing .t-card-caption,
.t-card--tall.playing img {
  display: none;
}

.t-card--tall video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Short Badge Card --- */
.t-badge {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
}

.t-badge-number {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--p700);
  line-height: 1.1;
}

.t-badge-number sup {
  font-size: .5em;
}

.t-badge-icon {
  width: 36px;
  height: 36px;
  color: var(--p700);
  margin-bottom: 8px;
}

.t-badge-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--n500);
  margin-top: 6px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   CONTACT FORM — İletişim
   ═══════════════════════════════════════ */
.cform {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vh, 96px) 0;
  background: #071a3a;
}

/* Scrolling masonry background */
.cform-gallery {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  z-index: 0;
  overflow: hidden;
}

.cform-gallery-row {
  display: flex;
  gap: 10px;
  width: max-content;
}

.cform-gallery-row img {
  border-radius: 14px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Row sizes — masonry effect */
.cform-gallery-row--r1 img {
  height: 230px;
  width: 310px;
}

.cform-gallery-row--r2 img {
  height: 260px;
  width: 350px;
}

.cform-gallery-row--r3 img {
  height: 230px;
  width: 310px;
}

/* All rows scroll right-to-left at different speeds */
.cform-gallery-row--r1 {
  animation: galSlide 55s linear infinite;
}

.cform-gallery-row--r2 {
  animation: galSlide 45s linear infinite;
}

.cform-gallery-row--r3 {
  animation: galSlide 60s linear infinite;
}

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

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

/* Dark overlay */
.cform-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 48, .05);
  z-index: 1;
}

.cform-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
  position: relative;
  z-index: 2;
}

.cform-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: .5px solid var(--n200);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

/* LEFT */
.cform-left {
  background: var(--p950);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.cform-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #85B7EB;
  margin-bottom: 20px;
}

.cform-left-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.cform-left-sub {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cform-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cform-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cform-promise-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: .5px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #85B7EB;
  font-size: 16px;
}

.cform-promise-title {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.cform-promise-sub {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

.cform-social-proof {
  background: rgba(255, 255, 255, .06);
  border: .5px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.cform-avatars {
  display: flex;
}

.cform-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--p950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  margin-left: -8px;
  flex-shrink: 0;
}

.cform-av:first-child {
  margin-left: 0;
}

.cform-sp-text {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.cform-sp-text strong {
  color: #fff;
  font-weight: 500;
}

/* RIGHT — FORM */
.cform-right {
  background: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cform-form-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--p950);
  margin-bottom: 6px;
}

.cform-form-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--n500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cform-field {
  margin-bottom: 16px;
}

.cform-field label {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--p950);
  margin-bottom: 6px;
}

.cform-field input,
.cform-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--n200);
  border-radius: 10px;
  font-size: 14px;
  color: var(--p950);
  background: var(--n50);
  outline: none;
  transition: border-color .15s;
  font-family: var(--ff-body);
}

.cform-field input:focus,
.cform-field select:focus {
  border-color: var(--p700);
  background: #fff;
}

.cform-field input::placeholder {
  color: var(--n300);
}

.cform-phone-row {
  display: flex;
  gap: 8px;
}

.cform-phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  border: 1px solid var(--n200);
  border-radius: 10px;
  background: var(--n50);
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--p950);
  white-space: nowrap;
  cursor: pointer;
}

.cform-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cform-submit {
  width: 100%;
  padding: 14px;
  background: var(--p700);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
}

.cform-submit:hover {
  background: var(--p800);
}

.cform-privacy {
  text-align: center;
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--n400);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ═══════════════════════════════════════
   CASE STUDIES — Hasta Hikayeleri Detay
   ═══════════════════════════════════════ */
.case-section {
  background: var(--n50);
  padding: clamp(56px, 10vh, 100px) 0;
}

.case-section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(36px, 5vh, 56px);
  padding: 0 20px;
}

.case-eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--p600);
  margin-bottom: 12px;
  display: inline-block;
}

.case-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--p900);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.case-section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--p700);
}

.case-section-sub {
  font-family: var(--ff-body);
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: var(--n500);
  margin-top: 10px;
}

.case-studies {
  display: flex;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.case-studies::-webkit-scrollbar {
  display: none;
}

.case-studies .case-card {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
}

.case-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.case-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--n200);
  transition: transform .25s, box-shadow .25s;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

/* Video thumbnail — left side (9:16 vertical) */
.case-media {
  position: relative;
  flex: 0 0 180px;
  min-height: 360px;
  cursor: pointer;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.case-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  transition: transform .2s;
}

.case-play svg {
  width: 24px;
  height: 24px;
  fill: var(--p700);
  margin-left: 2px;
}

.case-media:hover .case-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.case-media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
}

/* Text body — right side */
.case-body {
  flex: 1;
  min-width: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.case-patient {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.case-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--p900);
}

.case-age {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--n500);
  font-weight: 500;
}

.case-text {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--n600);
  line-height: 1.65;
  margin-bottom: 10px;
}

.case-text strong {
  color: var(--p700);
  font-weight: 600;
}

.case-text--highlight {
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border-left: 3px solid var(--p500);
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  font-size: 13.5px;
  color: var(--p800);
}

/* Procedure tags — equal width row */
.case-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
}

.case-tag {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--p700);
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border: 1px solid var(--p100);
  padding: 7px 12px;
  border-radius: 10px;
}

.case-legal {
  font-family: var(--ff-body);
  font-size: 10px;
  color: var(--n400);
  margin-top: 12px;
  line-height: 1.4;
}

/* Dot navigation */
.case-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.case-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--n300);
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}

.case-dot.active {
  background: var(--p600);
  width: 28px;
  border-radius: 5px;
}

/* Video Modal Lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 90%;
  max-height: 85vh;
  transform: scale(.9);
  transition: transform .3s;
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-content video {
  width: 100%;
  max-height: 85vh;
  border-radius: 16px;
  background: #000;
  outline: none;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: .8;
  transition: opacity .2s;
}

.video-modal-close:hover {
  opacity: 1;
}

/* Result badges below cards */
.case-badges {
  display: flex;
  gap: 10px;
}

.case-badge {
  flex: 1;
  text-align: center;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--p700);
  background: #fff;
  border: 1px solid var(--n200);
  border-radius: 12px;
  padding: 12px 10px;
  transition: transform .2s;
}

.case-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

/* ═══════════════════════════════════════
   ABOUT — Hakkımda
   ═══════════════════════════════════════ */
.about {
  background: #fff;
  padding: clamp(56px, 10vh, 112px) 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
}

/* Eyebrow — pill style */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--p200);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.about-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p600);
}

.about-eyebrow-text {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--p700);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Split layout */
.about-split {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* Photo wrapper */
.about-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.about-photo {
  width: 100%;
  display: block;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

/* Photo badge — centered bottom, extending below */
.about-photo-badge {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  white-space: nowrap;
}

.about-badge-stars {
  color: #F5A623;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
}

.about-photo-badge-num {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--p950);
  line-height: 1;
}

.about-photo-badge-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--n500);
  line-height: 1.2;
}

/* Right content */
.about-content {
  padding-top: 8px;
}

.about-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--p950);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.about-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--p700);
}

.about-text {
  font-family: var(--ff-body);
  font-size: clamp(.88rem, 1.1vw, .95rem);
  color: var(--n600);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-text strong {
  color: var(--p800);
  font-weight: 600;
}

/* Stat cards — compact horizontal */
.about-stats {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 100%);
  border: 1px solid rgba(24, 95, 165, .08);
  border-radius: 16px;
  padding: 16px 20px;
  transition: transform .2s, box-shadow .2s;
}

.about-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24, 95, 165, .1);
}

.about-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(24, 95, 165, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--p600);
  stroke: var(--p600);
}

.about-stat-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--p700);
  line-height: 1;
  margin-bottom: 2px;
}

.about-stat-label {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--n600);
  line-height: 1.35;
}

/* CTA buttons — modern pill style */
.about-cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
  letter-spacing: .01em;
}

.about-cta--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .25);
}

.about-cta--wa:hover {
  background: #1fba59;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  transform: translateY(-2px);
}

.about-cta--wa svg {
  width: 18px;
  height: 18px;
}

.about-cta--call {
  background: transparent;
  color: var(--p700);
  border: 1.5px solid var(--p200);
}

.about-cta--call:hover {
  background: var(--p50);
  border-color: var(--p400);
  transform: translateY(-2px);
}

.about-cta--call i {
  font-size: 16px;
}

/* Doctor info */
.about-doctor-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--n200);
}

.about-doctor-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--p100);
  color: var(--p700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
}

.about-doctor-name {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--p950);
}

.about-doctor-spec {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--n500);
}

/* ═══════════════════════════════════════
   HASTA HİKAYELERİ — Marquee Carousel
   ═══════════════════════════════════════ */
.stories {
  background: var(--n100);
  padding: clamp(48px, 8vh, 96px) 0;
  overflow: hidden;
}

.stories-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.stories-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--p700);
  background: var(--p50);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.stories-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--p950);
  line-height: 1.2;
  margin-bottom: 10px;
}

.stories-title em {
  font-style: italic;
  font-weight: 500;
}

.stories-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--n500);
}

/* Marquee wrapper */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  margin-bottom: 14px;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.marquee-track--right {
  animation: marqueeRight 45s linear infinite;
}

.marquee-track--left {
  animation: marqueeLeft 40s linear infinite;
}

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

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

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

  100% {
    transform: translateX(0);
  }
}

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

/* Story card — base */
.sc {
  flex: 0 0 360px;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.sc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
}

/* Dark variant */
.sc--dark {
  background: linear-gradient(145deg, var(--g1, #0a1e4a), var(--g2, #163a7a));
  color: #fff;
  min-height: 260px;
}

/* Light variant */
.sc--light {
  background: #fff;
  border: 1px solid var(--n200);
  min-height: 260px;
}

/* Floating badge */
.sc__float {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  border: .5px solid rgba(255, 255, 255, .3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.sc__float--blue {
  background: var(--p700);
  border-color: var(--p600);
}

.sc__float-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--p700);
  margin-bottom: 2px;
}

.sc__float--blue .sc__float-label {
  color: rgba(255, 255, 255, .6);
}

.sc__float-val {
  display: block;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--p950);
  line-height: 1.2;
}

.sc__float--blue .sc__float-val {
  color: #fff;
}

/* Body */
.sc__body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Location tag */
.sc__loc {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}

.sc__loc--dark {
  color: var(--n400);
}

/* Name */
.sc__name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.sc__name--dark {
  color: var(--p950);
}

/* Meta */
.sc__meta {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 14px;
}

.sc__meta--dark {
  color: var(--n400);
}

/* Quote box */
.sc__qbox {
  background: rgba(255, 255, 255, .1);
  border: .5px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
  flex: 1;
}

.sc__qbox p {
  font-family: var(--ff-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  font-style: italic;
}

.sc__qbox--light {
  background: var(--p50);
  border-color: var(--p100);
}

.sc__qbox--light p {
  color: var(--n700);
}

/* Bottom */
.sc__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc__stars {
  color: #FAC775;
  font-size: 13px;
  letter-spacing: 1px;
}

.sc__src {
  font-family: var(--ff-body);
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
}

.sc__src--dark {
  color: var(--n400);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #020e24 0%, #031640 100%);
  color: rgba(255, 255, 255, .7);
  font-family: var(--ff-body);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  padding: 64px 0 48px;
}

.footer-main .footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 40px;
}

/* Logo & description */
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 80px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  margin: 0 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .5);
  transition: background .2s, color .2s, transform .15s;
}

.footer-social a:hover {
  background: var(--p600);
  color: #fff;
  transform: translateY(-2px);
}

/* Headings */
.footer-heading {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: .02em;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--p600);
  margin-top: 10px;
  border-radius: 2px;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--p400);
}

.footer-contact li a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact li a:hover {
  color: #fff;
}

/* Map inline */
.footer-map-inline {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  line-height: 0;
}

.footer-map-inline iframe {
  width: 100%;
  height: 200px;
  display: block;
  filter: grayscale(.3) brightness(.85);
  transition: filter .3s;
}

.footer-map-inline iframe:hover {
  filter: grayscale(0) brightness(1);
}

/* Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
}

.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  margin: 0;
}

.footer-credits {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
}

/* ═══════════════════════════════════════
   DESKTOP FLOATING ACTION BUTTONS
   ═══════════════════════════════════════ */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

/* Circle icon */
.float-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  z-index: 2;
}

/* Tooltip label — slides in from right */
.float-btn-label {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--n700);
  background: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.float-btn:hover .float-btn-label {
  opacity: 1;
  transform: translateX(0);
}

.float-btn:hover .float-btn-icon {
  transform: scale(1.06);
}

/* Phone button */
.float-btn--phone .float-btn-icon {
  background: var(--accent);
  box-shadow: 0 4px 20px rgba(26, 103, 232, .35);
}

.float-btn--phone:hover .float-btn-icon {
  box-shadow: 0 6px 28px rgba(26, 103, 232, .5);
}

/* WhatsApp button */
.float-btn--wa .float-btn-icon {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.float-btn--wa:hover .float-btn-icon {
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}

/* ═══════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════ */
.mob-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, .08);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
}

.mob-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: 10px;
  transition: background .15s;
  flex: 1;
}

.mob-bar-item:active {
  background: rgba(0, 0, 0, .04);
}

.mob-bar-item svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

/* Primary - Ücretsiz Danışma */
.mob-bar-item--primary {
  color: var(--accent);
}

/* WhatsApp */
.mob-bar-item--wa {
  color: #25D366;
}

/* Call */
.mob-bar-item--call {
  color: #e53e3e;
}

.mob-bar-item--call svg {
  animation: phoneRing 2.5s ease-in-out infinite, phonePulse 2.5s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes phoneRing {
  0%   { transform: rotate(0deg); }
  5%   { transform: rotate(15deg); }
  10%  { transform: rotate(-13deg); }
  15%  { transform: rotate(12deg); }
  20%  { transform: rotate(-10deg); }
  25%  { transform: rotate(8deg); }
  30%  { transform: rotate(-5deg); }
  35%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

@keyframes phonePulse {
  0%   { opacity: 1; }
  5%   { opacity: 0.4; }
  10%  { opacity: 1; }
  15%  { opacity: 0.4; }
  20%  { opacity: 1; }
  35%  { opacity: 1; }
  100% { opacity: 1; }
}


/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .announce {
    padding: 11px 14px;
  }

  .announce a {
    font-size: 14px;
    gap: 8px;
  }

  .announce .wa-icon {
    width: 18px;
    height: 18px;
  }

  .navbar {
    padding: 0 12px;
  }

  .navbar.at-top {
    top: 50px;
  }

  .navbar-inner {
    height: 56px;
    padding: 0 16px;
    border-radius: 12px;
    margin-top: 30px;
  }

  .navbar.scrolled .navbar-inner {
    border-radius: 0;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-cta.phone {
    display: none;
  }

  .nav-cta.wa {
    display: none;
  }

  .hero {
    height: calc(100svh - 40px);
    min-height: 520px;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px 16px calc(90px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: .85rem;
    margin-bottom: 20px;
  }

  .hero-form-wrap {
    display: none;
  }

  .hero-row {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-row-item {
    padding: 0 12px;
  }

  .hero-row-item h5 {
    font-size: .95rem;
  }

  .hero-row-item .lbl {
    font-size: 9px;
  }

  .hero-row-divider {
    height: 28px;
  }

  /* Testimonials mobile */
  .bento-grid {
    padding: 0 16px;
  }

  .bento-col {
    flex: 0 0 72vw;
    min-width: 240px;
    scroll-snap-align: start;
  }

  .t-card-play {
    width: 44px;
    height: 44px;
  }

  .t-card-play svg {
    width: 18px;
    height: 18px;
  }

  .t-badge {
    min-height: 100px;
    padding: 20px 16px;
  }

  /* Case studies mobile */
  .case-studies .case-card {
    flex: 0 0 85vw;
  }

  .case-card {
    flex-direction: column;
  }

  .case-media {
    width: 100%;
    max-height: 280px;
  }

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

  /* About mobile */
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo-wrap {
    max-width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-cta-row {
    flex-direction: column;
    margin-bottom: 0;
  }

  .about-cta {
    justify-content: center;
  }

  .about {
    padding: 48px 0 56px;
  }

  /* Stories mobile */
  .sc {
    flex: 0 0 300px;
  }

  /* Contact form: hide desktop, show mobile */
  .cform {
    display: none !important;
  }

  .mcform {
    display: block !important;
  }

  /* Footer mobile — 1+2+1 */
  .footer-main .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-col--map {
    grid-column: 1 / -1;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-heading::after {
    margin-left: 0;
  }

  .footer-map iframe {
    height: 220px;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* Hide desktop floating buttons on mobile */
  .float-actions {
    display: none;
  }

  /* Show mobile bottom bar */
  .mob-bottom-bar {
    display: flex;
  }

  /* Add bottom padding so content isn't hidden behind bar */
  .site-footer {
    padding-bottom: 70px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .nav-logo img {
    height: 28px;
  }
}