/* Base & Reset */
:root {
  --primary: #4F46E5; /* Indigo */
  --primary-hover: #4338CA;
  --primary-light: #EEF2FF;
  --secondary: #1F2937;
  --dark: #111827;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --gray: #6B7280;
  --text: #374151;
  --border: #E5E7EB;
  --success: #10B981;
  --warning: #F59E0B;
  
  --font-main: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-white { color: var(--white) !important; }
.bg-light { background-color: #F3F4F6; }
.bg-primary { background-color: var(--primary); }
.bg-dark { background-color: var(--dark); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 3rem; }
.block { display: block; text-align: center; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--light);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.15);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-login:hover {
  color: var(--primary) !important;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Split Hero Layout (left text + right visual) */
.hero-split {
  padding: 160px 0 120px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.hero-split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 2.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats-inline {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 560px;
}

.hero-stats-inline .stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Mesh gradient background */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
}

.mesh-blob-1 {
  top: -12%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.55) 0%, rgba(79, 70, 229, 0) 70%);
  animation: mesh-drift-1 18s ease-in-out infinite;
}

.mesh-blob-2 {
  top: -5%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0) 70%);
  animation: mesh-drift-2 22s ease-in-out infinite;
}

.mesh-blob-3 {
  bottom: -20%;
  left: 30%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(99, 102, 241, 0) 70%);
  animation: mesh-drift-3 26s ease-in-out infinite;
}

.mesh-blob-4 {
  bottom: 10%;
  right: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(168, 85, 247, 0) 70%);
  animation: mesh-drift-4 20s ease-in-out infinite;
}

@keyframes mesh-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes mesh-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 50px) scale(1.08); }
}

@keyframes mesh-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.05); }
}

@keyframes mesh-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.12); }
  66% { transform: translate(30px, 30px) scale(0.9); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  pointer-events: none;
}

/* ===== Hero Visual (right side) ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

/* Dashed orbit rings */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(79, 70, 229, 0.22);
  animation: orbit-rotate 40s linear infinite;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-lg { width: 560px; height: 560px; }
.orbit-md { width: 420px; height: 420px; animation-duration: 60s; animation-direction: reverse; border-color: rgba(139, 92, 246, 0.25); }
.orbit-sm { width: 280px; height: 280px; animation-duration: 50s; border-color: rgba(124, 58, 237, 0.28); }

@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center Misago orb */
.center-orb {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: orb-float 8s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.orb-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, rgba(139, 92, 246, 0.1) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: orb-pulse 3.5s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.12); }
}
.orb-core {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4F46E5, #8B5CF6);
  border-radius: 50%;
  box-shadow:
    0 25px 50px -10px rgba(79, 70, 229, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 -20px 40px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-core::before {
  content: '';
  position: absolute;
  top: 15%; left: 20%;
  width: 40%; height: 30%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.4), transparent 70%);
  filter: blur(6px);
  border-radius: 50%;
}
.orb-logo {
  width: 70%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
  transition: transform 0.6s ease;
}
.center-orb:hover .orb-logo {
  transform: scale(1.05);
}
.orb-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: orb-ring-spin 6s linear infinite;
}
@keyframes orb-ring-spin {
  to { transform: rotate(360deg); }
}

/* 4 Product floating cards */
.product-float {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 20px 50px -15px rgba(15, 23, 42, 0.22),
    0 2px 6px rgba(15, 23, 42, 0.05);
  z-index: 3;
  min-width: 200px;
  transition: transform 0.3s ease;
}
.product-float:hover {
  transform: translateY(-4px) scale(1.03);
}
.pf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.35);
}
.pf-body { display: flex; flex-direction: column; gap: 2px; }
.pf-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.pf-sub {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}
.pf-badge {
  font-size: 0.62rem;
  background: #7c3aed;
  color: #fff;
  padding: 2px 7px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Positions: four corners around the orb */
.product-float-1 { top: 6%;    left: -8%;   animation: pf-float-1 6s ease-in-out infinite; }
.product-float-2 { top: 8%;    right: -10%; animation: pf-float-2 7s ease-in-out infinite; }
.product-float-3 { bottom: 10%; left: -4%;  animation: pf-float-3 8s ease-in-out infinite; }
.product-float-4 { bottom: 6%;  right: -6%; animation: pf-float-4 6.5s ease-in-out infinite; }
.product-float-5 { top: 50%;   right: -14%; transform: translateY(-50%); animation: pf-float-5 7.5s ease-in-out infinite; }

@keyframes pf-float-1 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pf-float-2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}
@keyframes pf-float-3 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pf-float-4 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(14px); }
}
@keyframes pf-float-5 {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 12px)); }
}

