﻿/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  /* ── ZETA TETA Dark Purple Palette ── */
  /* Backgrounds */
  --bg-page:   #080412;
  --bg-page-light: #F0EEFF;
  --bg-card:   #120D2E;
  --bg-card2:  #1A0D3D;

  /* Primary scale (light → dark) */
  --p50:  #F0EEFF;
  --p100: #E4D9FF;
  --p200: #C9A1FF;
  --p300: #A870F5;
  --p400: #8B54E8;
  --p500: #7B4FCC;
  --p600: #5C3299;
  --p700: #3D1F6B;
  --p800: #1E0F3D;
  --p900: #120D2E;
  --p950: #080412;

  /* Text */
  --text-primary:   #FFFFFF;
  --text-heading:   #F0EEFF;
  --text-secondary: rgba(255,255,255,.72);
  --text-muted:     rgba(255,255,255,.45);

  /* Accent */
  --accent:        #C9A1FF;
  --accent-deep:   #7B4FCC;
  --gold:          #C9A1FF;

  /* Borders */
  --border:        rgba(186,134,240,.18);
  --border-subtle: rgba(255,255,255,.10);

  /* CTA gradient */
  --cta-from: #C9A1FF;
  --cta-to:   #7B4FCC;

  /* Neutral (kept for compatibility) */
  --n50:  #FFFFFF;
  --n100: #F0EEFF;
  --n200: #C9A1FF;
  --n300: rgba(255,255,255,.72);
  --n400: rgba(255,255,255,.55);
  --n500: rgba(255,255,255,.40);
  --n600: rgba(255,255,255,.28);
  --n700: #3D1F6B;
  --n800: #1E0F3D;
  --n900: #120D2E;
  --n950: #080412;

  /* Semantic */
  --whatsapp: #25D366;

  /* Typography */
  --ff-display: 'Playfair Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', serif;
  --ff-body:    'Plus Jakarta Sans', -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(--text-primary);
  background: var(--bg-page);
  overflow-x: hidden;
  line-height: 1.6;
}

body.page-produkt {
  background: #F5F5F7;
  color: #1E1915;
  --bg-page:        #F5F5F7;
  --bg-card:        #FFFFFF;
  --bg-card2:       #EDEDF0;
  --text-primary:   #1E1915;
  --text-heading:   #1E1915;
  --text-secondary: #47494C;
  --text-muted:     #86888C;
  --border:         #E0DFE6;
  --accent:         #7B4FCC;
  --accent-deep:    #5C3299;
}

body.page-produkt .announce {
  background: #1A0D3D;
}

body.page-produkt::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60vh;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(123, 79, 204, 0.18) 0%, rgba(201, 161, 255, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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(--bg-card2);
  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: calc(100% - 80px);
  max-width: 1220px;
  padding: 0 clamp(24px, 3.5vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 4, 18, .72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(186, 134, 240, .18);
  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(8, 4, 18, .95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(186, 134, 240, .15);
}

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

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

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

.nav-links a {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  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, #080412 0%, #120D2E 45%, #1A0D3D 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(123, 79, 204, .15);
  border: 1px solid rgba(123, 79, 204, .25);
}

.mob-menu-cta-icon--phone {
  background: var(--accent-deep);
  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 Elements */
.hero-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border: 0;
}

/* Desktop: yatay görünür, dikey gizli */
.hero-vid--desktop {
  display: block;
}

.hero-vid--mobile {
  display: none;
}

/* Mobil: dikey görünür, yatay gizli */
@media (max-width: 768px) {
  .hero-vid--desktop {
    display: none;
  }

  .hero-vid--mobile {
    display: block;
  }
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(8, 4, 18, .2) 0%,
      rgba(8, 4, 18, .08) 35%,
      rgba(8, 4, 18, .4) 65%,
      rgba(8, 4, 18, .85) 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(--accent-deep);
  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(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 79, 204, .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(8, 4, 18, .78);
  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: var(--bg-card2);
  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(--cta-from), var(--cta-to));
  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(--text-primary);
  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(--text-primary);
  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(--border);
  background: var(--bg-card);
  transition: border-color .2s, box-shadow .2s;
}

.mcform-input-wrap:focus-within {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(123, 79, 204, .12);
}

.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(--text-primary);
  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(--cta-from), var(--cta-to));
  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(123, 79, 204, .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(--accent-deep);
}

/* 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;
}


/* ═══════════════════════════════════════
   REVIEWS BLOCK
   ═══════════════════════════════════════ */
.reviews-block {
  scroll-margin-top: 64px;
}

/* ═══════════════════════════════════════
   TICKER BAR
   ═══════════════════════════════════════ */
.ticker-bar {
  background: #0a0a0a;
  color: rgba(255,255,255,.75);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  white-space: nowrap;
  user-select: none;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-bar:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  color: rgba(255,255,255,.65);
}

.ticker-dot {
  color: #7B4FCC;
  font-size: 1rem;
  flex-shrink: 0;
}

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

/* ═══════════════════════════════════════
   VITAMIN PILLS TICKER
   ═══════════════════════════════════════ */
.pills-ticker {
  background: #F6F5FA;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #E7E3F0;
  border-bottom: 1px solid #E7E3F0;
  white-space: nowrap;
  user-select: none;
}

.pills-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: pills-scroll 35s linear infinite;
}

