/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a2e; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== VARIABLES ===== */
:root {
  --primary: #29b6f6;
  --primary-dark: #0288d1;
  --primary-light: #e1f5fe;
  --secondary: #0d1b2a;
  --accent: #00e5ff;
  --green: #4caf50;
  --green-light: #e8f5e9;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.15rem; color: var(--gray-500); max-width: 600px; margin: 0 auto 48px; }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== FREE BADGE ===== */
.free-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--green-light); color: var(--green); padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== PRO / SUBSCRIPTION BADGE ===== */
.pro-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, rgba(41,182,246,0.18), rgba(2,136,209,0.12)); color: var(--primary-dark); padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; border: 1px solid rgba(41,182,246,0.35); }

/* ===== HERO PLATFORM DOWNLOADS ===== */
.hero-platforms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 26px 0 12px; width: 100%; max-width: 560px; }
.hero-platform-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(41, 182, 246, 0.22);
  border-radius: var(--radius-lg);
  padding: 16px 12px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.hero-platform-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hero-platform-icon { font-size: 1.65rem; line-height: 1; margin-bottom: 6px; }
.hero-platform-name { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-700); margin-bottom: 12px; }
.hero-platform-card .btn-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(41, 182, 246, 0.35);
  transition: var(--transition);
}
.hero-platform-card .btn-platform:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(41, 182, 246, 0.45); }
.hero-platform-soon { margin-top: 8px; font-size: 0.65rem; font-weight: 600; color: var(--gray-500); line-height: 1.35; }
.hero-platform-note { font-size: 0.78rem; color: var(--gray-600); line-height: 1.45; margin: 14px 0 0; max-width: 560px; }
.hero-platform-note strong { color: var(--primary-dark); font-weight: 700; }
.hero-links-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 18px; }
@media (max-width: 992px) {
  .hero-platforms { max-width: min(540px, 94vw); margin-left: auto; margin-right: auto; }
  .hero-platform-note { margin-left: auto; margin-right: auto; text-align: center; max-width: 400px; }
  .hero-links-row { justify-content: center; }
}
@media (max-width: 620px) {
  .hero-platforms { grid-template-columns: 1fr; max-width: 260px; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 4px 20px rgba(41,182,246,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(41,182,246,0.45); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: #1b2d44; transform: translateY(-2px); }
.btn-green { background: #25d366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; }
.navbar-logo img { height: 40px; width: 40px; object-fit: contain; }
.navbar-logo .logo-wash { color: var(--gray-900); }
.navbar-logo .logo-pro { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--gray-700); transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--gray-700); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ===== HOME INTRO (index — iki sütun: metin + telefon) ===== */
.home-intro {
  position: relative;
  padding: 108px 0 56px;
  background:
    radial-gradient(ellipse 90% 65% at 88% 18%, rgba(41, 182, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 12% 82%, rgba(76, 175, 80, 0.09), transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% -35%, rgba(41, 182, 246, 0.18), transparent 52%),
    linear-gradient(165deg, #dbeef9 0%, #f7fcff 38%, #fdfefe 72%, #f1f5f9 100%);
  overflow: hidden;
}
.home-intro-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.home-intro::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41,182,246,0.38), transparent);
  pointer-events: none;
}
.home-intro-inner { position: relative; z-index: 1; }
.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 400px);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hero-copy {
  text-align: left;
  max-width: 640px;
}
.home-intro-row-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 16px;
}
.home-intro-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.28);
}
.home-intro-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25);
  animation: homeIntroPulse 2s ease-in-out infinite;
}
@keyframes homeIntroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.06); }
}
.home-intro-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 560px;
}
.home-slogans--left {
  justify-content: flex-start;
  margin: 0 0 20px;
  max-width: none;
}
.hero-desc-panel {
  margin-bottom: 22px !important;
  max-width: 100% !important;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(41, 182, 246, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.06);
}
.hero-desc-panel p {
  font-size: 0.955rem !important;
  line-height: 1.62 !important;
  color: var(--gray-700) !important;
  margin-bottom: 12px;
}
.hero-desc-panel p:last-of-type { margin-bottom: 0; }
.hero-desc-foot {
  font-size: 0.82rem !important;
  color: var(--gray-500) !important;
  font-weight: 600;
  padding-top: 10px;
  margin-top: 6px !important;
  border-top: 1px dashed rgba(41, 182, 246, 0.25);
}
.hero-copy .hero-platforms {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.hero-copy .hero-platform-note {
  max-width: 100%;
}
.hero-copy .hero-links-row {
  justify-content: flex-start;
}
.hero-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(28px, 6vw, 48px);
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(41, 182, 246, 0.15);
}
.home-stat-footnote {
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.45;
}
.home-stat-footnote--copy {
  text-align: left;
  margin: 14px 0 0 !important;
  max-width: 520px;
}
/* Telefon mockup — hero */
.hero-visual.home-intro-phone {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-intro-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  padding: 24px 0 32px;
}
.hero-phone-ring {
  position: absolute;
  inset: 8% 4% auto 4%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 40%, rgba(41, 182, 246, 0.2), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(0, 229, 255, 0.12), transparent 50%);
  filter: blur(28px);
  z-index: 0;
}
.screenshot-phone--hero {
  position: relative;
  z-index: 2;
  flex: 0 0 auto !important;
  width: min(292px, 86vw);
  scroll-snap-align: unset !important;
}
.screenshot-phone--hero .screenshot-phone__bezel {
  transform: translateZ(0);
  animation: heroPhoneHover 7s ease-in-out infinite;
}
@keyframes heroPhoneHover {
  0%, 100% { transform: translateY(0) rotate(-0.35deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .screenshot-phone--hero .screenshot-phone__bezel { animation: none !important; }
  .home-intro-live-dot { animation: none !important; }
}
.hero-floating-tag {
  position: absolute;
  z-index: 3;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--secondary);
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(41, 182, 246, 0.25);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.hero-floating-tag--tl { top: 6%; left: -2%; transform: rotate(-3deg); }
.hero-floating-tag--br { bottom: 14%; right: -4%; transform: rotate(2deg); }
.hero-phone-cta-soft {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 4px;
  opacity: 0.9;
}
.hero-phone-cta-soft:hover { color: var(--primary); opacity: 1; }
.home-promo-line {
  width: 100%;
  margin: 0 0 20px;
  padding: 12px 18px;
  font-size: 0.865rem;
  font-weight: 600;
  line-height: 1.48;
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(41, 182, 246, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.05);
}
.home-slogans {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 6px auto 22px;
  max-width: 760px;
}
.home-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(41, 182, 246, 0.28);
  box-shadow: var(--shadow-sm);
}
/* Eski tek sütun .hero-content ile uyumluluk (başka sayfalar kullanmıyorsa zararsız) */
.home-intro .hero-content {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.home-intro .hero-title { margin-bottom: 14px; }
.home-intro .hero-desc:not(.hero-desc-panel) {
  margin-bottom: 26px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ===== SCREEN SHOWCASE (index — right after intro) ===== */
.screens-showcase {
  background: linear-gradient(168deg, #0b1522 0%, #102838 42%, #153447 100%);
  color: rgba(255,255,255,0.92);
  padding: 42px 0 56px;
  position: relative;
}
.screens-showcase__head { margin-bottom: 8px; }
.screens-showcase__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4fc3f7;
  margin-bottom: 10px;
}
.screens-showcase__title {
  font-size: clamp(1.75rem, 4.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #fff;
}
.screens-showcase__lead {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.screens-showcase__slider-wrap {
  position: relative;
  width: 100%;
  padding: 0 12px;
}
.screens-showcase .slider-wrapper { max-width: var(--max-width); margin: 0 auto; }
.screens-showcase .slider-arrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.screens-showcase .slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.screens-showcase__track {
  padding: 20px 4px 28px !important;
  gap: 20px !important;
  scroll-padding: 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.screenshot-phone {
  flex: 0 0 min(270px, 82vw);
  scroll-snap-align: center;
}
.screenshot-phone__bezel {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: 36px;
  padding: 11px 11px 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 22px 56px rgba(0,0,0,0.55);
  transition: var(--transition);
}
.screenshot-phone:hover .screenshot-phone__bezel {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(79,195,247,0.35),
    0 28px 64px rgba(0,0,0,0.5);
}
.screenshot-phone__bezel img {
  border-radius: 26px;
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  background: #1a2d42;
}
.screenshot-phone--hero .screenshot-phone__bezel img {
  object-fit: contain;
  background: #fff;
}
.screens-showcase__foot { padding-top: 12px; }
.screens-showcase__foot .screens-showcase-studio-btn {
  color: #b3e5fc;
  border-color: rgba(79,195,247,0.45);
  background: rgba(255,255,255,0.04);
}
.screens-showcase__foot .screens-showcase-studio-btn:hover {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}

/* ===== HERO (legacy — other pages) ===== */
.hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #e1f5fe 0%, #fff 40%, #e8f5e9 100%); position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(41,182,246,0.08) 0%, transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-light); color: var(--green); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; }
.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-title .highlight { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.home-intro .hero-title.home-intro-title {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.hero-desc { font-size: 1.2rem; color: var(--gray-500); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.hero-stat-item h3 { font-size: 2rem; font-weight: 800; color: var(--primary); }
.hero-stat-item p { font-size: 0.85rem; color: var(--gray-500); }
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-phone-mockup { width: 300px; height: 600px; border-radius: 40px; background: var(--secondary); padding: 12px; box-shadow: var(--shadow-xl); position: relative; }
.hero-phone-mockup .phone-screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #1a2d42; }
.hero-phone-mockup .phone-screen img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }
.floating-card { position: absolute; background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: float 3s ease-in-out infinite; }
.floating-card.card-1 { top: 80px; right: -30px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 120px; left: -20px; animation-delay: 1.5s; }
.floating-card .card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.floating-card .card-icon.blue { background: var(--primary-light); color: var(--primary); }
.floating-card .card-icon.green { background: var(--green-light); color: var(--green); }
.floating-card .card-info h4 { font-size: 0.85rem; font-weight: 700; }
.floating-card .card-info p { font-size: 0.75rem; color: var(--gray-500); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== FEATURES ===== */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); border: 1px solid transparent; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); background: var(--white); }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.feature-icon.blue { background: var(--primary-light); color: var(--primary); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.purple { background: #f3e5f5; color: #9c27b0; }
.feature-icon.orange { background: #fff3e0; color: #ff9800; }
.feature-icon.red { background: #ffebee; color: #f44336; }
.feature-icon.teal { background: #e0f2f1; color: #009688; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; }

/* ===== SCREENSHOTS ===== */
.screenshots { background: var(--gray-50); }
.slider-wrapper { position: relative; }
.screenshots-slider { display: flex; gap: 24px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth; }
.screenshots-slider::-webkit-scrollbar { display: none; }
.screenshot-item { flex: 0 0 260px; scroll-snap-align: center; }
.screenshot-item img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: var(--transition); }
.screenshot-item img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); cursor: pointer; font-size: 1.8rem; line-height: 1; display: flex; align-items: center; justify-content: center; color: var(--gray-700); z-index: 10; transition: var(--transition); }
.slider-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: var(--shadow-lg); }
.slider-arrow-left { left: -16px; }
.slider-arrow-right { right: -16px; }

/* ===== COMPARISON TABLE ===== */
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table th, .comparison-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid var(--gray-100); }
.comparison-table th { background: var(--gray-50); font-weight: 700; font-size: 0.9rem; color: var(--gray-700); }
.comparison-table th.popular-col { background: var(--primary-light); color: var(--primary-dark); }
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table td.check { color: var(--primary); font-size: 1.2rem; }
.comparison-table td.popular-col { background: rgba(225,245,254,0.3); }
.comparison-table td.dash { color: var(--gray-300); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--gray-50); }

/* ===== DOWNLOAD ===== */
.download { background: linear-gradient(135deg, var(--secondary) 0%, #1b2d44 100%); color: var(--white); }
.download .section-title { color: var(--white); }
.download .section-subtitle { color: rgba(255,255,255,0.6); }
.download-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 14px 28px; transition: var(--transition); }
.store-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.store-btn .store-icon { font-size: 2rem; }
.store-btn .store-text { text-align: left; }
.store-btn .store-text small { font-size: 0.7rem; opacity: 0.7; display: block; }
.store-btn .store-text strong { font-size: 1.05rem; }

/* ===== FAQ ===== */
.faq { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1.05rem; transition: var(--transition); width: 100%; background: none; border: none; font-family: inherit; color: inherit; text-align: left; line-height: 1.5; gap: 16px; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; font-size: 1.2rem; line-height: 1; }
.faq-item.active .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 24px 20px; color: var(--gray-500); line-height: 1.7; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray-500); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); margin-bottom: 32px; line-height: 1.7; }
.contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-item .contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item .contact-text h4 { font-weight: 600; margin-bottom: 2px; }
.contact-item .contact-text p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
.contact-form { background: var(--gray-50); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 1rem; font-family: inherit; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(41,182,246,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 36px; width: 36px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-col a { display: block; padding: 4px 0; font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* ===== PAGE HEADERS ===== */
.page-header { background: linear-gradient(135deg, var(--secondary), #1b2d44); color: var(--white); padding: 140px 0 80px; text-align: center; }
.page-header h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.page-header p { font-size: 1.15rem; opacity: 0.7; max-width: 600px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .home-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    text-align: center;
    max-width: none;
    order: 1;
  }
  .home-intro-phone { order: 2; margin-top: 8px; }
  .home-slogans--left { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-copy .hero-platforms { margin-left: auto; margin-right: auto; max-width: min(540px, 100%); }
  .hero-copy .hero-platform-note { margin-left: auto; margin-right: auto; text-align: center; max-width: 380px; }
  .hero-copy .hero-links-row { justify-content: center; }
  .hero-stats-bar { justify-content: center; border-top-color: transparent; padding-top: 12px; }
  .home-stat-footnote--copy { text-align: center; margin-left: auto !important; margin-right: auto !important; }
  .hero-desc-panel { margin-left: auto; margin-right: auto; max-width: 560px !important; text-align: left; }
  .hero-floating-tag--tl { left: 2%; top: 2%; }
  .hero-floating-tag--br { right: 0; bottom: 10%; }
  .home-intro .hero-title.home-intro-title { font-size: clamp(2.05rem, 7vw, 2.85rem); }
  .home-intro .hero-desc { font-size: 1.08rem; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; margin-bottom: 20px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-phone-mockup { width: 220px; height: 440px; }
  .floating-card { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slider-arrow-left { left: 4px; }
  .slider-arrow-right { right: 4px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; box-shadow: var(--shadow-md); gap: 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .home-intro { padding: 96px 0 28px; }
  .home-intro .hero-title.home-intro-title { font-size: clamp(1.9rem, 7.5vw, 2.3rem); }
  .home-promo-line { font-size: 0.8rem; padding: 10px 14px; }
  .home-chip { font-size: 0.78rem; padding: 7px 12px; }
  .screens-showcase { padding: 32px 0 44px; }
  .screens-showcase__track { -webkit-mask-image: none; mask-image: none; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }
  .hero-copy { order: 2; }
  .home-intro-phone { order: 1; margin-top: 0; padding-top: 8px; }
  .screenshot-phone--hero { width: min(260px, 82vw); }
  .hero-floating-tag { font-size: 0.7rem; padding: 8px 10px; }
}

/* ===== DESKTOP SCREENSHOTS ===== */
.desktop-screenshots-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.desktop-screenshots-grid img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transition: var(--transition); }
.desktop-screenshots-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }

/* ===== FLOATING CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.chat-bubble { background: var(--white); border-radius: var(--radius-lg); padding: 16px 20px; box-shadow: var(--shadow-lg); max-width: 300px; display: none; animation: chatSlideUp 0.3s ease; border: 1px solid var(--gray-100); }
.chat-bubble.show { display: block; }
.chat-bubble-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
.chat-bubble-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; }
.chat-bubble-header-text h4 { font-size: 0.9rem; font-weight: 700; }
.chat-bubble-header-text p { font-size: 0.75rem; color: var(--green); }
.chat-bubble-body p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 12px; }
.chat-bubble-input { display: flex; gap: 8px; }
.chat-bubble-input input { flex: 1; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 50px; font-size: 0.85rem; font-family: inherit; outline: none; }
.chat-bubble-input input:focus { border-color: var(--primary); }
.chat-bubble-input button { background: #25d366; color: white; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.chat-bubble-input button:hover { background: #1da851; transform: scale(1.05); }
.chat-messages { max-height: 250px; overflow-y: auto; padding: 8px 0; display: flex; flex-direction: column; gap: 8px; scrollbar-width: thin; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }
.chat-msg { padding: 10px 14px; border-radius: 16px; font-size: 0.88rem; line-height: 1.5; max-width: 85%; word-wrap: break-word; }
.chat-msg-admin { background: var(--gray-100); color: var(--gray-700); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg-user { background: var(--primary); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-close { position: absolute; top: 8px; right: 12px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--gray-500); line-height: 1; }
.chat-fab { width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: white; border: none; cursor: pointer; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.chat-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.chat-fab-badge { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; background: #f44336; border-radius: 50%; border: 2px solid white; }
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .chat-bubble { max-width: 260px; right: 0; } .chat-widget { bottom: 16px; right: 16px; } .slider-arrow { width: 36px; height: 36px; font-size: 1.4rem; } .slider-arrow-left { left: -4px; } .slider-arrow-right { right: -4px; } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
