/* ============================================================
   TUROPERA — DESIGN SYSTEM & COMPONENTS
   ============================================================ */

/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

/* 2. CSS DESIGN TOKENS */
:root {
  --navy:        #0B2545;
  --navy-dark:   #071A33;
  --navy-light:  #1A3A61;
  --blue:        #0066FF;
  --blue-dark:   #0052CC;
  --blue-light:  #4D94FF;
  --white:       #FFFFFF;
  --light:       #F4F7FA;
  --light-2:     #EEF2F7;
  --text:        #334155;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --success:     #10B981;
  --warning:     #F59E0B;
  --danger:      #EF4444;
  --purple:      #8B5CF6;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.08);
  --shadow-blue: 0 4px 16px rgba(0,102,255,0.32);

  --transition: 250ms ease;
  --transition-fast: 150ms ease;
  --transition-slow: 400ms ease;

  --header-h: 80px;
  --container-w: 1200px;
}

/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* 4. TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
p { line-height: 1.75; }

/* 5. LAYOUT */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section      { padding: 6rem 0; }
.section-sm   { padding: 4rem 0; }
.section-dark { background: var(--navy); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-light { background: var(--light); }

/* 6. SECTION HEADER */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.15);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-tag-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #93C5FD;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); margin-bottom: 1rem; }
.section-header p  { font-size: 1.125rem; color: var(--muted); max-width: 58ch; margin: 0 auto; }
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,0.65); }

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(0,102,255,0.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--light);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: #E8F0FF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* Demo play button */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
}
.btn-demo:hover {
  color: var(--blue);
  border-color: rgba(0,102,255,0.3);
  background: rgba(0,102,255,0.04);
}
.btn-demo-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.btn-demo:hover .btn-demo-play { background: var(--blue); }
.btn-demo-play svg { color: white; margin-left: 2px; }

/* 8. HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  display: flex;           /* flex on header itself for reliable centering */
  align-items: center;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(11,37,69,0.08);
}
.header > .container { width: 100%; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;      /* removes phantom baseline gap below the image */
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}
/* Footer logo slightly smaller */
.footer-logo .logo-img { height: 28px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: rgba(0,102,255,0.06);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  transition: color var(--transition-fast);
}
.header-login:hover { color: var(--navy); }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius-md);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.375rem;
  box-shadow: var(--shadow-xl);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1rem; padding: 0.75rem 1rem; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 0.75rem 0; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-nav-actions .btn { justify-content: center; }

/* Desktop nav dropdown (mega menu) */
.nav-item { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.nav-caret { flex-shrink: 0; transition: transform var(--transition-fast); }
.nav-item.open .nav-caret,
.nav-dropdown-toggle:focus-visible .nav-caret { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1001;
}
.nav-item.open .nav-dropdown-panel,
.nav-item:hover .nav-dropdown-panel,
.nav-item:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-md);
  white-space: nowrap;
}
.nav-dropdown-link:hover { background: rgba(0,102,255,0.06); color: var(--blue); }

/* Mobile nav accordion groups */
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.mobile-nav-toggle:hover { background: rgba(0,102,255,0.06); color: var(--blue); }
.mobile-nav-group.open .mobile-nav-toggle .nav-caret { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.125rem;
}
.mobile-nav-group.open .mobile-nav-submenu { display: flex; }
.mobile-nav-submenu .nav-link { font-size: 0.9rem; color: var(--muted); }

/* 9. HERO */
.hero {
  padding-top: calc(var(--header-h) + 4.5rem);
  padding-bottom: 6rem;
  background: linear-gradient(155deg, #EEF4FF 0%, #F8FAFF 40%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.18);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero h1, .hero h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 .highlight, .hero h2 .highlight { color: var(--blue); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-proof-item .check-icon {
  color: var(--success);
  flex-shrink: 0;
}

/* Dashboard mockup wrapper */
.hero-visual { position: relative; }
.hero-visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.dashboard-img-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(11,37,69,0.22), 0 0 0 1px rgba(11,37,69,0.06);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) scale(0.98);
  transition: transform var(--transition-slow);
}
.dashboard-img-wrapper:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1);
}
.dashboard-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-2xl);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* Each slide reuses .hero layout */
.hero-slide {
  display: none;
  animation: slideIn 0.6s ease forwards;
}
.hero-slide.active {
  display: block;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-slide.slide-prev {
  animation: slideInLeft 0.6s ease forwards;
}

/* Slider controls bar */
.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 0 2rem;
  position: relative;
  z-index: 2;
}

/* Dots */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--blue);
  width: 28px;
}
.slider-dot:hover:not(.active) {
  background: var(--muted);
}

