/* ================================================
   KUAFÖRÜM YANIMDA — Landing Page Styles
   Bootstrap 5 + Custom Design System
   ================================================ */

/* ---------- 1. CSS Variables ---------- */
:root {
  --ky-primary: #4F46E5;
  --ky-primary-dark: #3730A3;
  --ky-primary-light: #EEF2FF;
  --ky-accent: #7C3AED;
  --ky-success: #10B981;
  --ky-danger: #EF4444;
  --ky-warning: #F59E0B;
  --ky-gold: #FFD700;
  --ky-dark: #0F172A;
  --ky-body: #475569;
  --ky-muted: #94A3B8;
  --ky-border: #E2E8F0;
  --ky-bg: #F8FAFC;
  --ky-white: #FFFFFF;
  --ky-navy: #1E1B4B;
  --ky-radius: 16px;
  --ky-radius-sm: 12px;
  --ky-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --ky-shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --ky-transition: all .3s ease;
}

/* ---------- 2. Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ky-body);
  background: var(--ky-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--ky-dark); font-weight: 700; }
a { text-decoration: none; transition: var(--ky-transition); }
img { max-width: 100%; height: auto; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ky-primary);
  background: var(--ky-primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--ky-body);
  max-width: 640px;
}

/* ---------- 3. Navbar ---------- */
.ky-navbar {
  padding: 16px 0;
  transition: var(--ky-transition);
  background: transparent;
  z-index: 1050;
}

.ky-navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.ky-navbar .navbar-brand {
  background: var(--ky-navy);
  border-radius: 10px;
  padding: 6px 16px;
  transition: var(--ky-transition);
}

.ky-navbar .navbar-brand img {
  height: 34px;
}

.ky-navbar .nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ky-dark);
  padding: 8px 16px !important;
  border-radius: 8px;
}

.ky-navbar .nav-link:hover,
.ky-navbar .nav-link:focus {
  color: var(--ky-primary);
  background: var(--ky-primary-light);
}

.btn-nav-outline {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ky-primary);
  border: 1.5px solid var(--ky-primary);
  border-radius: 10px;
  padding: 8px 20px;
  background: transparent;
}

.btn-nav-outline:hover {
  background: var(--ky-primary);
  color: var(--ky-white);
}

.btn-nav-solid {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ky-white);
  background: var(--ky-primary);
  border: 1.5px solid var(--ky-primary);
  border-radius: 10px;
  padding: 8px 20px;
}

.btn-nav-solid:hover {
  background: var(--ky-primary-dark);
  border-color: var(--ky-primary-dark);
  color: var(--ky-white);
}

.ky-navbar .navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.ky-navbar .navbar-toggler:focus { box-shadow: none; }

.ky-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234F46E5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- 4. Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--ky-primary-light) 0%, #fff 50%, #F5F3FF 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--ky-dark);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--ky-primary), var(--ky-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ky-body);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ky-white);
  background: linear-gradient(135deg, var(--ky-primary), var(--ky-accent));
  border: none;
  border-radius: var(--ky-radius-sm);
  padding: 14px 32px;
  box-shadow: 0 8px 32px rgba(79,70,229,0.3);
  transition: var(--ky-transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79,70,229,0.4);
  color: var(--ky-white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ky-primary);
  background: var(--ky-white);
  border: 1.5px solid var(--ky-border);
  border-radius: var(--ky-radius-sm);
  padding: 14px 32px;
  transition: var(--ky-transition);
}

.btn-hero-secondary:hover {
  border-color: var(--ky-primary);
  background: var(--ky-primary-light);
  color: var(--ky-primary);
}

.hero-badges {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ky-muted);
  font-weight: 500;
}

.hero-badge i { color: var(--ky-success); }

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  max-height: 560px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
  position: relative;
  z-index: 2;
}

.hero-float {
  position: absolute;
  background: var(--ky-white);
  border-radius: var(--ky-radius-sm);
  padding: 12px 18px;
  box-shadow: var(--ky-shadow-lg);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ky-dark);
}

.hero-float--top { top: 10%; right: -10%; animation-delay: 0s; }
.hero-float--bottom { bottom: 15%; left: -5%; animation-delay: 2s; }

