/* ============================================
   ZEITWERK PRO — LANDING PAGE
   Birebir Figma tasarımına sadık
   ============================================ */

:root {
  /* Senin Figma renklerin (theme.css'den) */
  --zw-primary:       #4F46E5;
  --zw-primary-hover: #6366F1;
  --zw-subtle-bg:     #EEF2FF;
  --zw-success:       #10B981;
  --zw-accent:        #F97316;
  --zw-black:         #0F172A;
  --zw-gray-700:      #334155;
  --zw-gray-500:      #64748B;
  --zw-gray-200:      #E2E8F0;
  --zw-gray-50:       #F8FAFC;
  --zw-white:         #FFFFFF;

  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--zw-black);
  background: var(--zw-white);
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--zw-white);
  border-bottom: 1px solid var(--zw-gray-200);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--zw-black);
  text-transform: lowercase;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--zw-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.primary-nav {
  display: flex;
  gap: 32px;
}
.primary-nav a {
  color: var(--zw-gray-700);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.primary-nav a:hover { color: var(--zw-black); }
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--zw-black);
  transition: width 0.2s;
}
.primary-nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--zw-black);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid var(--zw-gray-200);
  background: white;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--zw-gray-700);
}
.mobile-menu hr {
  border: none;
  border-top: 1px solid var(--zw-gray-200);
  margin: 8px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.15s;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { height: 52px; padding: 0 24px; font-size: 15px; }
.btn-xl { height: 56px; padding: 0 32px; font-size: 18px; font-weight: 700; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--zw-primary);
  color: white;
}
.btn-primary:hover {
  background: var(--zw-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-outline {
  background: white;
  color: var(--zw-primary);
  border: 2px solid var(--zw-primary);
}
.btn-outline:hover { background: var(--zw-subtle-bg); }

.btn-ghost {
  background: transparent;
  color: var(--zw-black);
  border: 1px solid var(--zw-gray-200);
}
.btn-ghost:hover { color: var(--zw-primary); border-color: var(--zw-primary); }

.btn-white {
  background: white;
  color: var(--zw-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--zw-gray-50);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-link {
  color: var(--zw-gray-700);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s;
}
.btn-link:hover { color: var(--zw-black); }
.btn-link-lg { font-size: 16px; display: inline-flex; align-items: center; gap: 8px; color: var(--zw-primary); }
.btn-link-lg:hover { color: var(--zw-primary-hover); }

.arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(2px); }

.play-icon { font-size: 12px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--zw-gray-50), white);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 14px;
  color: var(--zw-gray-500);
  margin-bottom: 24px;
}

.hero-title {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 64px);
}
.hero-title-line { display: block; color: var(--zw-black); }
.hero-title-line.accent { color: var(--zw-primary); }

.hero-subtitle {
  font-size: 18px;
  color: var(--zw-gray-700);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-line {
  font-size: 12px;
  color: var(--zw-gray-500);
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
}

.mockup-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--zw-primary), transparent 70%);
  opacity: 0.2;
  filter: blur(60px);
  z-index: 0;
}

.browser-frame {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--zw-gray-200);
  overflow: hidden;
}

.browser-header {
  background: var(--zw-gray-50);
  border-bottom: 1px solid var(--zw-gray-200);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.browser-url {
  flex: 1;
  background: white;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--zw-gray-500);
  margin-left: 8px;
}

.browser-body { padding: 24px; }

.mockup-greeting {
  font-size: 20px;
  font-weight: 600;
  color: var(--zw-black);
  margin-bottom: 4px;
}
.mockup-date {
  font-size: 14px;
  color: var(--zw-gray-500);
  margin-bottom: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.stat-card {
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--zw-gray-200);
}
.stat-primary {
  background: var(--zw-subtle-bg);
  border-color: rgba(79, 70, 229, 0.2);
}
.stat-muted { background: var(--zw-gray-50); }

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--zw-gray-500);
  margin-bottom: 4px;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--zw-black);
}
.stat-value-primary { color: var(--zw-primary); }

.activity-list { display: flex; flex-direction: column; gap: 8px; }

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--zw-gray-50);
  border-radius: var(--radius);
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
}
.avatar-primary { background: var(--zw-primary); }
.avatar-success { background: var(--zw-success); }
.avatar-accent { background: var(--zw-accent); }

.activity-text { flex: 1; }
.activity-name { font-size: 14px; font-weight: 500; color: var(--zw-black); }
.activity-status { font-size: 12px; color: var(--zw-gray-500); }
.activity-time { font-size: 12px; color: var(--zw-gray-500); }

