﻿/* ============================================================
   TezUsta - Professional Academic Consultancy
   Color System:
     --navy:   #1B2A4A  (primary dark)
     --gold:   #E8A020  (accent/CTA)
     --blue:   #2563EB  (secondary)
     --dark:   #0D1625  (deepest bg)
     --light:  #F8F9FB  (page bg)
     --text:   #1A1A2E
     --muted:  #6B7280
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B2A4A;
  --navy-light: #243659;
  --gold: #E8A020;
  --gold-dark: #C8880F;
  --blue: #2563EB;
  --dark: #0D1625;
  --light: #F8F9FB;
  --white: #ffffff;
  --text: #1A1A2E;
  --muted: #6B7280;
  --border: #E5E7EB;
  --success: #10B981;
  --shadow: 0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 12px 48px rgba(27,42,74,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
.highlight { color: var(--gold); }
.highlight-light { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary-hero {
  background: var(--gold); color: var(--dark);
  padding: 18px 36px; font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(232,160,32,0.40);
  flex-direction: column; gap: 2px; border-radius: 14px;
  align-items: center;
}
.btn-primary-hero .btn-sub { font-size: 0.72rem; font-weight: 400; opacity: 0.85; }
.btn-primary-hero:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,160,32,0.5); }
.btn-outline-hero {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 2px solid rgba(255,255,255,0.35); backdrop-filter: blur(8px);
  padding: 18px 32px; font-size: 1rem; border-radius: 14px;
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.btn-ghost-hero {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  padding: 18px 28px; font-size: 0.98rem; border-radius: 14px;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }
.btn-call {
  background: var(--gold); color: var(--dark); font-weight: 700;
  padding: 12px 24px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
}
.btn-call:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-primary-lg {
  background: var(--gold); color: var(--dark); font-weight: 700;
  font-size: 1.05rem; padding: 18px 40px;
  box-shadow: 0 6px 24px rgba(232,160,32,0.35);
}
.btn-primary-lg:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-pricing {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: 10px; font-weight: 600;
  background: var(--light); color: var(--navy); border: 2px solid var(--border);
  transition: var(--transition);
}
.btn-pricing:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn-pricing-popular {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: 10px; font-weight: 700;
  background: var(--gold); color: var(--dark);
  box-shadow: 0 6px 20px rgba(232,160,32,0.40);
  transition: var(--transition);
}
.btn-pricing-popular:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-form-submit {
  width: 100%; padding: 16px; border-radius: 10px; font-size: 1rem; font-weight: 700;
  background: var(--gold); color: var(--dark);
  box-shadow: 0 6px 20px rgba(232,160,32,0.35);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition); cursor: pointer;
}
.btn-form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ---- PULSE ANIMATION ---- */
.pulse-icon { animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.6; }
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.float-btn {
  position: fixed; right: 24px; display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; z-index: 900; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.20);
}
.float-phone { bottom: 112px; background: var(--navy); color: white; }
.float-phone:hover { background: var(--blue); transform: translateX(-4px); }
.float-whatsapp { bottom: 48px; background: #25D366; color: white; }
.float-whatsapp:hover { background: #1ebe5a; transform: translateX(-4px); }
.float-btn i { font-size: 1.1rem; }

/* ============================================================
   CHAT WIDGET
============================================================ */

/* ============================================================
   TOP BAR
============================================================ */
.top-bar { background: var(--dark); color: rgba(255,255,255,0.85); font-size: 0.78rem; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i, .top-bar-right i { color: var(--gold); }
.top-bar-right a { display: flex; align-items: center; gap: 6px; color: white; font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.top-bar-right a:hover { color: var(--gold); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 800;
  background: rgba(255,255,255,0.99);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(27,42,74,0.12); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding-top: 14px; padding-bottom: 14px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon img { width: 40px; height: 40px; display: block; }
.logo-text { font-size: 1.35rem; color: var(--navy); font-weight: 400; }
.logo-text strong { font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--text); transition: var(--transition);
}
.nav-links a:hover { background: var(--light); color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, #1a3a6e 100%);
  position: relative; overflow: hidden; padding: 80px 0 60px;
  min-height: 88vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 60%); }

.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { color: white; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.35);
  color: var(--gold); padding: 8px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(8px);
}
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 520px; }

.hero-stats-mini { display: flex; gap: 32px; margin-bottom: 36px; }
.hero-stats-mini div { display: flex; flex-direction: column; }
.hero-stats-mini strong { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.hero-stats-mini span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-lead-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: -2px 0 22px;
}
.hero-lead-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
}
.hero-lead-item strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.hero-lead-item span {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}
.hero-trust { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.hero-trust i { color: var(--gold); }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 24px; }
.main-card { width: 100%; }
.agent-status-bar { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.green-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; display: inline-block; box-shadow: 0 0 8px var(--success); }
.agent-cards-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.agent-mini {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 14px 8px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: var(--transition); cursor: default;
}
.agent-mini:hover { background: rgba(232,160,32,0.15); border-color: rgba(232,160,32,0.4); }
.agent-mini i { font-size: 1.2rem; color: var(--gold); }
.agent-mini span { font-size: 0.7rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.live-activity { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); border-radius: 10px; padding: 10px 14px; }
.activity-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.activity-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; flex-shrink: 0; animation: pulse 1.5s infinite; }

