* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0F1B2D;
  --navy2: #1A2E47;
  --navy3: #243B55;
  --orange: #FF6B35;
  --orange2: #E55A25;
  --white: #FFFFFF;
  --gray1: #F4F6F9;
  --gray2: #E8ECF2;
  --gray3: #9BA8B9;
  --gray4: #4A5568;
  --green: #22C55E;
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,27,45,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--gray3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-ghost {
  color: white;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-orange {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-orange:hover { background: var(--orange2); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,107,53,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,107,53,0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-title span { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: var(--gray3);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--orange2);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-hero-secondary:hover { border-color: rgba(255,255,255,0.4); }

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {}
.hero-stat-val { font-size: 28px; font-weight: 900; color: white; letter-spacing: -1px; }
.hero-stat-val span { color: var(--orange); }
.hero-stat-label { font-size: 13px; color: var(--gray3); margin-top: 2px; }

/* HERO PHONE MOCKUP */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(255,107,53,0.15);
  position: relative;
  z-index: 2;
}

.phone-inner {
  background: var(--navy);
  border-radius: 30px;
  overflow: hidden;
}

.phone-status {
  background: #0A1628;
  padding: 12px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-time { color: white; font-size: 13px; font-weight: 700; }
.phone-icons { color: white; font-size: 11px; }

.phone-header {
  background: var(--navy);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-logo { color: white; font-size: 16px; font-weight: 900; }
.phone-logo span { color: var(--orange); }
.phone-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 800;
}

.phone-hero-banner {
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  padding: 16px 20px;
  margin: 12px;
  border-radius: 14px;
}

.phone-greeting { color: var(--gray3); font-size: 11px; }
.phone-question { color: white; font-size: 15px; font-weight: 800; margin-top: 2px; }
.phone-question em { color: var(--orange); font-style: normal; }
.phone-loc { color: var(--gray3); font-size: 10px; margin-top: 6px; }

.phone-cats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 0 12px 12px;
}

.phone-cat {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
}

.phone-cat-emoji { font-size: 18px; }
.phone-cat-name { color: white; font-size: 9px; font-weight: 600; margin-top: 4px; display: block; }

.phone-ilan {
  margin: 0 12px 12px;
  background: white;
  border-radius: 12px;
  padding: 12px;
  border-left: 3px solid var(--orange);
}

.phone-ilan-title { font-size: 12px; font-weight: 700; color: var(--navy); }
.phone-ilan-meta { font-size: 10px; color: var(--gray3); margin-top: 3px; }
.phone-ilan-btn {
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  margin-top: 8px;
  display: inline-block;
}

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.float-card-1 {
  left: -60px;
  top: 80px;
  animation-delay: 0s;
}

.float-card-2 {
  right: -50px;
  bottom: 120px;
  animation-delay: 1.5s;
}

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

.float-icon { font-size: 20px; margin-bottom: 4px; }
.float-title { font-size: 11px; font-weight: 700; color: var(--navy); }
.float-sub { font-size: 10px; color: var(--gray3); }
.float-green { color: var(--green); font-weight: 700; font-size: 12px; }

/* SECTION COMMONS */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray3);
  line-height: 1.6;
  max-width: 520px;
}

/* HOW IT WORKS */
.how { background: var(--gray1); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-top: 60px;
}

.how-steps { display: flex; flex-direction: column; gap: 32px; }

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.how-step:hover .step-num { background: var(--orange); }

.step-content {}
.step-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray3); line-height: 1.6; }

.how-visual {
  background: var(--navy);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.how-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,107,53,0.15), transparent 60%);
}

.how-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.how-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.how-tab.active { background: var(--orange); color: white; }
.how-tab:not(.active) { background: rgba(255,255,255,0.08); color: var(--gray3); }

.how-mockup { position: relative; z-index: 2; }

.mockup-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
}

.mockup-label { font-size: 11px; color: var(--gray3); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.mockup-val { font-size: 15px; color: white; font-weight: 600; }
.mockup-sub { font-size: 12px; color: var(--gray3); margin-top: 3px; }

.mockup-ilan {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 14px;
  padding: 16px;
  border-left: 3px solid var(--orange);
  margin-bottom: 10px;
}

.mockup-ilan-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.mockup-ilan-title { color: white; font-size: 14px; font-weight: 700; }
.mockup-badge {
  background: rgba(255,107,53,0.2);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.mockup-ilan-meta { color: var(--gray3); font-size: 12px; }
.mockup-pay-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
}

/* CATEGORIES */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.cat-card {
  background: var(--gray1);
  border: 2px solid var(--gray2);
  border-radius: 16px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.08), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.cat-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,107,53,0.15); }
.cat-card:hover::before { opacity: 1; }

.cat-emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.cat-name { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--gray3); }

.cat-subs {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cat-sub-tag {
  background: rgba(255,107,53,0.08);
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}

/* WHY */
.why { background: var(--navy); }
.why .section-title { color: white; }
.why .section-sub { color: var(--gray3); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.2s;
}

.why-card:hover {
  background: rgba(255,107,53,0.08);
  border-color: rgba(255,107,53,0.2);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-title { font-size: 17px; font-weight: 800; color: white; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--gray3); line-height: 1.6; }

/* STATS */
.stats { background: var(--orange); padding: 60px 40px; }

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num { font-size: 48px; font-weight: 900; color: white; letter-spacing: -2px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500; }

/* TESTIMONIALS */
.testimonials { background: var(--gray1); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--gray2);
  transition: transform 0.2s;
}

.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 15px; color: var(--gray4); line-height: 1.65; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: white;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray3); }

/* CTA */
.cta {
  background: var(--navy);
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,107,53,0.12), transparent 70%);
}

