/* =============================================
   DIJIFEX — Ana Stil Dosyası
   Outfit font + Bootstrap entegre
   Light/Dark mode destekli
   ============================================= */



/* ── CSS Variables ───────────────────────────── */
:root {
  --bg:           #ffffff;
  --bg2:          #f7f8fc;
  --bg-dark:      #0b0c10;
  --bg-dark2:     #12131a;
  --bg-card:      #ffffff;
  --text:         #0d0d12;
  --text-2:       #4b5563;
  --text-light:   #9ca3af;
  --border:       #e5e7eb;
  --border2:      #d1d5db;
  --accent:       #6366f1;
  --accent-h:     #4f46e5;
  --accent-2:     #10b981;
  --accent-3:     #3b82f6;
  --navbar-bg:    rgba(255,255,255,0.92);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --r:            12px;
  --r-lg:         20px;
  --r-xl:         28px;
  --tr:           0.25s cubic-bezier(0.4,0,0.2,1);
  --font:         'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* Dark Mode Variables */
body.dark-mode {
  --bg:           #0b0c10;
  --bg2:          #12131a;
  --bg-card:      #1a1b25;
  --text:         #f1f5f9;
  --text-2:       #94a3b8;
  --text-light:   #64748b;
  --border:       #1e2030;
  --border2:      #252636;
  --navbar-bg:    rgba(11,12,16,0.95);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.5);
}

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--tr), color var(--tr);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Navbar ──────────────────────────────────── */
.navbar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr), background var(--tr);
}
.navbar-wrap.scrolled { box-shadow: var(--shadow); }

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-brand-icon { font-size: 1.7rem; line-height: 1; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--bg2); }
.nav-link.active {
  color: var(--text);
  border-color: var(--border);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Dark mode toggle */
.dark-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-2);
  transition: var(--tr);
}
.dark-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
}
.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.btn-accent:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.4); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--text); background: var(--text); color: var(--bg); }

.btn-ghost {
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* Arrow button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--tr);
}
.btn-arrow .arrow-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--tr);
}
.btn-arrow:hover .arrow-circle { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Layout Helpers ──────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.page-wrap { padding-top: 70px; }

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark {
  background: var(--bg-dark);
  color: #f1f5f9;
}
.section-gray { background: var(--bg2); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero {
  background: var(--bg2);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.breadcrumb-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.breadcrumb-wrap a { color: var(--text-2); }
.breadcrumb-wrap a:hover { color: var(--accent); }

/* ── Cards ───────────────────────────────────── */
.card-base {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--tr);
}
.card-base:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ── HOME — Hero ─────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  position: relative;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  display: block;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-2);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-ring-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  position: absolute;
  animation: spinSlow 25s linear infinite;
}
.hero-ring::before, .hero-ring::after {
  content: '✦';
  position: absolute;
  font-size: 1.2rem;
  color: var(--text);
  left: 50%; transform: translateX(-50%);
}
.hero-ring::before { top: -14px; }
.hero-ring::after  { bottom: -14px; }
.hero-ring-2 {
  width: 72%; height: 72%;
  border: 1px solid var(--border);
  animation: spinSlow 18s linear infinite reverse;
}
.hero-ring-center {
  width: 44%; height: 44%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.3;
  z-index: 1;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-card-1 { top: 10%; right: -5%; animation-delay: 0s; }
.hero-float-card-2 { bottom: 20%; left: -5%; animation-delay: 1.5s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 1.2rem; }

/* Hero bg decoration */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-bg-grad {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

/* ── HOME — Services Grid ─────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0;
  transition: var(--tr);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--tr);
}
.service-card:hover .service-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── HOME — Process ───────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.process-step { text-align: center; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  transition: var(--tr);
}
.process-step:hover .process-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── HOME — Testimonials ─────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── HOME — CTA Banner ───────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 50%, #2563eb 100%);
  border-radius: var(--r-xl);
  padding: 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  position: relative;
}
.btn-white {
  background: #fff;
  color: var(--accent);
  font-family: var(--font);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── PRICING ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: var(--tr);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.08);
}
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 600;
}
.pricing-period {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.pricing-feature .bi-check-circle-fill { color: var(--accent-2); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.pricing-feature .bi-x-circle { color: var(--text-light); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

/* ── BLOG ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg2), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-body { padding: 1.5rem; }
.blog-cat {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: rgba(99,102,241,0.1);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ── CONTACT ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg2);
  border-radius: var(--r);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-info-item p { font-size: 0.9rem; color: var(--text-2); }

/* ── FORMS ───────────────────────────────────── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form-control {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--tr);
  width: 100%;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--tr);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent-h); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--r);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  display: none;
}
.form-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Auth cards */
.auth-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.auth-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.auth-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.auth-link { font-size: 0.83rem; color: var(--accent); }
.auth-link:hover { text-decoration: underline; }
.auth-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 0.75rem;
}
.auth-privacy a { color: var(--accent); }

/* ── HAKKIMIZDA ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(59,130,246,0.05));
}
.about-badge-float {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  font-family: var(--font);
}
.about-badge-float strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-float span { font-size: 0.8rem; opacity: 0.85; }

.about-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-2);
}
.about-list-item i { color: var(--accent-2); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--tr);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.82rem; color: var(--text-light); }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg-dark2);
  color: #94a3b8;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { font-family: var(--font); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: #94a3b8; transition: var(--tr); }
.footer-col a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #94a3b8;
  transition: var(--tr);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
}

/* ── Scroll Top ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--tr);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }

/* ── Mobile Nav ──────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 8888;
  backdrop-filter: blur(4px);
}
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-card);
  z-index: 8999;
  padding: 2rem 1.5rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-overlay.open { display: block; }
.mobile-menu-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.mobile-menu-close button {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text-2);
}
.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: var(--r);
  margin-bottom: 0.25rem;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding: 4rem 0 3rem; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .auth-grid { grid-template-columns: 1fr; max-width: 480px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .container { padding: 0 1.25rem; }
}