.hero-float i { margin-right: 8px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- 5. Trust Bar ---------- */
.trust-bar {
  background: var(--ky-navy);
  padding: 48px 0;
}

.trust-item {
  text-align: center;
  padding: 16px;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ky-white);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: .85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ---------- 6. Feature Blocks ---------- */
.features-section { padding: 100px 0 60px; }

.feature-block {
  padding: 80px 0;
  position: relative;
}

.feature-block:nth-child(even) { background: var(--ky-bg); }

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ky-white);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-icon-wrap--indigo  { background: linear-gradient(135deg, var(--ky-primary), var(--ky-accent)); }
.feature-icon-wrap--emerald { background: linear-gradient(135deg, #059669, var(--ky-success)); }
.feature-icon-wrap--blue    { background: linear-gradient(135deg, #2563EB, #3B82F6); }
.feature-icon-wrap--orange  { background: linear-gradient(135deg, #EA580C, var(--ky-warning)); }

.feature-block .section-title { font-size: 2rem; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--ky-body);
}

.feature-list li i {
  color: var(--ky-success);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.feature-phone {
  max-height: 480px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.12));
  border-radius: 24px;
}

/* ---------- 7. Web Panel ---------- */
.web-panel-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ky-bg) 0%, var(--ky-white) 100%);
}

.browser-frame {
  background: var(--ky-white);
  border-radius: var(--ky-radius);
  box-shadow: var(--ky-shadow-lg);
  overflow: hidden;
  border: 1px solid var(--ky-border);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--ky-border);
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CBD5E1;
}

.browser-dot:first-child { background: #EF4444; }
.browser-dot:nth-child(2) { background: #F59E0B; }
.browser-dot:nth-child(3) { background: #10B981; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  background: var(--ky-white);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: .75rem;
  color: var(--ky-muted);
}

.browser-body img {
  width: 100%;
  display: block;
}

/* ---------- 8. Pricing ---------- */
.pricing-section {
  padding: 100px 0;
  background: var(--ky-navy);
}

.pricing-section .section-label {
  background: rgba(79,70,229,0.2);
  color: #A5B4FC;
}

.pricing-section .section-title { color: var(--ky-white); }
.pricing-section .section-desc { color: rgba(255,255,255,0.65); }

.pricing-card {
  background: var(--ky-white);
  border-radius: var(--ky-radius);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--ky-transition);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.pricing-card--popular {
  border-color: var(--ky-primary);
  box-shadow: 0 0 0 1px var(--ky-primary), 0 20px 60px rgba(79,70,229,0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ky-primary), var(--ky-accent));
  color: var(--ky-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card .pkg-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ky-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ky-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: .85rem;
  color: var(--ky-muted);
  margin-bottom: 6px;
}

.pricing-discount {
  font-size: .8rem;
  color: var(--ky-body);
  margin-bottom: 4px;
}

.pricing-discount strong { color: var(--ky-success); }

.pricing-staff {
  display: inline-block;
  background: var(--ky-primary-light);
  color: var(--ky-primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  margin: 12px 0 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: .875rem;
  color: var(--ky-body);
}

.pricing-features li i {
  color: var(--ky-success);
  font-size: .8rem;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid var(--ky-primary);
  color: var(--ky-primary);
  background: transparent;
  transition: var(--ky-transition);
}

.btn-pricing:hover {
  background: var(--ky-primary);
  color: var(--ky-white);
}

.pricing-card--popular .btn-pricing {
  background: var(--ky-primary);
  color: var(--ky-white);
}

.pricing-card--popular .btn-pricing:hover {
  background: var(--ky-primary-dark);
  border-color: var(--ky-primary-dark);
}

.pricing-note {
  font-size: .75rem;
  color: var(--ky-muted);
  margin-top: 8px;
  text-align: center;
}

/* Premium add-on card */
.premium-addon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--ky-radius);
  padding: 48px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.premium-addon::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.premium-addon .addon-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ky-white);
}

.premium-addon .addon-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ky-gold);
}

.premium-addon .addon-desc {
  color: rgba(255,255,255,0.8);
  font-size: .9rem;
}

.addon-feature-card {
  background: rgba(255,255,255,0.12);
  border-radius: var(--ky-radius-sm);
  padding: 20px;
  text-align: center;
  transition: var(--ky-transition);
}

.addon-feature-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.addon-feature-card i {
  font-size: 2rem;
  color: var(--ky-gold);
  margin-bottom: 10px;
  display: block;
}

.addon-feature-card h6 {
  color: var(--ky-white);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: .9rem;
}

.addon-feature-card p {
  color: rgba(255,255,255,0.75);
  font-size: .8rem;
  margin: 0;
}

.btn-addon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ky-gold);
  color: #764ba2;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  transition: var(--ky-transition);
}

.btn-addon:hover {
  background: #FFE44D;
  color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Extras info table */
.extras-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--ky-radius);
  padding: 36px;
  margin-top: 48px;
}

.extras-card h4 { color: var(--ky-white); margin-bottom: 24px; }

.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: .9rem;
}

.extras-list li:last-child { border-bottom: none; }

.extras-list .price-tag {
  background: rgba(79,70,229,0.3);
  color: #A5B4FC;
  padding: 4px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
}

.extras-list .discount-tag {
  background: rgba(16,185,129,0.2);
  color: #6EE7B7;
  padding: 4px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
}