/* Prev / Next arrows */
.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.slider-arrow:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  overflow: hidden;
}
.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  width: 0%;
  transition: width linear;
}

/* Slide counter badge */
.slider-counter {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-heading);
  white-space: nowrap;
}
.slider-counter span { color: var(--navy); }

/* 10. SOCIAL PROOF BAND */
.proof-band {
  padding: 2.5rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-band-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.proof-stat-value span { color: var(--blue); }
.proof-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
.proof-divider { width: 1px; height: 44px; background: var(--border); }

/* 11. FEATURE CARDS */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(0,102,255,0.2);
  box-shadow: 0 12px 40px rgba(0,102,255,0.1);
  transform: translateY(-5px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(0,102,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.feature-card p  { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition-fast);
}
.feature-link:hover { gap: 0.625rem; }

/* Homepage "İşinizi Kolaylaştıran Özellikler" bento grid (1 featured + 4 regular) */
.feature-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card-featured::before { background: linear-gradient(90deg, var(--blue-light) 0%, #93C5FD 100%); }
.feature-card-featured::after {
  content: '';
  position: absolute;
  top: -25%; right: -8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,102,255,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.feature-card-featured:hover { border-color: transparent; box-shadow: 0 16px 50px rgba(0,102,255,0.25); }
.feature-card-featured .feature-icon { background: rgba(255,255,255,0.12); color: var(--blue-light); position: relative; z-index: 1; }
.feature-card-featured:hover .feature-icon { background: var(--blue); color: var(--white); }
.feature-card-featured h3 { color: var(--white); font-size: 1.4rem; position: relative; z-index: 1; }
.feature-card-featured p  { color: rgba(255,255,255,0.75); position: relative; z-index: 1; }
.feature-card-featured .btn { position: relative; z-index: 1; }
.feature-badge { position: relative; z-index: 1; margin-bottom: 1rem; }

.features-cta { text-align: center; margin-top: 3.5rem; }
.features-cta .hero-cta   { justify-content: center; margin-bottom: 1.25rem; }
.features-cta .hero-proof { justify-content: center; }

@media (max-width: 1024px) {
  .feature-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .feature-grid-5 { grid-template-columns: 1fr; gap: 1.25rem; }
  .feature-card-featured { grid-column: span 1; }
}

/* 12. STEPS SECTION */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.666% + 28px);
  right: calc(16.666% + 28px);
  border-top: 2px dashed rgba(0,102,255,0.35);
}
.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }
.steps-grid-4::before { left: calc(12.5% + 28px); right: calc(12.5% + 28px); }
.step-item { text-align: center; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 10px rgba(0,102,255,0.12);
  position: relative;
  z-index: 1;
}
.step-icon {
  color: var(--blue);
  margin: 0 auto 1rem;
}
.step-item h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.625rem; }
.step-item p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.section-dark .step-icon { color: rgba(255,255,255,0.35); }
.section-dark .step-item h3 { color: var(--white); }
.section-dark .step-item p  { color: rgba(255,255,255,0.6); }

/* 13. WHY TUROPERA */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}
.why-inner h2 { color: var(--white); font-size: clamp(1.75rem,3vw,2.25rem); }
.why-subtitle { color: rgba(255,255,255,0.6); margin-top: 1rem; font-size: 1rem; line-height: 1.7; }
.why-items { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,102,255,0.3);
  transform: translateX(5px);
}
.why-item-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(0,102,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93C5FD;
  flex-shrink: 0;
}
.why-item h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.375rem; }
.why-item p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* 14. PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 12px 50px rgba(0,102,255,0.18);
  transform: translateY(-10px);
}
.pricing-card.featured:hover { transform: translateY(-14px); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-toggle-wrap { text-align: center; margin-bottom: 0.75rem; }
.pricing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  background: #F1F5F9;
  padding: 0.3rem;
  border-radius: var(--radius-full);
}
.pricing-toggle-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.pricing-toggle-btn:hover { color: var(--navy); }
.pricing-toggle-btn.active { background: var(--blue); color: var(--white); }
.pricing-toggle-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,0.12);
  border-radius: var(--radius-full);
  padding: 0.1rem 0.4rem;
  margin-left: 0.4rem;
}
.pricing-toggle-btn.active .pricing-toggle-badge { background: rgba(255,255,255,0.25); color: var(--white); }
.pricing-toggle-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; min-height: 1.2em; }
.pricing-plan  { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.375rem; }
.pricing-desc  { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; min-height: 2.4em; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.pricing-currency { font-size: 1.375rem; font-weight: 700; color: var(--navy); }
.pricing-amount   { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period   { font-size: 0.825rem; color: var(--muted); }
.pricing-placeholder {
  font-size: 0.7rem;
  color: var(--warning);
  background: rgba(245,158,11,0.08);
  border-left: 3px solid var(--warning);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.3rem 0.6rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.pricing-billing-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pricing-savings {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,0.12);
  border-radius: var(--radius-full);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.75rem;
}
.pricing-savings:empty { display: none; }
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text);
}
.pricing-feature-check { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { width: 100%; padding: 0.875rem; }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* 15. FAQ */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(0,102,255,0.25); }
.faq-item.open  { border-color: rgba(0,102,255,0.35); box-shadow: 0 4px 16px rgba(0,102,255,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: var(--font-body);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; animation: slideDown 0.25s ease; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 16. CTA BAND */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-band h2 { font-size: clamp(1.5rem,3vw,2.25rem); color: var(--white); margin-bottom: 0.625rem; }
.cta-band p  { font-size: 1.05rem; color: rgba(255,255,255,0.7); }
.cta-band-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* 17. FOOTER */
.footer { background: var(--navy-dark); padding: 4rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer .logo-tur  { color: var(--white); }
.footer .logo-opera { color: var(--blue-light); }
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.625rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}
.footer-social-link:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.footer-social-link.is-disabled {
  pointer-events: none;
  opacity: 0.35;
  cursor: default;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer-link:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.825rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.825rem; color: rgba(255,255,255,0.35); transition: color var(--transition-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* 18. PAGE HERO (inner pages) */
.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(155deg, #EEF4FF 0%, var(--light) 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.875rem,4vw,2.875rem); margin-bottom: 1rem; }
.page-hero .subtitle { font-size: 1.125rem; color: var(--muted); max-width: 60ch; margin: 0 auto; line-height: 1.75; }

/* 19. FEATURE DETAIL SECTIONS (ozellikler) */
.feature-section { padding: 5rem 0; }
.feature-section:nth-child(even) { background: var(--light); }
.feature-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-section:nth-child(even) .feature-section-inner { direction: rtl; }
.feature-section:nth-child(even) .feature-content,
.feature-section:nth-child(even) .feature-visual { direction: ltr; }
.feature-visual {
  background: linear-gradient(135deg, var(--light) 0%, var(--light-2) 100%);
  border-radius: var(--radius-2xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.feature-visual-icon {
  color: rgba(0,102,255,0.15);
}
.feature-content .section-tag { margin-bottom: 0.875rem; }
.feature-content h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 1rem; }
.feature-content p  { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-list-item svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* 20. PRICING TABLE (comparison) */
.comparison-section { padding: 4rem 0 6rem; background: var(--white); }
.comparison-table-wrapper { overflow-x: auto; margin-top: 3rem; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
}
.comparison-table th.featured-th { background: var(--blue); }
.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.comparison-table td.featured-td { background: rgba(0,102,255,0.04); }
.comparison-table tr:hover td { background: var(--light); }
.comparison-table tr:hover td.featured-td { background: rgba(0,102,255,0.08); }
.ct-check { color: var(--success); }
.ct-cross { color: var(--border); }
.ct-label { font-weight: 600; color: var(--navy); }

/* 21. BLOG */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.blog-card-img {
  height: 210px;
  overflow: hidden;
  background: var(--light-2);
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; flex: 1; }
.blog-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* 22. CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(100,116,139,0.5); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-card { padding: 0.5rem; }
.contact-info-card h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-info-card > p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(0,102,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.95rem; color: var(--navy); font-weight: 600; }

/* 23. SCROLL ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* 24. UTILITIES */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.sr-only     { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.badge-blue  { display: inline-block; background: rgba(0,102,255,0.1); color: var(--blue); font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); }

/* 25. GRID HELPERS */
.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; }

/* 26. BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* 27. LEGAL / POLICY CONTENT */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.legal-content h2 {
  font-size: 1.375rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--text);
  line-height: 1.8;
}
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--navy); }

/* 28. UETDS SHOWCASE BANNER */
#uetds-showcase { padding-top: 0; }
.uetds-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, var(--light) 0%, var(--light-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.uetds-showcase-demo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.uetds-demo-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.125rem;
  width: 170px;
}
.uetds-demo-panel-title { font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.uetds-demo-list { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.uetds-demo-list li { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 0.72rem; color: var(--muted); }
.uetds-demo-list li svg { color: var(--success); flex-shrink: 0; }
.uetds-demo-arrow { color: var(--blue); flex-shrink: 0; }
.uetds-demo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.125rem;
  width: 165px;
  text-align: center;
  flex-shrink: 0;
}
.uetds-demo-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0,102,255,0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.uetds-demo-card-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 0.75rem; }
.uetds-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(16,185,129,0.1);
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
}
.uetds-showcase-content { flex: 1 1 220px; min-width: 220px; }
.uetds-showcase-content h2 { font-size: 1.35rem; color: var(--navy); margin-bottom: 0.75rem; }
.uetds-showcase-content p { color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.uetds-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}
.uetds-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.125rem;
}
.uetds-benefit-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.uetds-benefit-icon-blue   { background: rgba(0,102,255,0.1);   color: var(--blue); }
.uetds-benefit-icon-green  { background: rgba(16,185,129,0.1);  color: var(--success); }
.uetds-benefit-icon-orange { background: rgba(245,158,11,0.1);  color: var(--warning); }
.uetds-benefit-icon-purple { background: rgba(139,92,246,0.1);  color: var(--purple); }
.uetds-benefit-card h3 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.uetds-benefit-card p  { font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin-bottom: 0; }

/* Dedicated breakpoint: the 3-column row only has room on wide desktop screens */
@media (max-width: 1300px) {
  .uetds-showcase { flex-direction: column; text-align: center; padding: 2rem; }
  .uetds-showcase-demo { justify-content: center; flex-wrap: wrap; }
  .uetds-showcase-content { flex: none; width: 100%; max-width: 480px; }
  .uetds-benefits { margin: 0 auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dashboard-img-wrapper { transform: none; max-width: 600px; margin: 0 auto; }
  .dashboard-img-wrapper:hover { transform: none; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .feature-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-section:nth-child(even) .feature-section-inner { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 1rem; }
  .section, .feature-section { padding: 4rem 0; }

  .nav, .header-login { display: none; }
  .header-actions .btn { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 4rem; }
  .hero h1, .hero h2 { font-size: 1.6rem; }
  .hero h1 br.hero-br-2, .hero h2 br.hero-br-2 { display: none; }
  .hero-cta { flex-direction: row; flex-wrap: nowrap; align-items: stretch; gap: 0.6rem; }
  .hero-cta > * { flex: 1 1 0; min-width: 0; justify-content: center; white-space: normal; text-align: center; }
  .hero-cta .btn-lg { padding: 0.85rem 0.75rem; font-size: 0.92rem; }
  .hero-cta .btn-demo { padding: 0.5rem 0.75rem 0.5rem 0.5rem; font-size: 0.85rem; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Görseli başlığın hemen altına taşı, gövde metninin üstüne */
  .hero-inner { gap: 0; }
  .hero-content { display: contents; }
  .hero-visual { order: 1; margin-bottom: 2rem; }
  .hero-subtitle, .hero-cta, .hero-proof { order: 2; }

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

  .uetds-showcase { padding: 1.75rem; gap: 1.75rem; }
  .uetds-showcase-demo { flex-direction: column; }
  .uetds-demo-arrow { transform: rotate(90deg); }
  .uetds-demo-panel, .uetds-demo-card { width: 100%; max-width: 260px; }
  .uetds-benefits { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  .proof-stats { gap: 2rem; }
  .proof-divider { display: none; }
  .proof-band-inner { gap: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .comparison-table-wrapper { overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero h1, .hero h2 { font-size: 1.6rem; }
  .dashboard-img-wrapper { max-width: 320px; }
  .pricing-amount { font-size: 2.25rem; }
  .proof-stats { flex-direction: column; gap: 1.5rem; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP WIDGET (sol alt köşe)
   ============================================================ */
.wa-widget {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 20px 30px -8px rgba(37,211,102,0.45); }
.wa-bubble {
  width: 300px;
  max-width: calc(100vw - 3rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.25rem 1rem;
  position: relative;
  animation: waPop 0.25s ease;
}
.wa-bubble[hidden] { display: none; }
@keyframes waPop {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-bubble-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.wa-bubble-close:hover { background: var(--light-2); color: var(--navy); }
.wa-bubble-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; padding-right: 1.25rem; }
.wa-bubble-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-bubble-title { display: flex; flex-direction: column; line-height: 1.3; }
.wa-bubble-title strong { color: var(--navy); font-size: 0.95rem; }
.wa-bubble-title span { color: var(--muted); font-size: 0.75rem; }
.wa-bubble-text { font-size: 0.875rem; color: var(--text); line-height: 1.5; margin-bottom: 1rem; }
.wa-bubble-text strong { color: var(--navy); }
.wa-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  background: #25D366;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition-fast);
}
.wa-bubble-cta:hover { background: #1DA851; }

@media (max-width: 480px) {
  .wa-widget { left: 1rem; bottom: 1rem; }
  .wa-fab { width: 54px; height: 54px; }
  .wa-bubble { width: calc(100vw - 2rem); }
}