.pills-ticker:hover .pills-track {
  animation-play-state: paused;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1.5px solid #E2DCEF;
  background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2A1659;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.pill:hover {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}

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

/* ═══════════════════════════════════════
   INFO CARDS — 4 Kart
   ═══════════════════════════════════════ */
.info-cards {
  background: #0d1117;
  padding: 28px clamp(16px, 4vw, 48px);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.info-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .45);
  border-color: var(--accent-deep);
}

.info-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.info-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.info-card:hover .info-card-img-wrap img {
  transform: scale(1.05);
}

.info-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 17, 23, .7) 100%);
}

.info-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-card-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.info-card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  font-style: normal;
  color: #f5f0eb;
  line-height: 1.35;
  margin: 0;
}

.info-card-title em {
  font-style: normal;
  color: #f5f0eb;
}

.info-card-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .25s ease;
}

.info-card:hover .info-card-arrow {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .info-cards {
    padding: 10px 0 32px 16px;
  }
  .info-cards-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-right: 16px;
    scrollbar-width: none;
  }
  .info-cards-grid::-webkit-scrollbar {
    display: none;
  }
  .info-card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .info-card-body {
    padding: 14px 14px 16px;
  }
  .info-card-title {
    font-size: .9rem;
  }
}

/* ═══════════════════════════════════════
   TESTIMONIALS — Bento Grid
   ═══════════════════════════════════════ */
.testimonials {
  background: #F6F5FA;
  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: #15102E;
  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: #6E6780;
  margin-top: 10px;
}

/* Bento grid */
.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(8, 4, 18, .55) 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(--accent);
  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: 1px solid #E7E3F0;
  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: #15102E;
  line-height: 1.1;
}

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

.t-badge-icon {
  width: 36px;
  height: 36px;
  color: #15102E;
  margin-bottom: 8px;
}

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

/* ═══════════════════════════════════════
   TESTIMONIALS — MOBİL
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .bento-grid {
    padding: 0 16px;
    scroll-snap-type: x mandatory;
    gap: 10px;
  }

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

  .t-card--tall {
    min-height: 400px;
    border-radius: 12px;
  }

  .t-badge {
    min-height: 90px;
  }
}

/* ═══════════════════════════════════════
   WIE ES FUNKTIONIERT
   ═══════════════════════════════════════ */
.how-section {
  background: linear-gradient(0deg, rgba(26, 13, 61, 0) 0%, rgba(26, 13, 61, 0.75) 100%), #120D2E;
  padding: clamp(64px, 10vh, 100px) clamp(20px, 5vw, 60px);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-heading {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 72px);
}

.how-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 10px;
}

.how-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

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

.how-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.5);
}

/* Steps row */
.how-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.how-step {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}

.how-step:hover {
  background: rgba(201,161,255,0.06);
  border-color: rgba(186,134,240,0.3);
}

