/* =====================================================
   OtelBot - Custom CSS (Tailwind kullanılmıyor)
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --primary:        #1E40AF;
  --primary-dark:   #1E3A8A;
  --secondary:      #3B82F6;
  --secondary-light:#60A5FA;
  --accent:         #FFFFFF;
  --bg:             #F8FAFF;
  --bg-soft:        #EFF4FF;
  --text:           #1E293B;
  --text-muted:     #64748B;
  --border:         #E2E8F0;
  --success:        #10B981;
  --warning:        #F59E0B;
  --danger:         #EF4444;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow:    0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.14);

  --container-max: 1200px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary); }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem); }

/* ── Layout / Container ────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } .section-sm { padding: 40px 0; } }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  background: var(--bg-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.40);
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 10px 18px;
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow .2s, background .2s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand img { height: 42px; width: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--bg-soft);
}
.nav-link.active {
  color: var(--primary);
  background: var(--bg-soft);
}
.header-actions { display: flex; align-items: center; gap: 8px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.menu-toggle:hover { background: var(--border); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86%, 360px);
  background: #fff;
  padding: 16px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,.68,0,1);
  overflow-y: auto;
}
.mobile-drawer.open .drawer-inner { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.drawer-link:hover, .drawer-link.active {
  background: var(--bg-soft);
  color: var(--primary);
}
.drawer-cta { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }

@media (max-width: 980px) {
  .nav-list { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 40px; }
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  margin-top: 36px;
  display: flex; flex-wrap: wrap;
  gap: 24px;
  color: var(--text-muted);
  font-size: 14px;
}
.hero-trust .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.hero-trust .pill svg { color: var(--success); }

/* ── Chatbot Mockup (CSS) ───────────────────────────── */
.chat-mockup {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18), 0 8px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}
.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  ring: 2px solid rgba(255,255,255,0.3);
}
.chat-header-info { line-height: 1.2; }
.chat-header-info .name { font-weight: 800; font-size: 15px; }
.chat-header-info .status {
  font-size: 11.5px;
  opacity: .85;
  display: inline-flex; align-items: center; gap: 6px;
}
.chat-header-info .status::before {
  content: ''; width: 7px; height: 7px;
  background: #34D399;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.25);
  animation: pulseDot 1.6s ease-in-out infinite;
}
.chat-body {
  padding: 22px 18px;
  background: linear-gradient(180deg, #F8FAFF 0%, #fff 100%);
  min-height: 360px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn .5s forwards;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.chat-bubble.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble:nth-child(1) { animation-delay: .2s; }
.chat-bubble:nth-child(2) { animation-delay: .9s; }
.chat-bubble:nth-child(3) { animation-delay: 1.6s; }
.chat-bubble:nth-child(4) { animation-delay: 2.3s; }
.chat-bubble:nth-child(5) { animation-delay: 3.0s; }

.chat-typing {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  display: inline-flex; gap: 4px;
  opacity: 0;
  animation: bubbleIn .4s forwards 1.3s;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: #94A3B8;
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }

.chat-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 12px 14px;
  display: flex; gap: 10px; align-items: center;
}
.chat-footer .input {
  flex: 1;
  background: var(--bg-soft);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.chat-footer .send {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Floating chat orbs */
.chat-mockup .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.chat-mockup .orb-1 {
  top: -30px; right: -20px;
  width: 140px; height: 140px;
  background: rgba(59, 130, 246, 0.35);
  animation: float 5s ease-in-out infinite;
}
.chat-mockup .orb-2 {
  bottom: -40px; left: -30px;
  width: 160px; height: 160px;
  background: rgba(30, 64, 175, 0.30);
  animation: float 7s ease-in-out infinite reverse;
}

/* ── Cards ──────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .25s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(30, 64, 175, 0.15);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon.gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}
.card h3 { margin-bottom: 10px; font-size: 19px; }
.card p { color: var(--text-muted); font-size: 14.5px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* ── How it works ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.step { position: relative; text-align: center; padding: 0 12px; }
.step-num {
  position: relative; z-index: 1;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.30);
  border: 6px solid var(--bg);
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14.5px; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ── Counter section ────────────────────────────────── */
.stats {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats::before, .stats::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.stats::before {
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.10);
}
.stats::after {
  bottom: -120px; left: -100px;
  width: 360px; height: 360px;
  background: rgba(96, 165, 250, 0.25);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item .num {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-item .lbl {
  font-size: 14px;
  font-weight: 600;
  opacity: .88;
  text-transform: uppercase;
  letter-spacing: .12em;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats { padding: 40px 24px; }
}

/* ── Pricing ────────────────────────────────────────── */
.pricing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: 999px;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 14px;
  transition: all .2s;
}
.pricing-toggle button.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}
.pricing-toggle .save-badge {
  display: inline-block;
  background: var(--success);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  text-transform: uppercase;
}

.plan {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: all .25s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.18);
  transform: scale(1.03);
}
.plan.featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35);
}
.plan h3 { font-size: 20px; margin-bottom: 6px; }
.plan .plan-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.plan-price .currency { font-size: 22px; color: var(--text-muted); font-weight: 700; }
.plan-price .amount {
  font-size: clamp(2.2rem, 2vw + 1rem, 3rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan-price .period { color: var(--text-muted); font-size: 14px; margin-left: 4px; }
.plan-price .placeholder {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 600;
}
.plan ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.plan ul li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.plan ul li.muted { color: var(--text-muted); }
.plan ul li.muted svg { color: var(--text-muted); opacity: .5; }

@media (max-width: 980px) {
  .plan.featured { transform: none; }
}

/* ── Reference logos ────────────────────────────────── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }

.logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 100px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: -0.01em;
  transition: all .2s;
}
.logo-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ── Testimonials ───────────────────────────────────── */
.tmt-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 24px;
}
.tmt-track::-webkit-scrollbar { display: none; }
.tmt-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 980px) { .tmt-card { flex: 0 0 calc((100% - 20px) / 2); } }
@media (max-width: 640px) { .tmt-card { flex: 0 0 88%; } }

