/**
 * LANDING PAGE - ZENGIN & MODERN
 */

/* ============================================
   CONTAINER (global)
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar kaldırıldı */

/* ============================================
   HEADER (announcement + navbar)
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 0 rgba(17,24,39,.06);
  transition: box-shadow .3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(17,24,39,.12);
}

/* Announcement Band */
.ann-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(90deg, #C1121F 0%, #E63946 50%, #C1121F 100%);
  background-size: 200% auto;
  animation: annSlide 4s linear infinite;
  color: #fff !important;
  text-decoration: none;
  padding: 9px 24px;
  font-size: 13.5px;
  font-weight: 600;
  transition: filter .2s;
  box-sizing: border-box;
}
.ann-band:hover { filter: brightness(1.08); }
@keyframes annSlide {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.ann-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulseDot 1.6s ease infinite;
  flex-shrink: 0;
}
.ann-arrow {
  font-size: 11px;
  animation: arrowBounce .9s ease infinite alternate;
}
@keyframes arrowBounce {
  from { transform: translateX(0); }
  to   { transform: translateX(5px); }
}

/* Navbar V2 */
.navbar-v2 {
  padding: 0;
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Brand / Logo */
.brand-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #E63946, #C1121F);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(230,57,70,.3);
  transition: transform .25s, box-shadow .25s;
}
.brand-v2:hover .brand-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(230,57,70,.4);
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.3px;
}
.brand-slogan {
  font-size: 11px;
  color: #E63946;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-link-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}
.nav-link-item i { color: #E63946; font-size: 13px; }
.nav-link-item:hover {
  background: #fff1f2;
  color: #E63946;
}

/* CTA Buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-ghost {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: 2px solid #E63946;
  border-radius: 12px;
  color: #E63946;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.nav-btn-ghost:hover {
  background: #E63946;
  color: #fff;
  transform: translateY(-2px);
}
.nav-btn-solid {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #E63946, #C1121F);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(230,57,70,.35);
  transition: all .2s;
  white-space: nowrap;
}
.nav-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,57,70,.45);
  filter: brightness(1.06);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-burger:hover { background: #fff1f2; }
.nav-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #111827;
  border-radius: 2px;
  transition: all .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 2px solid #fff1f2;
  padding: 16px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(17,24,39,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
}
.mobile-menu a i { color: #E63946; width: 18px; text-align: center; }
.mobile-menu a:hover { background: #fff1f2; color: #E63946; }
.mobile-menu-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}
.w100 { flex: 1; justify-content: center; }

/* ============================================
   HEADER RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-btn-ghost { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .brand-slogan { display: none; }
  .brand-name { font-size: 18px; }
  .ann-band { font-size: 12px; padding: 8px 12px; gap: 7px; }
  .mobile-menu-cta { flex-direction: column; }
}

/* ============================================
   LEGACY NAVBAR (kept for safety)
   ============================================ */
.announcement-bar { display: none; }
.navbar { display: none; }
.btn-login, .btn-register { display: none; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============================================
   HERO SECTION (legacy - kept for safety)
   ============================================ */
.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================
   HERO V2 - YENİ TASARIM
   ============================================ */
.hero-v2 {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-v2-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob1 { width: 600px; height: 600px; background: rgba(230,57,70,.12); top: -200px; right: -100px; animation: blobDrift 10s ease-in-out infinite alternate; }
.blob2 { width: 400px; height: 400px; background: rgba(230,57,70,.07); bottom: 0; left: -150px; animation: blobDrift 14s ease-in-out infinite alternate-reverse; }
.blob3 { width: 300px; height: 300px; background: rgba(139,92,246,.06); top: 40%; left: 40%; animation: blobDrift 12s ease-in-out infinite alternate; }

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.06); }
}

.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff1f2;
  color: #E63946;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1.5px solid #fecdd3;
  box-shadow: 0 2px 12px rgba(230,57,70,.12);
  animation: fadeSlideDown .6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #E63946;
  border-radius: 50%;
  animation: pulseDot 1.8s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,.5); }
  50% { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

/* Title */
.hero-v2-title {
  font-size: 54px;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  animation: fadeSlideUp .7s ease .1s both;
}
.hero-v2-highlight {
  color: #E63946;
  position: relative;
  display: inline-block;
}
.hero-v2-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 4px;
  background: linear-gradient(90deg, #E63946, #ff8fa3);
  border-radius: 2px;
  transform-origin: left;
  animation: underlineGrow .8s ease .5s both;
  transform: scaleX(0);
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

/* Subtitle */
.hero-v2-subtitle {
  font-size: 18px;
  color: #4B5563;
  line-height: 1.75;
  margin: 0 0 28px;
  animation: fadeSlideUp .7s ease .2s both;
}

/* Feature chips */
.hero-v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeSlideUp .7s ease .3s both;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: #374151;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.hero-chip:hover {
  border-color: #E63946;
  color: #E63946;
  background: #fff1f2;
  transform: translateY(-2px);
}
.hero-chip i { color: #E63946; }

/* CTA */
.hero-v2-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  animation: fadeSlideUp .7s ease .4s both;
}
.hero-v2-btn-main {
  background: linear-gradient(135deg, #E63946, #c1121f);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(230,57,70,.35);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 34px;
}
.hero-v2-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(230,57,70,.45);
}
.hero-v2-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #dcfce7;
  color: #16a34a !important;
  border: 2px solid #bbf7d0;
  padding: 17px 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.hero-v2-btn-wa:hover { background: #16a34a; color: #fff !important; transform: translateY(-3px); }

.hero-v2-disclaimer {
  font-size: 13px;
  color: #9ca3af;
  margin: 0 0 32px;
  animation: fadeSlideUp .7s ease .45s both;
}
.hero-v2-disclaimer i { color: #E63946; }

/* Trust */
.hero-v2-trust {
  display: flex;
  gap: 0;
  align-items: center;
  animation: fadeSlideUp .7s ease .5s both;
}
.trust-v2-item { display: flex; flex-direction: column; gap: 4px; }
.trust-v2-num { font-size: 28px; font-weight: 900; color: #111827; line-height: 1; }
.trust-v2-num small { font-size: 16px; color: #6b7280; }
.trust-v2-lbl { font-size: 13px; color: #6b7280; font-weight: 600; }
.trust-v2-div { width: 1px; height: 40px; background: #e5e7eb; margin: 0 28px; }

/* Visual side */
.hero-v2-visual {
  position: relative;
  height: 520px;
  animation: fadeSlideUp .8s ease .2s both;
}

/* Panel ana kart */
.hv2-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(17,24,39,.12), 0 2px 8px rgba(17,24,39,.06);
  overflow: hidden;
}
.hv2-main {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hv2-panel-bar {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hv2-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.hv2-dot.red { background: #ef4444; }
.hv2-dot.yellow { background: #f59e0b; }
.hv2-dot.green { background: #22c55e; }
.hv2-panel-title { font-size: 13px; font-weight: 700; color: #374151; margin-left: 6px; }
.hv2-panel-title i { color: #E63946; margin-right: 5px; }

.hv2-panel-body { padding: 20px; }

/* Stat row */
.hv2-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.hv2-stat-card {
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hv2-stat-red { background: #fff1f2; }
.hv2-stat-green { background: #f0fdf4; }
.hv2-stat-blue { background: #eff6ff; }
.hv2-stat-icon { font-size: 20px; }
.hv2-stat-red .hv2-stat-icon { color: #E63946; }
.hv2-stat-green .hv2-stat-icon { color: #16a34a; }
.hv2-stat-blue .hv2-stat-icon { color: #2563eb; }
.hv2-stat-val { font-size: 17px; font-weight: 800; color: #111827; line-height: 1; }
.hv2-stat-lbl { font-size: 11px; color: #6b7280; font-weight: 600; margin-top: 2px; }

/* Randevu listesi */
.hv2-appt-list { display: flex; flex-direction: column; gap: 8px; }
.hv2-appt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}
.hv2-appt-now { background: #fff7f7; border-color: #fecdd3; }
.hv2-appt-avatar {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #374151;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv2-appt-name { font-size: 13px; font-weight: 700; color: #111827; }
.hv2-appt-service { font-size: 11px; color: #6b7280; margin-top: 2px; }
.hv2-appt-status { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-left: auto; white-space: nowrap; }
.hv2-appt-status.done { background: #dcfce7; color: #16a34a; }
.hv2-appt-status.now { background: #fee2e2; color: #E63946; }
.hv2-appt-status.upcoming { background: #f3f4f6; color: #6b7280; }

/* Floating kartlar */
.hv2-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(17,24,39,.12);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  min-width: 155px;
  border: 1px solid #f3f4f6;
}
.hv2-float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hv2-float-sms  { bottom: 200px; right: -20px; animation: floatBob 4s ease-in-out infinite; }
.hv2-float-new  { top: 0px; right: -10px; animation: floatBob 5s ease-in-out 1s infinite; }
.hv2-float-rev  { bottom: 90px; left: -24px; animation: floatBob 6s ease-in-out .5s infinite; }
.hv2-float-cust { top: 160px; left: -24px; animation: floatBob 5s ease-in-out 1.5s infinite; }

@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Steps strip */
.hero-v2-steps {
  background: linear-gradient(135deg, #fff1f2 0%, #fff 100%);
  border-top: 1px solid #fecdd3;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #E63946;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon {
  width: 42px; height: 42px;
  background: #fff;
  border: 2px solid #fecdd3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E63946;
  font-size: 17px;
}
.step-text { display: flex; flex-direction: column; gap: 2px; }
.step-text strong { font-size: 14px; color: #111827; }
.step-text span { font-size: 12px; color: #6b7280; }
.step-arrow { color: #fca5a5; font-size: 16px; padding: 0 4px; }

/* Animasyon yardımcılar */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO V2 - MOBİL
   ============================================ */
@media (max-width: 900px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    padding: 50px 16px 40px;
    gap: 40px;
  }
  .hero-v2-title { font-size: 36px; }
  .hero-v2-visual {
    height: auto;
    min-height: 360px;
  }
  .hv2-float-rev, .hv2-float-cust { display: none; }
  .hv2-float-sms { right: 0; bottom: -10px; }
  .hv2-float-new { right: 0; top: -14px; }
  .trust-v2-div { margin: 0 16px; }
  .trust-v2-num { font-size: 22px; }
  .steps-row { gap: 0; }
  .step-arrow { display: none; }
  .step-item { flex: 1 1 40%; justify-content: center; }
}
@media (max-width: 540px) {
  .hero-v2-title { font-size: 30px; }
  .hero-v2-chips { gap: 8px; }
  .hero-chip { font-size: 12px; padding: 6px 12px; }
  .hero-v2-cta { flex-direction: column; }
  .hero-v2-trust { gap: 0; }
  .trust-v2-div { margin: 0 12px; }
  .hv2-stats-row { grid-template-columns: 1fr 1fr; }
  .step-item { flex: 1 1 100%; }
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF1F2;
  color: #E63946;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid #FDEBEC;
}

.hero-badge i {
  color: #FFD700;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-features-list {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.hero-feature-item i {
  color: #16A34A;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 250ms ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: #E63946;
  border: 2px solid #E63946;
}

.btn-outline:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.hero-trust {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 32px;
  font-weight: 900;
  color: #E63946;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 14px;
  color: #6B7280;
  font-weight: 600;
}

/* Hero Visual - Mockups */
.hero-visual {
  position: relative;
  height: 500px;
}

.mockup-container {
  position: relative;
  height: 100%;
}

.mockup-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.15);
  position: absolute;
}

.mockup-dashboard {
  width: 420px;
  height: 280px;
  top: 40px;
  left: 0;
  z-index: 2;
}

.mockup-header {
  padding: 16px 20px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
}

.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #10B981; }

.mockup-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.mockup-content {
  padding: 20px;
}

.mockup-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-stat {
  background: #F9FAFB;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.mockup-stat-icon {
  font-size: 28px;
  color: #E63946;
  margin-bottom: 8px;
}

.mockup-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.mockup-stat-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 600;
}

.mockup-mobile {
  width: 200px;
  height: 360px;
  top: 80px;
  right: 40px;
  z-index: 3;
  background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  border: 8px solid #111827;
  border-radius: 32px;
}

.mockup-mobile-header {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-mobile-notch {
  width: 80px;
  height: 20px;
  background: #111827;
  border-radius: 0 0 14px 14px;
}

.mockup-mobile-content {
  padding: 40px 20px;
  text-align: center;
  color: #FFFFFF;
}

.mockup-mobile-content i {
  font-size: 64px;
  margin-bottom: 16px;
}

.mockup-mobile-content p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

/* ============================================
   BUSINESS TYPES
   ============================================ */
.business-types {
  padding: 100px 24px;
  background: #FAFAFA;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 19px;
  color: #6B7280;
  font-weight: 500;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.business-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #F3F4F6;
  transition: all 300ms ease;
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: #FDEBEC;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.12);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FDEBEC 0%, #FFF1F2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.business-icon i {
  font-size: 36px;
  color: #E63946;
}

.business-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.business-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 24px;
  background: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  border: 2px solid #F3F4F6;
  transition: all 300ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #FDEBEC;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.12);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #FDEBEC 0%, #FFF1F2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 32px;
  color: #E63946;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 24px;
  background: #FAFAFA;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 40px;
  border: 2px solid #F3F4F6;
  transition: all 300ms ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.15);
}

.pricing-featured {
  border-color: #E63946;
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  color: #FFFFFF;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #F3F4F6;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 24px;
  font-weight: 800;
  color: #E63946;
}

.amount {
  font-size: 56px;
  font-weight: 900;
  color: #E63946;
  line-height: 1;
}

.period {
  font-size: 18px;
  font-weight: 600;
  color: #6B7280;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pricing-features li {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features i {
  color: #10B981;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 24px;
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #FAFAFA;
  padding: 40px 36px;
  border-radius: 20px;
  border: 2px solid #F3F4F6;
  transition: all 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #FDEBEC;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #FFD700;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 500;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
}

.author-name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #6B7280;
  font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 24px;
  background: #FAFAFA;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 2px solid #F3F4F6;
  overflow: hidden;
  transition: all 250ms ease;
}

.faq-item:hover {
  border-color: #FDEBEC;
}

.faq-question {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.faq-question i {
  color: #E63946;
  font-size: 20px;
  transition: transform 250ms ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 32px 32px 32px;
  margin: 0;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.8;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 46px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 500;
}

.btn-white {
  background: #FFFFFF;
  color: #E63946;
  padding: 20px 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: all 250ms ease;
}

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1E1E1E;
  color: #FFFFFF;
  padding: 80px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 250ms ease;
}

.footer-social a:hover {
  background: #E63946;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 250ms ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 250ms ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 36px;
  color: #FFFFFF;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-features-list,
  .hero-cta,
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .business-grid,
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .navbar-nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-features-list {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-trust {
    gap: 24px;
  }
  
  .business-grid,
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