.how-step--result {
  background: rgba(123,79,204,0.12);
  border-color: rgba(186,134,240,0.3);
}

.how-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(123,79,204,0.15);
  border: 1px solid rgba(186,134,240,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.how-step-num {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}

.how-step-title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.how-step-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

.how-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(123,79,204,0.12);
  border: 1px solid rgba(186,134,240,0.22);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: auto;
  width: fit-content;
}

/* Divider between steps */
.how-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  flex-shrink: 0;
}

.how-divider-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.how-divider-plus {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */
.stats-section {
  background: var(--accent);
  padding: clamp(40px, 6vh, 64px) clamp(20px, 5vw, 60px);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: #1E1915;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-weight: 500;
  color: rgba(30,25,21,0.65);
  line-height: 1.4;
  max-width: 160px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(30,25,21,0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    gap: 16px;
  }

  .how-divider {
    flex-direction: row;
    padding: 0;
    gap: 12px;
  }

  .how-divider-line {
    width: 40px;
    height: 1px;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }

  .stat-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════
   SHOP — Produkte
   ═══════════════════════════════════════ */
/* ============================================================
   BUNDLE HERO — Single Product Showcase
   ============================================================ */

.bundle-hero {
  background: var(--bg-page);
  padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.bundle-hero__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,161,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.bundle-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Visual / Image ---- */
.bundle-hero__visual {
  position: relative;
}

.bundle-hero__img-ring {
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(201,161,255,0.15), rgba(123,79,204,0.05), rgba(201,161,255,0.08));
  padding: 3px;
  box-shadow: 0 24px 64px rgba(123, 79, 204, 0.14), 0 0 0 1px rgba(186,134,240,0.18);
}

.bundle-hero__img {
  width: 100%;
  border-radius: 26px;
  display: block;
  object-fit: cover;
}

.bundle-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(18,13,46,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(123, 79, 204, 0.2);
}

.bundle-float--night {
  top: 28px;
  left: -28px;
  transform: rotate(-4deg);
}

.bundle-float--day {
  bottom: 28px;
  right: -28px;
  transform: rotate(3deg);
}

/* ---- Content ---- */
.bundle-hero__content {
  display: flex;
  flex-direction: column;
}

.bundle-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
}

.bundle-stars-label {
  margin-left: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.bundle-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.bundle-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  color: var(--text-heading);
  margin: 0 0 20px;
  font-weight: 700;
}

.bundle-title em {
  font-style: italic;
  color: var(--accent);
}

.bundle-desc {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 460px;
}

.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 24px;
}

.bundle-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
}

.bundle-features li svg {
  flex-shrink: 0;
}

/* ---- Price ---- */
.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.bundle-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.bundle-price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-price-save {
  background: rgba(123,79,204,0.15);
  border: 1px solid rgba(186,134,240,0.3);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
}

.bundle-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 28px;
}

/* ---- CTA ---- */
.bundle-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 17px 40px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.bundle-cta:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(123, 79, 204, 0.4);
}

/* ---- Trust row ---- */
.bundle-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bundle-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bundle-trust-sep {
  color: var(--p300);
  font-size: 0.85rem;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .bundle-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bundle-float--night {
    left: 10px;
    top: 16px;
  }

  .bundle-float--day {
    right: 10px;
    bottom: 16px;
  }
}

@media (max-width: 600px) {
  .bundle-hero {
    padding: 60px 20px;
  }

  .bundle-features {
    grid-template-columns: 1fr;
  }

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

  .bundle-price-main {
    font-size: 2.2rem;
  }

  .bundle-trust-row {
    justify-content: center;
  }
}

/* ============================================================
   BUNDLE PRODUCT — IM8-style horizontal card
   ============================================================ */

/* ═══════════════════════════════════════
   BUNDLE PRODUCT — Split Layout
   ═══════════════════════════════════════ */
.bprod {
  background: #F0EEFF;
  padding: clamp(60px, 9vh, 100px) clamp(16px, 4vw, 48px);
}

.bprod__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── LEFT: Visual ── */
.bprod__visual {
  position: relative;
}

.bprod__img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 24px 72px rgba(123, 79, 204, 0.14);
}

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