/* ---------- 9. Salons ---------- */
.salons-section {
  padding: 100px 0;
  background: var(--ky-bg);
}

.salon-card {
  background: var(--ky-white);
  border-radius: var(--ky-radius);
  overflow: hidden;
  box-shadow: var(--ky-shadow);
  transition: var(--ky-transition);
  height: 100%;
}

.salon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ky-shadow-lg);
}

.salon-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.salon-card-body {
  padding: 20px;
  text-align: center;
}

.salon-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-salon {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ky-primary);
  border: 1.5px solid var(--ky-primary);
  border-radius: 8px;
  padding: 8px 20px;
  transition: var(--ky-transition);
  display: inline-block;
}

.btn-salon:hover {
  background: var(--ky-primary);
  color: var(--ky-white);
}

.btn-all-salons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ky-primary);
  border: 2px solid var(--ky-primary);
  border-radius: var(--ky-radius-sm);
  padding: 12px 32px;
  transition: var(--ky-transition);
}

.btn-all-salons:hover {
  background: var(--ky-primary);
  color: var(--ky-white);
}

/* ---------- 10. FAQ ---------- */
.faq-section {
  padding: 100px 0;
  background: var(--ky-white);
}

.faq-tabs .nav-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--ky-body);
  border-radius: 10px;
  padding: 10px 20px;
  border: 1.5px solid var(--ky-border);
  margin-right: 8px;
  margin-bottom: 8px;
  transition: var(--ky-transition);
}

.faq-tabs .nav-link.active {
  background: var(--ky-primary);
  color: var(--ky-white);
  border-color: var(--ky-primary);
}

.faq-tabs .nav-link:not(.active):hover {
  border-color: var(--ky-primary);
  color: var(--ky-primary);
}

.faq-section .accordion-item {
  border: 1px solid var(--ky-border);
  border-radius: var(--ky-radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ky-dark);
  background: var(--ky-white);
  padding: 18px 24px;
  box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--ky-primary-light);
  color: var(--ky-primary);
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234F46E5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
  padding: 16px 24px;
  font-size: .9rem;
  color: var(--ky-body);
  line-height: 1.7;
}

/* ---------- 11. CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ky-primary) 0%, var(--ky-accent) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section .section-title {
  color: var(--ky-white);
  font-size: 2.5rem;
}

.cta-section .section-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-channels {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ky-white);
  background: #25D366;
  border: none;
  border-radius: var(--ky-radius-sm);
  padding: 16px 36px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--ky-transition);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  color: var(--ky-white);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ky-primary);
  background: var(--ky-white);
  border: none;
  border-radius: var(--ky-radius-sm);
  padding: 16px 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: var(--ky-transition);
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  color: var(--ky-primary-dark);
}

.cta-email {
  color: rgba(255,255,255,0.85);
  font-size: .95rem;
  margin-top: 20px;
}

.cta-email a {
  color: var(--ky-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-email a:hover { color: rgba(255,255,255,0.9); }

/* Store buttons in CTA or hero */
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ky-dark);
  color: var(--ky-white);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--ky-transition);
}

.btn-store:hover {
  background: #1a1a2e;
  color: var(--ky-white);
  transform: translateY(-2px);
}

.btn-store i { font-size: 1.3rem; }

/* ---------- 12. Footer ---------- */
.site-footer {
  background: var(--ky-dark);
  padding: 64px 0 0;
}

.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-about {
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ky-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--ky-transition);
}