.side-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 14px;
}
.left-card { bottom: -20px; left: -20px; }
.right-card { top: -20px; right: -20px; }
.side-card i { font-size: 1.4rem; color: var(--gold); }
.side-card strong { display: block; color: white; font-size: 0.9rem; font-weight: 700; }
.side-card span { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section { background: var(--light); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.stat-icon { font-size: 2rem; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--navy); font-weight: 600; }

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2, .section-header.light p { color: white; }
.section-header.light p { color: rgba(255,255,255,0.72); }
.section-tag {
  display: inline-block; background: rgba(232,160,32,0.12); color: var(--gold);
  border: 1px solid rgba(232,160,32,0.30); padding: 5px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin: 14px auto 0; }

/* ============================================================
   SERVICES
============================================================ */
.services { padding: 96px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.service-card {
  padding: 32px; border-radius: var(--radius); border: 1px solid var(--border);
  background: white; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--border); transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { background: linear-gradient(90deg, var(--navy), var(--gold)); }
.service-card.featured { border-color: var(--navy); background: linear-gradient(160deg, var(--dark) 0%, var(--navy) 100%); color: white; }
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), #f0c040); }
.service-card.featured p, .service-card.featured li { color: rgba(255,255,255,0.78); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,42,74,0.08); margin-bottom: 16px;
}
.service-card.featured .service-icon { background: rgba(232,160,32,0.15); }
.service-icon i { font-size: 1.4rem; color: var(--navy); }
.service-card.featured .service-icon i { color: var(--gold); }
.service-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; color: var(--muted); }
.service-card ul { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.service-card li { font-size: 0.83rem; display: flex; align-items: center; gap: 8px; color: var(--muted); }
.service-card li i { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }
.service-card.featured li i { color: var(--gold); }
.service-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--gold); color: var(--dark);
  border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: var(--transition);
}
.service-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.services-cta-bar {
  background: linear-gradient(135deg, var(--dark), var(--navy));
  border-radius: var(--radius); padding: 32px; display: flex;
  align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.services-cta-bar p { color: rgba(255,255,255,0.8); font-size: 1.05rem; font-weight: 500; }

/* ============================================================
   AGENTS
============================================================ */
.agents { padding: 96px 0; background: linear-gradient(160deg, var(--dark) 0%, var(--navy) 100%); }

/* ---- AKADEMIK DANISMAN SECTION ---- */
.akademik-danisman-wrap { display:grid; grid-template-columns:1fr 1.1fr; gap:56px; align-items:center; margin-top:16px; }
.ad-features { display:flex; flex-direction:column; gap:20px; }
.ad-feature-item { display:flex; align-items:flex-start; gap:16px; }
.ad-fi-icon { width:44px; height:44px; background:rgba(232,160,32,0.15); border:1px solid rgba(232,160,32,0.25); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:1rem; flex-shrink:0; }
.ad-feature-item strong { display:block; color:#fff; font-size:.92rem; font-weight:600; margin-bottom:3px; }
.ad-feature-item span { color:rgba(255,255,255,.55); font-size:.82rem; line-height:1.5; }
.ad-cta-btn { margin-top:8px; padding:14px 28px; font-size:.95rem; display:inline-flex; align-items:center; gap:9px; border-radius:12px; }
@media (max-width:900px) { .akademik-danisman-wrap { grid-template-columns:1fr; gap:32px; } }

/* ---- AGENT HERO ---- */
.agent-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.agent-hero-left h2 { color: white; margin-bottom: 16px; }
.agent-hero-left p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.agent-hero-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.ahf-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.ahf-item i { width: 32px; height: 32px; background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.25); color: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; }
.agent-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ---- CHATBOT PREVIEW ---- */
@media (max-width: 900px) { .agent-hero { grid-template-columns: 1fr; } }

/* ---- MAIN AGENT SHOWCASE ---- */
.main-agent-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-top: 48px; }
.main-agent-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(232,160,32,0.3); border-radius: var(--radius);
  padding: 36px 32px; position: relative; overflow: hidden;
}
.main-agent-glow {
  position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,160,32,0.15), transparent 70%);
  pointer-events: none;
}
.main-agent-top { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.main-agent-avatar { width: 90px; height: 90px; border-radius: 50%; border: 3px solid var(--gold); background: var(--navy-light); overflow: hidden; flex-shrink: 0; position: relative; }
.main-agent-avatar img { width: 100%; height: 100%; }
.main-agent-pulse {
  position: absolute; bottom: 4px; right: 4px; width: 16px; height: 16px;
  background: #10B981; border-radius: 50%; border: 2px solid var(--dark);
  animation: pulse 1.8s infinite;
}
.main-agent-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.35); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.main-agent-info h3 { color: white; font-size: 1.25rem; margin-bottom: 4px; }
.main-agent-status { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.main-agent-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.main-agent-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.main-agent-skills span { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); padding: 5px 13px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.main-agent-skills span i { color: var(--gold); font-size: 0.7rem; }
.main-agent-cta { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ---- SUB AGENTS PANEL ---- */
.sub-agents-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; }
.sub-agents-title { display: flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.sub-agents-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.sub-agent-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); transition: var(--transition); }
.sub-agent-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(232,160,32,0.2); }
.sub-agent-icon { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.sub-agent-icon img { width: 100%; height: 100%; }
.sub-agent-info { flex: 1; }
.sub-agent-info strong { display: block; color: white; font-size: 0.9rem; margin-bottom: 2px; }
.sub-agent-info span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.online-sm { width: 10px; height: 10px; background: #10B981; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px rgba(16,185,129,0.6); }
.sub-agents-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.sub-agents-note i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

@media (max-width: 768px) { .main-agent-showcase { grid-template-columns: 1fr; } .main-agent-top { flex-direction: column; align-items: center; text-align: center; } }

.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.agent-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: var(--transition);
}
.agent-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,160,32,0.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.agent-avatar { width: 80px; height: 80px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold); background: var(--navy-light); }
.agent-avatar img { width: 100%; height: 100%; }
.agent-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.agent-status.online { background: rgba(16,185,129,0.15); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.agent-status.online::before { content: ''; width: 6px; height: 6px; background: #10B981; border-radius: 50%; display: inline-block; }
.agent-card h3 { color: white; margin-bottom: 4px; font-size: 1.05rem; }
.agent-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.agent-desc { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.6; }
.agent-skills { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 20px; }
.agent-skills span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; border: 1px solid rgba(255,255,255,0.12); }
.agent-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 20px; background: var(--gold); color: var(--dark);
  border-radius: 8px; font-size: 0.83rem; font-weight: 700; width: 100%; transition: var(--transition);
}
.agent-call-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { padding: 96px 0; background: var(--light); }
.steps-grid { display: flex; align-items: center; gap: 0; margin-bottom: 48px; }
.step { flex: 1; text-align: center; padding: 32px 24px; }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(27,42,74,0.08); line-height: 1; margin-bottom: 12px; }
.step-icon { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon i { font-size: 1.4rem; color: var(--gold); }
.step h3 { margin-bottom: 10px; color: var(--navy); }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.step-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: 0.85rem; margin-top: 14px; transition: var(--transition); }
.step-cta:hover { gap: 10px; color: var(--navy); }
.step-arrow { color: var(--border); font-size: 1.4rem; flex-shrink: 0; }
.how-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { padding: 96px 0; background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 100%); overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  min-width: 380px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 32px; flex-shrink: 0;
}
.privacy-note { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; }
.t-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(232,160,32,0.15); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1.1rem; }
.t-author strong { display: block; color: white; font-size: 0.9rem; }
.t-author span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testimonials-nav button { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.testimonials-nav button:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.t-dots { display: flex; gap: 6px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: var(--transition); cursor: pointer; }
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   PRICING
============================================================ */
.pricing { padding: 96px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; position: relative; transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--gold); background: linear-gradient(160deg, var(--dark), var(--navy)); color: white; }
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark); padding: 4px 16px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
}
.pricing-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px; }
.pricing-icon { width: 52px; height: 52px; background: var(--light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pricing-card.popular .pricing-icon { background: rgba(232,160,32,0.15); }
.pricing-icon i { font-size: 1.3rem; color: var(--navy); }
.pricing-card.popular .pricing-icon i { color: var(--gold); }
.pricing-card h3 { margin-bottom: 16px; }
.pricing-card.popular h3 { color: white; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.pricing-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.pricing-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-price .period { font-size: 0.78rem; color: var(--muted); }
.pricing-card.popular .currency,
.pricing-card.popular .amount { color: var(--gold); }
.pricing-card.popular .period { color: rgba(255,255,255,0.55); }
.pricing-price span:first-child { font-size: 2rem; font-weight: 800; color: var(--navy); }
.pricing-card.popular .pricing-price span:first-child { color: var(--gold); }
.pricing-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--muted); }
.pricing-card.popular li { color: rgba(255,255,255,0.78); }
.pricing-card li i { color: var(--success); font-size: 0.8rem; flex-shrink: 0; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.85rem; padding: 16px 20px; background: var(--light); border-radius: 10px; }
.pricing-note a { color: var(--navy); font-weight: 600; }
.pricing-note a:hover { color: var(--blue); }
.pricing-grid-single { grid-template-columns: minmax(0, 820px); justify-content: center; }
.pricing-card-single { text-align: center; }
.pricing-card-single .pricing-icon { margin-left: auto; margin-right: auto; }
.pricing-card-single ul { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
.pricing-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pricing-actions .btn { width: auto; min-width: 220px; }

/* ============================================================
   LEGAL PAGES
============================================================ */
.legal-page { min-height: 100vh; background: var(--light); padding: 64px 0; }
.legal-container {
  max-width: 860px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-md);
}
.legal-back { display: inline-flex; margin-bottom: 20px; color: var(--navy); font-weight: 600; }
.legal-back:hover { color: var(--gold-dark); }
.legal-container h1 { margin-bottom: 16px; }
.legal-container h2 { margin-top: 28px; margin-bottom: 10px; font-size: 1.15rem; }
.legal-container p { color: var(--muted); margin-bottom: 12px; }

/* ============================================================
   WHY US
============================================================ */
.why-us { padding: 96px 0; background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.why-visual { display: flex; flex-direction: column; gap: 24px; }
.why-big-stat {
  background: linear-gradient(135deg, var(--dark), var(--navy)); border-radius: var(--radius);
  padding: 40px; text-align: center;
}
.why-num { font-size: 4rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.why-stars { color: var(--gold); font-size: 1.2rem; margin: 12px 0; }
.why-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.why-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-badge {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.why-badge i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.why-content .section-tag { margin-bottom: 14px; }
.why-content h2 { margin-bottom: 32px; }
.why-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; background: rgba(27,42,74,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon i { font-size: 1.2rem; color: var(--navy); }
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: 0.87rem; color: var(--muted); }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 96px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 20px; font-size: 0.92rem; font-weight: 600;
  color: var(--text); background: white; display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-q:hover { background: var(--light); color: var(--navy); }
.faq-q i { font-size: 0.85rem; color: var(--muted); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q { background: var(--light); color: var(--navy); }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--navy); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s ease; font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 4px 20px 18px; }
.faq-cta { text-align: center; }
.faq-cta p { color: var(--muted); margin-bottom: 16px; }

/* ============================================================
   CONTACT
============================================================ */
.contact { padding: 96px 0; background: linear-gradient(160deg, var(--navy), var(--dark)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 20px 24px; transition: var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(232,160,32,0.4); transform: translateX(4px); }
.contact-card.primary { border-color: rgba(232,160,32,0.40); }
.contact-card.whatsapp .cc-icon { background: rgba(37,211,102,0.15); }
.contact-card.whatsapp .cc-icon i { color: #25D366; }
.contact-card.email .cc-icon { background: rgba(37,99,235,0.15); }
.contact-card.email .cc-icon i { color: var(--blue); }
.cc-icon { width: 52px; height: 52px; background: rgba(232,160,32,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon i { font-size: 1.3rem; color: var(--gold); }
.cc-text strong { display: block; color: white; font-size: 0.92rem; font-weight: 600; }
.cc-text span { display: block; color: var(--gold); font-size: 0.95rem; font-weight: 700; }
.cc-text small { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.cc-arrow { margin-left: auto; color: rgba(255,255,255,0.3); }

/* CONTACT FORM */
.contact-form { background: white; border-radius: var(--radius); padding: 36px; }
.contact-form h3 { margin-bottom: 24px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.required { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 0.88rem; font-family: inherit; outline: none; transition: var(--transition);
  background: var(--light); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: white; }
.form-note { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note i { color: var(--success); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-col .logo { margin-bottom: 16px; }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
  background: var(--gold); color: var(--dark); border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; transition: var(--transition);
}
.footer-phone:hover { background: var(--gold-dark); }
.footer-col h4 { color: white; margin-bottom: 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact li i { color: var(--gold); width: 16px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   CALLBACK SECTION
============================================================ */
.callback-section { background: var(--light); padding: 96px 0; }
.callback-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.callback-info h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 16px; }
.callback-info p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.section-tag-dark { display: inline-block; background: rgba(27,42,74,0.08); color: var(--navy); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing:.05em; text-transform:uppercase; margin-bottom: 16px; }
.callback-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cbf-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); font-weight: 500; }
.cbf-item i { color: #10B981; font-size: 1rem; }
.callback-phone { display: inline-flex; align-items: center; gap: 10px; }
.callback-form-box { background: #fff; border-radius: 20px; box-shadow: 0 8px 40px rgba(27,42,74,0.1); overflow: hidden; }
.cfb-header { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: var(--navy); }
.cfb-header i { font-size: 1.4rem; color: var(--gold); }
.cfb-header strong { display: block; color: #fff; font-size: 0.95rem; }
.cfb-header span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.cfb-online { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #10B981; font-weight: 600; }
.cfb-online span { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: livePulse 1.4s infinite; display: inline-block; }
.callback-form { padding: 28px 28px 0; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { margin-bottom: 16px; }
.cf-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cf-field label span { color: var(--gold); }
.cf-field label em { color: var(--muted); font-weight: 400; }
.cf-field input, .cf-field select, .cf-field textarea { width: 100%; padding: 11px 14px; border: 2px solid #E5E7EB; border-radius: 10px; font-size: 0.9rem; font-family: inherit; color: var(--text); background: #FAFAFA; transition: var(--transition); outline: none; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(232,160,32,0.12); }
.cf-field textarea { resize: none; }
.cf-submit { width: 100%; padding: 15px; font-size: 1rem; border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-gold { background: #D4AF37; color: #0F1A3A; border: none; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.1s, box-shadow 0.2s; box-shadow: 0 4px 15px rgba(212,175,55,0.35); }
.btn-gold:hover { background: #e8c84a; box-shadow: 0 6px 20px rgba(212,175,55,0.5); transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); }
.cf-note { text-align: center; font-size: 0.75rem; color: var(--muted); padding-bottom: 24px; }
.cf-note i { color: #10B981; }
.cf-success { padding: 48px 28px; text-align: center; }
.cfs-icon { font-size: 3rem; margin-bottom: 16px; }
.cf-success h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.cf-success p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.cfs-phone { margin-top: 16px; font-size: 1rem; }
.cfs-phone a { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
@media (max-width: 768px) { .callback-inner { grid-template-columns: 1fr; gap: 32px; } .cf-row { grid-template-columns: 1fr; } }

/* ============================================================
   EXIT INTENT POPUP
============================================================ */
.exit-popup { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:10000; align-items:center; justify-content:center; backdrop-filter:blur(4px); }
.exit-popup.active { display:flex; animation:fadeIn .25s ease; }
.exit-popup-box { background:#fff; border-radius:20px; padding:40px 36px; max-width:420px; width:90%; text-align:center; position:relative; box-shadow:0 24px 80px rgba(0,0,0,0.35); }
.exit-popup-close { position:absolute; top:14px; right:16px; background:none; border:none; font-size:1.1rem; color:#999; cursor:pointer; padding:4px; }
.exit-popup-close:hover { color:#333; }
.ep-icon { font-size:3rem; margin-bottom:12px; }
.exit-popup-box h3 { font-size:1.5rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.exit-popup-box p { color:#555; font-size:0.95rem; line-height:1.6; margin-bottom:20px; }
.ep-btn { display:block; width:100%; padding:15px; font-size:1rem; border-radius:12px; margin-bottom:10px; }
.ep-wa { display:flex; align-items:center; justify-content:center; gap:8px; background:#25D366; color:#fff; padding:12px; border-radius:12px; font-weight:600; font-size:0.95rem; transition:var(--transition); }
.ep-wa:hover { background:#1ebe5d; color:#fff; }
.ep-note { font-size:0.75rem; color:#999; margin-top:14px; margin-bottom:0; }

/* ============================================================
   KVKK COOKIE BANNER
============================================================ */
.kvkk-banner { position:fixed; bottom:0; left:0; right:0; background:rgba(13,22,37,0.97); backdrop-filter:blur(10px); border-top:1px solid rgba(232,160,32,0.2); z-index:9999; padding:14px 24px; transform:translateY(100%); transition:transform .4s ease; }
.kvkk-banner.visible { transform:translateY(0); }
.kvkk-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.kvkk-inner p { color:rgba(255,255,255,0.75); font-size:0.82rem; margin:0; display:flex; align-items:center; gap:8px; }
.kvkk-inner p i { color:var(--gold); }
.kvkk-link { color:var(--gold); text-decoration:underline; }
.kvkk-btns { display:flex; gap:10px; flex-shrink:0; }
.kvkk-accept { background:var(--gold); color:var(--dark); border:none; padding:8px 20px; border-radius:8px; font-weight:700; font-size:0.82rem; cursor:pointer; transition:var(--transition); }
.kvkk-accept:hover { background:#d4901c; }
.kvkk-reject { background:transparent; color:rgba(255,255,255,0.5); border:1px solid rgba(255,255,255,0.15); padding:8px 16px; border-radius:8px; font-size:0.82rem; cursor:pointer; transition:var(--transition); }
.kvkk-reject:hover { color:rgba(255,255,255,0.8); border-color:rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* backdrop-filter mobilde render sorunlarina yol acar, tumunu kapat */
  * { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }

  .top-bar-left { display: none; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); flex-direction: column; align-items: center;
    justify-content: center; gap: 24px; z-index: 799;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: white; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { }
  .testimonial-card { min-width: calc(100vw - 48px); }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-phone { bottom: 100px; right: 16px; }
  .float-whatsapp { bottom: 36px; right: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .services-cta-bar { flex-direction: column; text-align: center; }
  .hero-stats-mini { gap: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-lead-strip { grid-template-columns: 1fr; }
  .btn-primary-hero, .btn-outline-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  section { overflow-x: clip; }
  .container { padding: 0 16px; }
  .top-bar { padding: 10px 0; }
  .top-bar-right { width: 100%; }
  .top-bar-right a { width: 100%; justify-content: center; }
  .nav-inner { gap: 16px; padding-top: 12px; padding-bottom: 12px; }
  .logo-text { font-size: 1.15rem; }
  .hero { min-height: auto; padding: 44px 0 36px; }
  .hero-badge { width: 100%; justify-content: center; text-align: center; padding: 10px 14px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 22px; }
  .hero-stats-mini { gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
  .hero-stats-mini div { min-width: calc(50% - 8px); }
  .hero-stats-mini strong { font-size: 1.2rem; }
  .hero-trust { font-size: 0.74rem; line-height: 1.7; }
  .btn,
  .btn-primary-lg,
  .btn-primary-hero,
  .btn-outline-hero,
  .btn-ghost-hero {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .btn-primary-hero,
  .btn-outline-hero,
  .btn-ghost-hero { padding: 16px 18px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-price { flex-wrap: wrap; }
  .pricing-price span:first-child { font-size: 1.6rem; }
  .msg-bubble { max-width: 92%; word-break: break-word; }
  .why-badges { grid-template-columns: 1fr; }
  .contact-grid,
  .callback-inner { gap: 28px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .success-toast {
    left: 16px;
    right: 16px;
    bottom: 92px;
    font-size: 0.84rem;
    transform: translateY(140%);
  }
  .success-toast.show { transform: translateY(0); }
  .kvkk-inner,
  .kvkk-btns { width: 100%; }
  .kvkk-btns { flex-direction: column; }
  .kvkk-accept,
  .kvkk-reject { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.9rem; line-height: 1.18; }
  h2 { font-size: 1.45rem; }
  .hero-badge { font-size: 0.72rem; }
  .hero-stats-mini { flex-direction: column; }
  .hero-stats-mini div { min-width: 100%; }
  .pricing-price span:first-child { font-size: 1.4rem; }
  .float-phone { bottom: 84px; }
  .float-whatsapp { bottom: 20px; }
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Success notification */
.success-toast {
  position: fixed; bottom: 100px; right: 24px; z-index: 9999;
  background: var(--success); color: white; padding: 14px 24px;
  border-radius: 12px; font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
  transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.success-toast.error {
  background: #c2410c;
  box-shadow: 0 8px 24px rgba(194,65,12,0.35);
}
.success-toast.show { transform: translateX(0); }