/* Floating cards */
.floating-card {
  position: absolute;
  z-index: 2;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border: 1px solid var(--zw-gray-200);
}
.floating-notification {
  top: -16px;
  right: -32px;
  padding: 14px 16px;
  width: 220px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transform: rotate(-3deg);
}
.float-icon { font-size: 20px; }
.float-title { font-size: 14px; font-weight: 600; color: var(--zw-black); }
.float-time { font-size: 12px; color: var(--zw-gray-500); margin-top: 2px; }

.floating-bubble {
  bottom: -24px;
  left: -32px;
  padding: 12px 24px;
  border-radius: 999px;
  transform: rotate(2deg);
}
.bubble-text {
  color: var(--zw-success);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* ============================================
   LOGOS
   ============================================ */
.logos-section {
  background: white;
  padding: 64px 0;
  border-top: 1px solid var(--zw-gray-200);
}

.logos-headline {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--zw-gray-500);
  margin-bottom: 40px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}

.logo-item {
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.logo-item:hover { opacity: 1; }

.logo-strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.logo-light {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--zw-gray-500);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--zw-black);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--zw-gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem-section {
  background: white;
  padding: 80px 0;
}
.problem-section .section-title { margin-bottom: 48px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.problem-card {
  background: white;
  border: 1px solid var(--zw-gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.problem-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.problem-emoji { font-size: 48px; margin-bottom: 16px; }
.problem-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--zw-black);
  margin-bottom: 12px;
}
.problem-text {
  font-size: 16px;
  color: var(--zw-gray-700);
  line-height: 1.6;
}

.transition-arrow {
  text-align: center;
  margin-top: 48px;
}
.transition-text {
  font-size: 32px;
  font-weight: 600;
  color: var(--zw-black);
  margin-bottom: 16px;
}
.arrow-down {
  display: inline-block;
  font-size: 32px;
  color: var(--zw-primary);
  font-weight: 700;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.howto-section {
  background: var(--zw-gray-50);
  padding: 80px 0;
}
.howto-section .section-title { margin-bottom: 16px; }
.howto-section .section-subtitle { margin-bottom: 64px; }

.howto-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.howto-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-arrow {
  font-size: 36px;
  color: var(--zw-primary);
  font-weight: 700;
}

/* Phone Mockup */
.phone-mockup {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--zw-gray-200);
  padding: 24px;
  margin-bottom: 24px;
  max-width: 280px;
  width: 100%;
}

.phone-screen {
  background: var(--zw-black);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.phone-screen > div:first-child { background: white; border-radius: 18px; padding: 24px; min-height: 380px; display: flex; flex-direction: column; }

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.phone-time { font-size: 12px; font-weight: 600; color: var(--zw-black); }
.phone-signal { display: flex; gap: 3px; }
.phone-signal span { width: 16px; height: 12px; background: var(--zw-gray-200); border-radius: 2px; }
.phone-signal span.green { background: var(--zw-success); }

.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone-greeting {
  font-size: 14px;
  color: var(--zw-gray-500);
  text-align: center;
  margin-bottom: 4px;
}
.phone-name {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}
.phone-stempel-btn {
  background: var(--zw-primary);
  color: white;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px rgba(79,70,229,0.3);
  line-height: 1.2;
}
.phone-time-stamp {
  text-align: center;
  font-size: 12px;
  color: var(--zw-gray-500);
}

/* Overview Mockup */
.overview-mockup {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--zw-gray-200);
  padding: 24px;
  margin-bottom: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--zw-subtle-bg);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: var(--radius);
}
.overview-item .avatar { width: 40px; height: 40px; font-size: 14px; }
.status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--zw-success);
  border: 2px solid white;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.overview-name { font-size: 14px; font-weight: 600; color: var(--zw-black); }
.overview-status { font-size: 12px; color: var(--zw-gray-500); }

/* Report Mockup */
.report-mockup {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--zw-gray-200);
  padding: 20px;
  margin-bottom: 24px;
  width: 100%;
}
.report-mockup > div { background: var(--zw-gray-50); border-radius: var(--radius); padding: 16px; border: 1px solid var(--zw-gray-200); }
.report-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--zw-gray-200);
  margin-bottom: 12px;
}
.report-icon {
  width: 32px;
  height: 32px;
  background: var(--zw-primary);
  border-radius: 4px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-title { font-size: 12px; font-weight: 600; color: var(--zw-black); }
.report-company { font-size: 10px; color: var(--zw-gray-500); }

.report-rows { display: flex; flex-direction: column; gap: 8px; }
.report-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--zw-gray-700);
}
.report-row strong { font-weight: 700; }
.report-total {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--zw-gray-200);
  color: var(--zw-black);
  font-size: 12px;
  font-weight: 700;
}