.footer-links a:hover { color: var(--ky-white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact li i {
  color: var(--ky-primary);
  margin-top: 3px;
  font-size: .9rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
}

.footer-contact a:hover { color: var(--ky-white); }

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  transition: var(--ky-transition);
}

.footer-social a:hover {
  background: var(--ky-primary);
  color: var(--ky-white);
}

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

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom img {
  height: 28px;
  opacity: .5;
}

/* ---------- 13. Utilities ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--ky-primary), var(--ky-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- 14. Responsive ---------- */
@media (max-width: 1199.98px) {
  .hero-title { font-size: 2.75rem; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 991.98px) {
  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.5rem; }
  .hero-image-wrapper { margin-top: 48px; }
  .hero-phone { max-height: 420px; }
  .hero-float { display: none; }

  .feature-block { padding: 60px 0; }
  .feature-phone-wrapper { margin-top: 40px; min-height: 320px; }
  .feature-phone { max-height: 380px; }

  .pricing-section { padding: 80px 0; }
  .premium-addon { padding: 32px; }
  .premium-addon .addon-price { font-size: 2rem; }

  .cta-section { padding: 80px 0; }
  .cta-section .section-title { font-size: 2rem; }
}

@media (max-width: 767.98px) {
  .hero-section { padding: 90px 0 50px; text-align: center; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-phone { max-height: 360px; }

  .section-title { font-size: 1.75rem; }
  .section-desc { font-size: 1rem; }

  .feature-block { padding: 48px 0; text-align: center; }
  .feature-icon-wrap { margin-left: auto; margin-right: auto; }
  .feature-list li { justify-content: center; text-align: left; }
  .feature-phone { max-height: 320px; }

  .trust-item { padding: 12px 8px; }
  .trust-number { font-size: 2rem; }

  .pricing-card { margin-bottom: 20px; }

  .premium-addon { padding: 24px; }

  .salon-card img { height: 140px; }

  .cta-section .section-title { font-size: 1.6rem; }
  .cta-channels { flex-direction: column; align-items: center; }

  .footer-bottom { justify-content: center; text-align: center; }

  .ky-navbar .navbar-collapse {
    background: var(--ky-white);
    padding: 16px;
    border-radius: var(--ky-radius-sm);
    margin-top: 12px;
    box-shadow: var(--ky-shadow-lg);
  }

  .ky-navbar .nav-link { padding: 10px 16px !important; }

  .ky-navbar .d-flex {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .ky-navbar .d-flex .btn-nav-outline,
  .ky-navbar .d-flex .btn-nav-solid {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.75rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .store-buttons { justify-content: center; }
  .btn-store { width: 100%; justify-content: center; }
}

/* ---------- 15. Hero Dual Mockup ---------- */
.hero-dual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}

.hero-dual .hero-phone-main {
  max-height: 520px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
  z-index: 3;
  position: relative;
}

.hero-web-frame {
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 280px;
  background: var(--ky-white);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 2;
  border: 1px solid var(--ky-border);
}

.hero-web-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--ky-border);
}

.hero-web-bar .dot { width: 7px; height: 7px; border-radius: 50%; }
.hero-web-bar .dot:nth-child(1) { background: #EF4444; }
.hero-web-bar .dot:nth-child(2) { background: #F59E0B; }
.hero-web-bar .dot:nth-child(3) { background: #10B981; }

.hero-web-frame img { width: 100%; display: block; }

@media (max-width: 991.98px) {
  .hero-web-frame { width: 200px; right: -5%; bottom: 5%; }
  .hero-dual .hero-phone-main { max-height: 400px; }
}

@media (max-width: 767.98px) {
  .hero-web-frame { display: none; }
  .hero-dual .hero-phone-main { max-height: 360px; }
}

/* ---------- 16. Feature Dual Phones ---------- */
.feature-phones-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.feature-phones-stack .phone-primary {
  max-height: 480px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.12));
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

.feature-phones-stack .phone-secondary {
  max-height: 400px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.1));
  border-radius: 20px;
  position: absolute;
  z-index: 1;
  opacity: .75;
}

.feature-phones-stack .phone-secondary--right {
  right: 0;
  top: 10%;
  transform: rotate(4deg);
}

.feature-phones-stack .phone-secondary--left {
  left: 0;
  top: 10%;
  transform: rotate(-4deg);
}

@media (max-width: 991.98px) {
  .feature-phones-stack .phone-primary { max-height: 380px; }
  .feature-phones-stack .phone-secondary { max-height: 320px; }
}

@media (max-width: 767.98px) {
  .feature-phones-stack .phone-primary { max-height: 320px; }
  .feature-phones-stack .phone-secondary { display: none; }
  .feature-phones-stack { min-height: 300px; }
}

/* ---------- 17. Customer App Section ---------- */
.customer-app-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ky-white) 0%, #F5F3FF 100%);
}

.customer-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.customer-app-card {
  text-align: center;
  transition: var(--ky-transition);
}

.customer-app-card:hover { transform: translateY(-6px); }

.customer-app-card img {
  max-height: 400px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.1));
  margin-bottom: 16px;
}

.customer-app-card h6 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ky-dark);
}

.customer-app-card p {
  font-size: .8rem;
  color: var(--ky-muted);
  margin: 0;
}

@media (max-width: 991.98px) {
  .customer-app-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-app-card img { max-height: 320px; }
}

@media (max-width: 575.98px) {
  .customer-app-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .customer-app-card img { max-height: 260px; }
}

/* ---------- 18. Fixed WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ky-white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--ky-transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: var(--ky-white);
}

.whatsapp-float .wp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ky-dark);
  color: var(--ky-white);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--ky-transition);
}

.whatsapp-float:hover .wp-tooltip { opacity: 1; }

@keyframes wp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float { animation: wp-pulse 2s infinite; }
.whatsapp-float:hover { animation: none; }

/* ---------- 19. Footer Logo ---------- */
.site-footer .footer-brand img {
  filter: none;
}

/* Web Panel section (standalone) */
.web-panel-showcase {
  padding: 80px 0;
  background: var(--ky-bg);
}

.web-panel-showcase .browser-frame {
  max-width: 900px;
  margin: 0 auto;
}