.tmt-stars { color: var(--warning); display: flex; gap: 2px; margin-bottom: 12px; }
.tmt-stars svg { fill: currentColor; }
.tmt-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}
.tmt-author {
  display: flex; align-items: center; gap: 12px;
}
.tmt-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.tmt-meta .name { font-weight: 700; font-size: 14.5px; }
.tmt-meta .role { font-size: 12.5px; color: var(--text-muted); }

/* ── CTA Section ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -50px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.cta-banner h3 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
}
.cta-banner .btn-primary:hover { background: #fff; color: var(--primary-dark); }
@media (max-width: 768px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
}

/* ── Forms ──────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: all .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.10);
}
.form-control::placeholder { color: var(--text-muted); opacity: .7; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.form-msg.success { background: rgba(16, 185, 129, 0.10); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.25); }
.form-msg.error   { background: rgba(239, 68, 68, 0.10);  color: var(--danger);  border: 1px solid rgba(239, 68, 68, 0.25); }

/* ── Team / About ───────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(30, 64, 175, 0.18); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 12px;
}
.team-card h4 { font-size: 17px; margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.team-card .bio { color: var(--text-muted); font-size: 13.5px; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-col h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #94A3B8; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { color: #94A3B8; font-size: 14px; max-width: 320px; }
.footer-social {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #94A3B8;
  transition: all .15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact .item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
}
.footer-contact .item svg { color: var(--secondary-light); flex-shrink: 0; margin-top: 3px; }
.footer-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px;
  color: #64748B;
  flex-wrap: wrap;
}

/* ── Animations ─────────────────────────────────────── */
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153, 0.65); }
  50%      { box-shadow: 0 0 0 6px rgba(52,211,153, 0); }
}
@keyframes typingDot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-4px); }
}
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible {
  animation: fadeUp .7s cubic-bezier(0.22, 0.68, 0, 1) forwards;
}

/* ── Hero gradient text fix on Safari ───────────────── */
@supports (-webkit-background-clip: text) {
  .hero h1 {
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* ── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