.report-export {
  width: 100%;
  margin-top: 16px;
  background: var(--zw-primary);
  color: white;
  border-radius: var(--radius);
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
}

.step-info { text-align: center; }
.step-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zw-primary);
  color: white;
  font-size: 18px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--zw-black);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.step-text { font-size: 14px; color: var(--zw-gray-700); }

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: var(--zw-gray-50);
  padding: 80px 0;
}
.features-section .section-title { margin-bottom: 64px; max-width: 800px; margin-left: auto; margin-right: auto; }

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

.feature-card {
  background: white;
  border: 1px solid var(--zw-gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  transition: transform 0.3s;
  display: inline-block;
}
.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--zw-black);
  margin-bottom: 12px;
}
.feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--zw-gray-700);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  background: white;
  padding: 80px 0;
}
.pricing-section .section-title { margin-bottom: 16px; }
.pricing-section .section-subtitle { margin-bottom: 48px; }

.pricing-toggle {
  display: inline-flex;
  background: var(--zw-gray-50);
  border-radius: var(--radius);
  padding: 6px;
  margin: 0 auto 48px;
  border: 1px solid var(--zw-gray-200);
}
.pricing-toggle-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.toggle-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--zw-gray-500);
  transition: all 0.15s;
}
.toggle-btn.active {
  background: white;
  color: var(--zw-black);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.pricing-section > .container { text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card {
  background: white;
  border: 1px solid var(--zw-gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card-featured {
  border: 2px solid var(--zw-primary);
  box-shadow: 0 12px 24px rgba(79,70,229,0.12);
  transform: scale(1.03);
}
.pricing-card-enterprise { border: 1px solid var(--zw-black); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--zw-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--zw-gray-500);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--zw-black);
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-unit {
  font-size: 16px;
  color: var(--zw-gray-500);
}
.pricing-alt {
  font-size: 14px;
  color: var(--zw-gray-500);
  margin-top: 4px;
}
.pricing-limit {
  font-size: 16px;
  font-weight: 500;
  color: var(--zw-gray-700);
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--zw-gray-200);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 16px;
  color: var(--zw-gray-700);
  padding: 6px 0;
}
.pricing-features li::first-letter { color: var(--zw-success); font-weight: 700; }

.pricing-trust {
  text-align: center;
  font-size: 14px;
  color: var(--zw-gray-500);
  margin-bottom: 24px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--zw-gray-700);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--zw-gray-50);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--zw-gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.08); }

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--zw-gray-700);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-stars {
  color: var(--zw-success);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--zw-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { font-size: 16px; font-weight: 600; color: var(--zw-black); }
.testimonial-title { font-size: 14px; color: var(--zw-gray-500); }
.testimonial-company { font-size: 14px; color: var(--zw-gray-500); }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: white;
  padding: 80px 0;
}
.faq-section .section-title { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--zw-gray-200);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--zw-black);
  cursor: pointer;
  list-style: none;
  transition: opacity 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { opacity: 0.7; }
.faq-icon {
  font-size: 24px;
  color: var(--zw-primary);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-item p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--zw-gray-700);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-contact {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--zw-gray-500);
}
.faq-contact a { color: var(--zw-primary); }
.faq-contact a:hover { text-decoration: underline; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--zw-primary), var(--zw-primary-hover));
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 20px;
  color: #E0E7FF;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-phone {
  margin-top: 24px;
  font-size: 14px;
  color: #E0E7FF;
}
.cta-phone a { text-decoration: none; }
.cta-phone a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--zw-black);
  color: #CBD5E1;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.logo-white { color: white; }
.logo-white .logo-mark { background: var(--zw-primary); }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #CBD5E1;
  margin: 16px 0 16px;
}
.footer-location {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid #334155;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}
.footer-socials a:hover {
  color: white;
  border-color: white;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: white;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--zw-primary); }

.footer-divider {
  border: none;
  border-top: 1px solid #334155;
  margin: 0 0 32px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #64748B;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: 48px 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-mockup { display: none; }

  .section-title { font-size: 32px; }
  .cta-title { font-size: 32px; }
  .pricing-price { font-size: 40px; }

  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .problem-grid,
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .howto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .pricing-card-featured { transform: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .floating-card { display: none; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn,
  .hero-buttons .btn-link { width: 100%; justify-content: center; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}