.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-title span { color: var(--orange); }
.cta-sub { color: var(--gray3); font-size: 18px; margin-bottom: 40px; position: relative; z-index: 2; }

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.store-btn-icon { font-size: 28px; }
.store-btn-text { text-align: left; }
.store-btn-sub { font-size: 10px; color: var(--gray4); }
.store-btn-name { font-size: 16px; font-weight: 800; color: var(--navy); }

/* FOOTER */
footer {
  background: #080F1A;
  padding: 60px 40px 32px;
  color: var(--gray3);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo { font-size: 22px; font-weight: 900; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 14px; line-height: 1.6; max-width: 260px; }

.footer-col-title { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray3); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px;
  width: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

.modal-title { color: white; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-sub { color: var(--gray3); font-size: 14px; margin-bottom: 28px; }

.modal-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: white;
  font-size: 15px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.modal-input:focus { border-color: var(--orange); }
.modal-input::placeholder { color: var(--gray3); }

.modal-role {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-role-btn {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
  color: var(--gray3);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.modal-role-btn.active {
  border-color: var(--orange);
  background: rgba(255,107,53,0.1);
  color: white;
}

.social-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}

.social-btn:hover { opacity: 0.9; }
.social-btn-google { background: white; color: #1A1A1A; }
.social-btn-facebook { background: #1877F2; color: white; }

.divider-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.divider-line span { color: var(--gray3); font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 968px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  section { padding: 60px 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  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: 150;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: whatsapp-pulse 2.5s infinite;
}

/* AI USTA FLOATING WIDGET */
.ai-usta-wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.ai-usta-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.9), 0 0 8px rgba(255,255,255,0.7);
}
.ai-usta-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, #FFE8D9 65%, #FF6B35 100%);
  box-shadow: 0 8px 24px rgba(255,107,53,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsapp-pulse 2.5s infinite;
}
.ai-usta-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(0.92);
  transform-origin: center bottom;
}
.ai-usta-wrap:hover .ai-usta-circle { transform: scale(1.06); }
.ai-usta-panel {
  position: fixed;
  bottom: 118px;
  right: 20px;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 460px;
  max-height: calc(100vh - 140px);
  background: white;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ai-usta-panel.acik { display: flex; }
.ai-usta-panel-header {
  background: linear-gradient(135deg,#FF6B35,#FF8A5B);
  color: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-usta-panel-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F8F9FC;
}
.ai-usta-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.ai-usta-bubble.bot { background: white; border: 1px solid #E5E7EB; align-self: flex-start; border-bottom-left-radius: 4px; }
.ai-usta-bubble.user { background: #FF6B35; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.ai-usta-panel-input {
  padding: 10px 12px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  gap: 8px;
  background: white;
}
.ai-usta-panel-input input {
  flex: 1;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.ai-usta-panel-input button {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg,#FF6B35,#FF8A5B);
  border: none; color: white; font-size: 16px; cursor: pointer; flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

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

@media (max-width: 968px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .ai-usta-wrap {
    bottom: 14px;
    right: 14px;
  }
  .ai-usta-circle {
    width: 62px;
    height: 62px;
  }
  .ai-usta-label {
    font-size: 9.5px;
  }
  .ai-usta-panel {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
}

/* İÇ SAYFALAR (Politika / Bilgi Sayfaları) */
.page-hero {
  background: var(--navy);
  padding: 140px 40px 60px;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-hero-title span { color: var(--orange); }

.page-hero-sub {
  color: var(--gray3);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.page-breadcrumb {
  color: var(--gray3);
  font-size: 13px;
  margin-bottom: 16px;
}

.page-breadcrumb a { color: var(--gray3); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--orange); }

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 100px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.page-content p {
  font-size: 15px;
  color: var(--gray4);
  line-height: 1.75;
  margin-bottom: 16px;
}

.page-content ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
}

.page-content li {
  font-size: 15px;
  color: var(--gray4);
  line-height: 1.75;
  margin-bottom: 8px;
}

.page-content strong { color: var(--navy); }

.page-update {
  display: inline-block;
  background: var(--gray1);
  color: var(--gray3);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.page-info-box {
  background: var(--gray1);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid var(--orange);
}

.page-info-box p:last-child { margin-bottom: 0; }

.page-contact-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  margin-top: 40px;
  text-align: center;
}

.page-contact-box h3 { color: white; margin-top: 0; }
.page-contact-box p { color: var(--gray3); }

.page-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.page-team-card {
  background: var(--gray1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.page-team-emoji { font-size: 32px; margin-bottom: 8px; }
.page-team-role { font-size: 14px; font-weight: 700; color: var(--navy); }
.page-team-desc { font-size: 12px; color: var(--gray3); margin-top: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.pricing-card {
  background: white;
  border: 2px solid var(--gray2);
  border-radius: 18px;
  padding: 28px;
}

.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,107,53,0.04), transparent);
}

.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-size: 32px; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.pricing-price span { font-size: 14px; color: var(--gray3); font-weight: 500; }
.pricing-list { margin: 16px 0 0; padding: 0; list-style: none; }
.pricing-list li { font-size: 13px; padding: 6px 0; color: var(--gray4); }
.pricing-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }

@media (max-width: 768px) {
  .page-content { padding: 40px 20px 60px; }
  .page-hero { padding: 110px 20px 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page-team-grid { grid-template-columns: 1fr; }
}

/* ============ ONAY KUTUCUKLARI (Kayıt Formu) ============ */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.check-input {
  display: none;
}

.check-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
  background: rgba(255,255,255,0.05);
}

.check-box.checked {
  background: var(--orange);
  border-color: var(--orange);
}

.check-box.checked::after {
  content: '✓';
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.check-text {
  font-size: 13px;
  color: var(--gray3);
  line-height: 1.5;
}

.check-error {
  border-color: var(--red) !important;
}