/* Floating badges */
.bprod__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(123, 79, 204, 0.14);
  white-space: nowrap;
}

.bprod__float--night {
  bottom: 28px;
  left: -20px;
  background: rgba(30, 20, 50, 0.85);
  color: #e0d4ff;
  border: 1px solid rgba(160, 120, 220, 0.3);
}

.bprod__float--day {
  top: 32px;
  right: -20px;
  background: rgba(18,13,46,0.9);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

/* ── RIGHT: Content ── */
.bprod__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bprod__banner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  color: var(--p50);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.bprod__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6E6780;
  margin-bottom: 8px;
}

.bprod__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #15102E;
  line-height: 1.08;
  margin: 0 0 14px;
}

.bprod__desc {
  font-size: 0.925rem;
  line-height: 1.72;
  color: #5A5468;
  margin-bottom: 18px;
}

/* Stars */
.bprod__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 20px;
}

.bprod__stars-label {
  margin-left: 7px;
  font-size: 12.5px;
  color: #6E6780;
  font-weight: 500;
}

/* Price */
.bprod__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.bprod__price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #15102E;
  line-height: 1;
}

.bprod__price-sub {
  font-size: 0.9rem;
  color: #6E6780;
}

.bprod__price-badge {
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}

.bprod__price-note {
  font-size: 0.77rem;
  color: #6E6780;
  margin: 0 0 22px;
}

/* Pill features */
.bprod__pills {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bprod__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #E2DCEF;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.865rem;
  font-weight: 500;
  color: #15102E;
  line-height: 1.3;
}

.bprod__pill svg {
  flex-shrink: 0;
  color: var(--accent-deep);
}

/* CTA */
.bprod__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.bprod__cta:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(123, 79, 204, 0.4);
}

/* Trust row */
.bprod__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #6E6780;
  font-weight: 500;
  flex-wrap: wrap;
}

.bprod__trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Mobile ── */
@media (max-width: 860px) {
  .bprod__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bprod__visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .bprod__float--night {
    left: 10px;
  }

  .bprod__float--day {
    right: 10px;
  }
}

/* ═══════════════════════════════════════
   FAQ — Accordion
   ═══════════════════════════════════════ */
.faq {
  background: var(--bg-card);
  padding: clamp(40px, 6vh, 72px) clamp(16px, 4vw, 48px);
}

.faq__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.faq__body {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: stretch;
}

.faq__visual {
  height: 100%;
}

.faq__img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .faq__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq__visual {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

.faq__header {
  text-align: center;
  margin-bottom: 36px;
}

.faq__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.faq__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  margin: 0 0 16px;
}

.faq__title em {
  font-style: italic;
  color: var(--text-muted);
}

.faq__sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Accordion list */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: rgba(201, 161, 255, 0.08);
  border: 1px solid rgba(186, 134, 240, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq__item:has(.faq__q[aria-expanded="true"]) {
  border-color: rgba(201, 161, 255, 0.4);
  box-shadow: 0 4px 24px rgba(123, 79, 204, 0.18);
  background: rgba(201, 161, 255, 0.12);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

.faq__q:hover {
  color: #C9A1FF;
}

.faq__icon {
  flex-shrink: 0;
  color: rgba(201, 161, 255, 0.6);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: #C9A1FF;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__a.is-open {
  max-height: 400px;
}

.faq__a > p {
  padding: 0 22px 18px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .faq__q {
    padding: 16px 16px;
    font-size: 0.9rem;
  }

  .faq__a > p {
    padding: 0 16px 16px;
  }
}

/* Legacy shop classes kept for reference but section replaced */
.shop {
  background: var(--bg-card);
  padding: clamp(64px, 10vh, 100px) clamp(16px, 4vw, 48px);
}

.shop-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-heading {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.shop-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.shop-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.shop-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--n500, #606366);
}

/* Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* Card base */
.shop-card {
  background: #fff;
  border: 1.5px solid var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.shop-card:hover {
  box-shadow: 0 12px 48px rgba(123, 79, 204, 0.12);
  transform: translateY(-4px);
}

/* Featured card (TETA) */
.shop-card--featured {
  border-color: var(--text-muted);
  box-shadow: 0 4px 32px rgba(123, 79, 204, 0.15);
}

/* Bundle card */
.shop-card--bundle {
  border-color: var(--text-muted);
}

/* Badge */
.shop-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent-deep);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
  z-index: 1;
}

.shop-card-badge--bundle {
  background: var(--accent);
}

/* Image wrap */
.shop-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
}