/* Thin connecting lines from orb → each card (pure CSS) */
.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 40%; height: 1px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.35), transparent);
  transform-origin: left center;
  z-index: 1;
  pointer-events: none;
}
.hero-visual::before { transform: translate(0, 0) rotate(-35deg) translateX(20px); }
.hero-visual::after  { transform: translate(0, 0) rotate(35deg) translateX(20px); }

@media (max-width: 968px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-text { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats-inline { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-visual { min-height: 520px; }
}

@media (max-width: 768px) {
  .hero-split { padding: 130px 0 60px; min-height: auto; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-lead { font-size: 1.05rem; }
  .hero-stats-inline { gap: 1.5rem; padding-top: 1.5rem; }
  .stat-num { font-size: 1.75rem; }
  .mesh-blob { filter: blur(70px); opacity: 0.45; }
  .hero-visual { min-height: 480px; }
  .center-orb { width: 120px; height: 120px; }
  .orb-core { width: 100px; height: 100px; }
  .orb-logo { width: 58%; }
  .orbit-lg { width: 420px; height: 420px; }
  .orbit-md { width: 320px; height: 320px; }
  .orbit-sm { width: 220px; height: 220px; }
  .product-float { min-width: 160px; padding: 10px 12px; }
  .pf-icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .pf-label { font-size: 0.78rem; }
  .pf-sub { font-size: 0.66rem; }
  .product-float-1 { top: 2%;    left: 0; }
  .product-float-2 { top: 4%;    right: 0; }
  .product-float-3 { bottom: 6%; left: 0; }
  .product-float-4 { bottom: 2%; right: 0; }
  .product-float-5 { top: 50%; right: 0; }
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card p {
  color: var(--gray);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.5rem;
}

.bento-item {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.bento-item:hover { transform: scale(1.02); }

.item-large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-wide {
  grid-column: span 2;
}

.bento-content h3 { margin-bottom: 0.5rem; }
.bento-content p { color: var(--gray); font-size: 0.95rem; }
.bento-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 10rem;
  opacity: 0.1;
}

.bento-icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
}

.bento-item.bg-primary {
  background: var(--primary);
}

.bento-item.bg-primary h3,
.bento-item.bg-primary p,
.bento-item.bg-primary .feature-list li {
  color: var(--white);
}

.text-white p { color: rgba(255,255,255,0.8); }

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}
.feature-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.feature-list i { 
  color: #A78BFA; 
  margin-top: 3px;
}

.grad-bg {
  background: linear-gradient(135deg, var(--dark), #374151);
}

/* Split Layout */
.split-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-content p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.split-visual {
  flex: 1;
  min-height: 400px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.link-arrow {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow:hover { text-decoration: underline; }

/* AI Visual Chat Bubbles */
.chat-bubble {
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 80%;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.chat-bubble.left {
  background: #f3f4f6;
  color: var(--dark);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.chat-bubble.right {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 25px rgba(79, 70, 229, 0.15);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.plan-price span {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 500;
}

.plan-desc {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  min-height: 50px;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.plan-features i { color: var(--success); }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-cta { justify-content: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .split-layout.reverse { flex-direction: column; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .item-large, .item-wide { grid-column: span 1; grid-row: span 1;}
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }

  /* Hero dashboard responsive */
  .hero-dashboard { width: 100%; max-width: 340px; }
  .hero-visual { min-height: 360px; }
  .dash-card { padding: 18px; }
  .dash-header { flex-direction: column; gap: 4px; }
  .dash-row { flex-direction: column; gap: 10px; }
  .dash-chart-wrap { display: none; }
  .mini-stat { font-size: 0.72rem; padding: 6px 10px; }
  .floating-card { font-size: 0.72rem; padding: 7px 12px; }
  .c1 { top: 2%; left: -10px; }
  .c2 { bottom: 2%; left: -5px; }
  .c3 { top: 25%; right: -20px; }
}

/* =========================================
   WOW EFFECTS (Blobs, Glow Cursor, Toasts)
   ========================================= */

/* Custom Glow Cursor */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}

/* Animated Background Blobs */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -2;
  opacity: 0.6;
  animation: blob-bounce 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: rgba(139, 92, 246, 0.4); }
.blob-2 { bottom: -20%; right: -10%; width: 600px; height: 600px; background: rgba(59, 130, 246, 0.4); animation-delay: 2s; }

@keyframes blob-bounce {
  0% { transform: scale(1) translate(0px, 0px); }
  50% { transform: scale(1.2) translate(50px, -50px); }
  100% { transform: scale(0.9) translate(-20px, 20px); }
}

/* =========================================
   INNER PAGES — Shared Classes (hakkimizda, sss, iletisim, etc.)
   ========================================= */

/* Page hero — slimmer than landing hero */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--light) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-hero p.lead {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 90px 0 0;
  font-size: 0.9rem;
  color: var(--gray);
}
.breadcrumb .container { display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.7rem; opacity: 0.5; }

/* Content section (for inner pages) */
.content-section {
  padding: 80px 0;
}
.content-section h2 {
  margin-bottom: 1rem;
}
.content-section .section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-category {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}
.faq-category:first-child { margin-top: 0; }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: 0 8px 20px rgba(79, 70, 229, 0.1); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-top: 2rem;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  background: var(--light);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table thead th.col-misago {
  background: var(--primary);
  color: white;
}
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
}
.comparison-table td.cell-check { color: var(--success); font-size: 1.3rem; }
.comparison-table td.cell-x { color: #ef4444; font-size: 1.3rem; }
.comparison-table td.cell-partial { color: var(--warning); font-size: 1.3rem; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--primary-light); }

/* Logo grid (integrations, references) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.logo-slot {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.logo-slot:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.logo-slot img { max-width: 80%; max-height: 60%; object-fit: contain; }

/* Timeline (about page) */
.timeline {
  position: relative;
  padding: 2rem 0;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-light);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-date {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.timeline-desc { color: var(--gray); font-size: 0.95rem; }

/* Legal prose (kvkk, gizlilik, sartlar) */
.legal-prose {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}
.legal-prose h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.legal-prose h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.legal-prose p { margin-bottom: 1rem; }
.legal-prose ul, .legal-prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-prose li { margin-bottom: 0.5rem; }
.legal-prose .legal-note {
  background: #fef3c7;
  border-left: 4px solid var(--warning);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.92rem;
  margin: 1.5rem 0;
  color: #78350f;
}

/* Contact page 2-col */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.contact-info-block h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 0.95rem;
}
.contact-info-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 22px;
}
.contact-info-item strong { display: block; color: var(--dark); margin-bottom: 2px; font-weight: 600; }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gray);
}
.form-checkbox input { width: auto; margin-top: 4px; }

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.blog-card-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 12px;
}
.blog-card-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card-excerpt { color: var(--gray); font-size: 0.95rem; flex: 1; margin-bottom: 1rem; }
.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.blog-post-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.blog-post-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.6rem; }
.blog-post-content p { margin-bottom: 1.2rem; }
.blog-post-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--dark);
}

/* Testimonial / case study */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-metric {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.testimonial-metric-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.testimonial-quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author-info strong { display: block; color: var(--dark); }
.testimonial-author-info span { font-size: 0.85rem; color: var(--gray); }

/* Stat bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  border-radius: 24px;
  margin: 3rem 0;
  color: white;
  text-align: center;
}
.stat-bar .stat-item .num {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-bar .stat-item .lbl { font-size: 0.9rem; opacity: 0.9; }

/* Tabs (for integrations page) */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Value cards (about page) */
.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-5px); }
.value-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* Team cards (placeholders) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card .team-role { color: var(--primary); font-size: 0.9rem; font-weight: 600; }
.team-card .team-bio { color: var(--gray); font-size: 0.85rem; margin-top: 0.5rem; }

/* Channel/persona cards (MH page) */
.channel-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: 0 20px 30px rgba(0,0,0,0.08); }
.channel-card .icon-box { margin-bottom: 1rem; }
.channel-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.channel-card p { color: var(--gray); font-size: 0.95rem; }

.persona-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.persona-card:hover { transform: translateY(-5px); }
.persona-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(79,70,229,0.25);
}
.persona-card h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.persona-card p { color: var(--gray); font-size: 0.92rem; }

.rule-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.rule-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.rule-item i {
  color: var(--success);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.rule-item strong { display: block; color: var(--dark); margin-bottom: 2px; font-weight: 700; }
.rule-item span { color: var(--gray); font-size: 0.9rem; }

/* Test box (gradient sample questions) */
.test-box {
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  border-radius: 30px;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.test-box h2 { color: white; margin-bottom: 1rem; }
.test-box > p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2.5rem; }
.test-questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.test-q {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.test-q .emoji { font-size: 1.6rem; flex-shrink: 0; }

/* Full-width CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: white;
  border-radius: 30px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; }

/* Logo band (used on homepage + referanslar) */
.logo-band {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-band-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.logo-band-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.7;
}
.logo-band-slot {
  width: 140px;
  height: 50px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Homepage about teaser */
.about-teaser {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-teaser .container { text-align: center; }
.about-teaser h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-teaser p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* Footer expanded (multi-column) */
.footer {
  padding: 80px 0 30px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.footer-col ul { list-style: none; line-height: 2.1; }
.footer-col ul a { color: var(--gray); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--primary); }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 280px; margin-top: 1rem; }
.footer-social { margin-top: 1rem; display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-bottom-simple {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .contact-layout { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-cols .footer-brand { grid-column: span 3; }
  .page-hero h1 { font-size: 2.3rem; }
}
@media (max-width: 768px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-cols .footer-brand { grid-column: span 2; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }
}

/* (Old phone notification CSS removed) */

/* =========================================
   NEW COMPONENTS — Site Restructure 2026
   ========================================= */

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.open { display: block; opacity: 1; }
body.no-scroll { overflow: hidden; }

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  .nav-actions { display: none !important; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 24px 24px;
    gap: 0;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: auto;
    border-radius: 0;
    border-left: 2px solid var(--primary-light);
  }
  .dropdown-wrapper:hover .dropdown-menu { transform: none; }
  .dropdown-menu a { padding: 10px 0; font-size: 0.9rem; }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #8B5CF6);
  width: 0%;
  z-index: 10001;
  transition: width 0.05s linear;
}

/* Product Page Hero Variants */
.product-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.product-hero--app { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%); }
.product-hero--channel { background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FBCFE8 100%); }
.product-hero--service { background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 50%, #A7F3D0 100%); }

.product-hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.product-hero .hero-text { flex: 1; }
.product-hero .hero-visual { flex: 1; display: flex; justify-content: center; }
.product-hero .hero-text p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Product Stats Bar */
.product-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}
.product-stat {
  display: flex;
  flex-direction: column;
}
.product-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}
.product-stat .lbl {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* Feature Tabs (Product pages) */
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.feature-tab-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s;
}
.feature-tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.feature-tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.feature-tab-panel { display: none; }
.feature-tab-panel.active { display: block; animation: fadeIn 0.4s ease; }

.feature-tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-tab-content .feature-list { margin-top: 0; }
.feature-tab-visual {
  background: var(--light);
  border-radius: 24px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature-tab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Deployment Options Cards */
.deploy-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.deploy-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.deploy-card:hover, .deploy-card.active {
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(79,70,229,0.12);
  transform: translateY(-5px);
}
.deploy-card .deploy-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.deploy-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.deploy-card p { color: var(--gray); font-size: 0.9rem; }
.deploy-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Before/After Comparison */
.compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.compare-before, .compare-after {
  padding: 2.5rem;
  border-radius: 24px;
}
.compare-before {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.compare-after {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}
.compare-before h3 { color: #DC2626; margin-bottom: 1.5rem; }
.compare-after h3 { color: #059669; margin-bottom: 1.5rem; }
.compare-list { list-style: none; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text);
}
.compare-before .compare-list i { color: #DC2626; }
.compare-after .compare-list i { color: #059669; }

/* How It Works Steps */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}
.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--gray); font-size: 0.9rem; }
.step-connector {
  position: absolute;
  top: 50%;
  left: 33.3%;
  right: 33.3%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  display: none;
}

/* Multi-step Demo Form */
.demo-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.step-form-container {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 900px) {
  .step-form-container { position: static; top: auto; }
}
.step-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 80px;
}
.step-dot i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: all 0.3s;
}
.step-dot span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.3s;
  white-space: nowrap;
}
.step-dot.active i {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(79,70,229,0.35);
}
.step-dot.active span { color: var(--primary); }
.step-dot.completed i {
  background: var(--success);
  border-color: var(--success);
  color: white;
}
.step-dot.completed span { color: var(--success); }
.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
  margin-top: 23px; /* center with 48px dot */
  flex-shrink: 0;
}
.step-line.active { background: var(--primary); }