.shop-card-img-wrap--bundle {
  display: flex;
}

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

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

.shop-card-img--left,
.shop-card-img--right {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* Card body */
.shop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.shop-card-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.shop-card-name {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0;
}

.shop-card-desc {
  font-size: 0.88rem;
  color: var(--n500, #606366);
  line-height: 1.6;
  margin: 0;
}

/* Price */
.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-price-main {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--text-secondary);
}

.shop-price-sub {
  font-size: 0.78rem;
  color: var(--n400, #86888C);
}

.shop-discount {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* Features */
.shop-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  line-height: 1.3;
}

.shop-features li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Button */
.shop-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  margin-top: auto;
  background: var(--bg-card2);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.shop-btn:hover {
  background: var(--p500, #7B4FCC);
  transform: translateY(-1px);
}

.shop-btn--bundle {
  background: var(--p500, #7B4FCC);
}

.shop-btn--bundle:hover {
  background: var(--accent);
}

/* Mobile */
@media (max-width: 900px) {
  .shop {
    padding-left: 0;
    padding-right: 0;
  }

  .shop-heading {
    padding: 0 20px;
  }

  .shop-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 20px 8px 20px;
    grid-template-columns: unset;
    max-width: unset;
    margin: 0;
  }

  .shop-grid {
    scroll-padding-left: 20px;
  }

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

  .shop-card {
    flex: 0 0 80vw;
    min-width: 80vw;
    scroll-snap-align: start;
  }

  .shop-card-body {
    padding: 18px;
  }
}

/* ═══════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════ */
.cta-block {
  background: linear-gradient(0deg, rgba(26, 13, 61, 0) 0%, rgba(26, 13, 61, 0.75) 100%), #120D2E;
  padding: clamp(64px, 10vh, 120px) clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(139, 84, 232, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vh, 28px);
}

.cta-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

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

.cta-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 40px;
  background: linear-gradient(180deg, #CBA4FF 0%, #A476F2 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(139, 84, 232, 0.45);
}

.cta-btn:hover {
  background: linear-gradient(180deg, #D4B2FF 0%, #AE82F5 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 84, 232, 0.55);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* ═══════════════════════════════════════
   CONTACT FORM — İletişim
   ═══════════════════════════════════════ */
.cform,
#mobilForm {
  display: none !important;
}

.cform {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vh, 96px) 0;
  background: #3D1F6B;
}

/* 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(--bg-card2);
  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: var(--accent);
  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: var(--accent);
  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(--bg-card);
  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: var(--bg-card2);
  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(--text-heading);
  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(--text-heading);
  margin-bottom: 6px;
}

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

.cform-field input:focus,
.cform-field select:focus {
  border-color: var(--accent);
  background: var(--bg-card2);
}

.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(--border);
  border-radius: 10px;
  background: var(--bg-card);
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-heading);
  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(--bg-card2);
  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(--bg-card);
}

.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: #F5F5F6;
  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: #4F4031;
  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: #1E1915;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.case-section-title em {
  font-style: italic;
  font-weight: 400;
  color: #1E1915;
}

.case-section-sub {
  font-family: var(--ff-body);
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: #606366;
  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: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #CFD0D2;
  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: #3C332A;
  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: #1E1915;
}

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

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

.case-text strong {
  color: #1E1915;
  font-weight: 600;
}

.case-text--highlight {
  background: linear-gradient(106.61deg, #F9F5F2 0%, #EDECEA 100%);
  border-left: none;
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  font-size: 13.5px;
  color: #2A2420;
}

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

.case-tag {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  color: #3C332A;
  background: linear-gradient(106.61deg, #F9F5F2 0%, #EDECEA 100%);
  border: 1px solid #F0EEFF;
  padding: 6px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.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(--accent-deep);
  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(--text-secondary);
  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 #E2DCEF;
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

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

.about-eyebrow-text {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  color: #15102E;
  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;
}

@media (max-width: 768px) {
  .about-photo {
    max-height: 320px;
  }
}

/* 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: #15102E;
  line-height: 1;
}

.about-photo-badge-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: #6E6780;
  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: #15102E;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.about-title em {
  font-style: italic;
  font-weight: 400;
  color: #3D3550;
}

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

.about-text strong {
  color: #15102E;
  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: #F6F5FA;
  border: 1px solid #E7E3F0;
  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(123, 79, 204, .15);
}

.about-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(123, 79, 204, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.about-stat-label {
  font-family: var(--ff-body);
  font-size: 14px;
  color: #5A5468;
  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: #15102E;
  border: 1.5px solid #D8D2E6;
}

.about-cta--call:hover {
  background: #F2EEFB;
  border-color: var(--accent-deep);
  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(--bg-card2);
  color: var(--text-secondary);
  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: #15102E;
}

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

/* ═══════════════════════════════════════
   HASTA HİKAYELERİ — Marquee Carousel
   ═══════════════════════════════════════ */
.stories {
  background: #F0EEFF;
  padding: clamp(32px, 5vh, 56px) 0 clamp(40px, 6vh, 72px);
  overflow: hidden;
}

.stories-header {
  text-align: center;
  margin-bottom: 28px;
  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: #3C332A;
  background: #F0EEFF;
  border: none;
  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: #080412;
  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: #606366;
}

/* 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;
  will-change: transform;
}

.marquee-track--right {
  animation: marqueeRight 45s linear infinite;
  transform: translateX(0);
}

.marquee-track--left {
  animation: marqueeLeft 40s linear infinite;
  transform: translateX(-50%);
}

@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(0deg, rgba(26,13,61,0) 0%, rgba(26,13,61,0.75) 100%), #120D2E;
  color: #fff;
  min-height: 260px;
}

/* Light variant */
.sc--light {
  background: #FFFFFF;
  border: 1px solid #CFD0D2;
  min-height: 260px;
}

/* Floating badge — on dark cards: glass/white; on light cards: solid purple */
.sc__float {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 7px 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  backdrop-filter: blur(5px);
}

.sc__float--blue {
  background: #C9A1FF;
  border-color: rgba(123, 79, 204, 0.3);
}

.sc__float-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #C9A1FF;
  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: #7B4FCC;
  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: #86888C;
}

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

.sc__name--dark {
  color: #080412;
}

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

.sc__meta--dark {
  color: #86888C;
}

/* 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: #F0EEFF;
  border-color: #F0EEFF;
}

.sc__qbox--light p {
  color: #292B2C;
}

/* 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: #86888C;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #1E0F3D 0%, #3D1F6B 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(--accent-deep);
  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(--accent-deep);
  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(--text-muted);
}

.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(123, 79, 204, .35);
}

.float-btn--phone:hover .float-btn-icon {
  box-shadow: 0 6px 28px rgba(123, 79, 204, .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;
  }

  /* === MOBİL HERO CARD TASARIMI === */
  .hero {
    height: auto;
    min-height: unset;
    max-height: unset;
    display: flex;
    flex-direction: column;
    background: #0d1117;
  }

  .hero-video-wrap {
    position: relative;
    inset: unset;
    width: 100%;
    height: 56vw;
    min-height: 220px;
    max-height: 320px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }

  .hero-vid {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(13,17,23,.1) 0%,
      rgba(13,17,23,.55) 100%);
    border-radius: 0 0 20px 20px;
  }

  .hero-inner {
    position: relative;
    inset: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 24px 20px calc(28px + env(safe-area-inset-bottom));
    background: #0d1117;
  }

  .hero-col {
    flex: unset;
  }

  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero h1 em {
    display: block;
  }

  .hero-sub {
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 22px;
    color: rgba(255,255,255,.65);
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 15px;
    border-radius: 14px;
  }

  /* 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;
  }
}