.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.step-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.step-panel .step-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .form-row.full { grid-column: span 2; }
.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}
.btn-step {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-step-prev {
  background: var(--light);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-step-prev:hover { background: var(--border); }
.btn-step-next {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.btn-step-next:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* Demo Form Inputs */
.step-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-form .form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.step-form input[type="text"],
.step-form input[type="email"],
.step-form input[type="tel"],
.step-form select,
.step-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.step-form input:focus,
.step-form select:focus,
.step-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.step-form input::placeholder,
.step-form textarea::placeholder {
  color: #94a3b8;
}
.step-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.825L.575 3.4l1.05-1.05L6 6.725 10.375 2.35l1.05 1.05z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Demo Hero (compact variant) */
.demo-hero {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #f0f9ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-hero .blob { display: none; }

/* Product checkbox cards */
.product-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.product-check:hover {
  border-color: #c7d2fe;
  background: #fafaff;
}
.product-check:has(input:checked) {
  border-color: var(--primary);
  background: #eef2ff;
}

/* Demo Sidebar */
.demo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}
.demo-trust-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}
.demo-trust-card .trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.demo-trust-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.demo-trust-card p { color: var(--gray); font-size: 0.85rem; }

/* Success Screen (after form submit) */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show { display: block; animation: fadeIn 0.5s; }
.form-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #D1FAE5;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.form-success h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray); font-size: 1rem; }

/* Inline Demo Form (bottom of product pages) */
.inline-demo {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 3rem 0;
  color: white;
}
.inline-demo h2 { color: white; margin-bottom: 0.5rem; }
.inline-demo p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.inline-demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
.inline-demo-form input {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}
.inline-demo-form input::placeholder { color: rgba(255,255,255,0.6); }
.inline-demo-form input:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.2);
}
.inline-demo-form .btn { white-space: nowrap; }

/* Phone Frame Component */
.phone-frame {
  position: relative;
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), inset 0 0 0 8px var(--dark);
  background: var(--dark);
}
.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 28px;
}
.phone-frame-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

/* White-label Showcase */
.whitelabel-showcase {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem 0;
}
.whitelabel-showcase .phone-frame:nth-child(2) {
  transform: scale(1.1);
  z-index: 2;
}

/* Animated Counter */
[data-count] {
  font-variant-numeric: tabular-nums;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active { background: var(--primary); transform: scale(1.2); }

/* Typing Indicator */
.typing-indicator {
  display: inline-flex;
  gap: 4px;
  padding: 15px 20px;
  background: var(--primary);
  border-radius: 20px;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}
.typing-indicator span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

/* Logo Marquee Animation */
.logo-marquee {
  overflow: hidden;
  position: relative;
}
.logo-marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.logo-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* OTA Channel Logo Grid (Kanal Yonetimi) */
.ota-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.ota-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all 0.3s;
}
.ota-card:hover {
  border-color: #db2777;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(219,39,119,0.1);
}
.ota-card i {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #db2777;
}

/* Product page responsive */
@media (max-width: 992px) {
  .product-hero .container { flex-direction: column; text-align: center; }
  .product-hero .hero-text p { margin-left: auto; margin-right: auto; }
  .product-stats { justify-content: center; }
  .feature-tab-content { grid-template-columns: 1fr; }
  .deploy-options { grid-template-columns: 1fr 1fr; }
  .steps-flow { grid-template-columns: 1fr; }
  .compare-split { grid-template-columns: 1fr; }
  .demo-page-layout { grid-template-columns: 1fr; }
  .demo-sidebar { flex-direction: row; flex-wrap: wrap; position: static; }
  .demo-sidebar > * { flex: 1; min-width: 220px; }
  .inline-demo-form { grid-template-columns: 1fr 1fr; }
  .whitelabel-showcase { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .product-hero { padding: 130px 0 60px; }
  .deploy-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-row.full { grid-column: span 1; }
  .inline-demo { padding: 3rem 1.5rem; }
  .inline-demo-form { grid-template-columns: 1fr; }
  .phone-frame { width: 220px; }
  .whitelabel-showcase .phone-frame:nth-child(2) { transform: none; }
}
