/* ==========================================================================
   WEBON.UZ — Zamonaviy IT & Raqamli Yechimlar Studiyasi (Digital Agency)
   Dizayn Uslubi: Next-Gen High-Tech, Clean UI, Glassmorphism, Micro-interactions
   Shriftlar: Plus Jakarta Sans & Outfit (Google Fonts)
   CMS: DataLife Engine (DLE) v21
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HIGH-TECH DESIGN TOKENS (DIZAYN TIZIMI)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Ranglar va Neon Glow */
  --brand: #2563eb;
  --brand-600: #1d4ed8;
  --brand-700: #1e40af;
  --brand-light: #eff6ff;
  --brand-glow: rgba(37, 99, 235, 0.25);
  
  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.25);
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.25);
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.25);

  /* Matn Ranglari */
  --text-main: #0b132b;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Fon va Yuzalar (Layered Surfaces) */
  --bg-body: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-dark: #070b14;
  --bg-dark-card: #0f172a;

  /* Chegaralar */
  --border-color: rgba(226, 232, 240, 0.9);
  --border-glass: rgba(255, 255, 255, 0.6);
  --border-focus: #3b82f6;

  /* Shriftlar: Yangi Avlod Tipografikasi */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;

  /* Burchak Radiuslari */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Premium Soyalar va Glow Effektlari */
  --shadow-sm: 0 1px 2px 0 rgba(11, 19, 43, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(11, 19, 43, 0.06), 0 2px 6px -1px rgba(11, 19, 43, 0.03);
  --shadow-lg: 0 12px 30px -4px rgba(11, 19, 43, 0.08), 0 4px 12px -2px rgba(11, 19, 43, 0.04);
  --shadow-glow: 0 16px 40px -6px rgba(37, 99, 235, 0.16), 0 6px 16px -2px rgba(6, 182, 212, 0.1);
  --shadow-dark: 0 20px 40px -10px rgba(0, 0, 0, 0.4);

  /* O'tishlar */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. BAZAVIY ELEMENTLAR VA HIGH-TECH GRID FON
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* High-Tech nozik ambient grid */
  background-image: radial-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Yuqori qismdagi yumshoq neon nurli aura (Ambient Glow) - 100% responsive */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(50px);
  overflow: hidden;
}

main.main-content {
  flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--brand-600);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Gradient Matn Klipi */
.gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 40%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 60%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   3. JONLI STATUS (LIVE PULSE BADGE) VA TIZIM ELEMENTLARI
   -------------------------------------------------------------------------- */
.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: #1e40af;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-main-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. HEADER VA NAVIGATSIYA (HIGH-TECH GLASSBAR)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -4px rgba(11, 19, 43, 0.04);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.header-logo img {
  height: 42px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header-logo:hover img {
  transform: scale(1.03);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav .nav-item .nav-link {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.header-nav .nav-item .nav-link:hover,
.header-nav .nav-item .nav-link.active {
  color: var(--brand);
  background-color: rgba(37, 99, 235, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-header-action {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-header-action:hover {
  background: #ffffff;
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* High-Tech Shimmer Button */
.btn-tech-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #06b6d4 100%);
  color: #ffffff !important;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-base);
}

.btn-tech-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.btn-tech-primary:hover::before {
  left: 150%;
}

.btn-tech-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  color: #ffffff;
}

.btn-tech-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.btn-tech-outline:hover {
  background: #ffffff;
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   5. HERO BO'LIMI (HIGH-TECH HERO)
   -------------------------------------------------------------------------- */
.hero-section-custom {
  padding: 3.5rem 0 3rem;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 1.35rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Texnologik Micro-Chiplar Bar */
.hero-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.tech-chip i {
  color: var(--brand);
}

.hero-image-wrap {
  text-align: center;
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 25px 35px rgba(37, 99, 235, 0.15));
  animation: float-hero 5s ease-in-out infinite;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   6. WEBON HAQIDA BO'LIMI (HIGH-TECH STATS)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 4.5rem 0;
  position: relative;
}

.stat-card-tech {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.stat-card-tech:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(37, 99, 235, 0.3);
}

.stat-card-tech:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #1d4ed8 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.45rem;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. XIZMATLARIMIZ (HIGH-TECH SERVICE CARDS)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 5rem 0 4rem;
  position: relative;
}

.service-card-tech {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.service-card-tech:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(37, 99, 235, 0.35);
  background: #ffffff;
}

/* Rasm orqasidagi nozik rangli Halo */
.service-icon-halo {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-icon-halo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  filter: blur(8px);
  transition: transform var(--transition-base);
}

.service-card-tech:hover .service-icon-halo::before {
  transform: scale(1.25);
}

.service-icon-halo img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.service-card-tech:hover .service-icon-halo img {
  transform: scale(1.08);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Texnologik Stak Nishonlari (Pills) */
.service-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.stack-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #1e40af;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.service-action-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.service-card-tech:hover .service-action-link {
  color: var(--brand-600);
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   8. ISH NAMUNALARI / PORTFOLIO (BROWSER MOCKUP CARDS)
   -------------------------------------------------------------------------- */
.portfolio-section {
  padding: 4.5rem 0;
  position: relative;
}

.portfolio-card-tech {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.portfolio-card-tech:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(37, 99, 235, 0.35);
}

/* Safari / Browser Mockup Bar */
.browser-top-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.85rem;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.browser-dot-red { background: #ef4444; }
.browser-dot-yellow { background: #f59e0b; }
.browser-dot-green { background: #10b981; }

.tech-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b132b;
}

.tech-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-tech:hover .tech-card-thumb img {
  transform: scale(1.08);
}

.tech-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tech-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.tech-card-title a {
  color: var(--text-main);
}

.tech-card-title a:hover {
  color: var(--brand);
}

.tech-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.tech-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

/* --------------------------------------------------------------------------
   9. AFZALLIKLARIMIZ (HIGH-TECH BENTO FEATURES)
   -------------------------------------------------------------------------- */
.features-section {
  padding: 4.5rem 0;
}

.feature-box-tech {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  position: relative;
}

.feature-box-tech:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(37, 99, 235, 0.35);
  background: #ffffff;
}

.feature-icon-tech {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--brand);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.feature-box-tech:hover .feature-icon-tech {
  transform: scale(1.1) rotate(5deg);
  background: var(--brand);
  color: #ffffff;
}

.feature-box-tech h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.feature-box-tech p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. CTA BANNER (FUTURISTIC DARK GLOW)
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 3rem 0 5rem;
}

.cta-banner-tech {
  background: radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
              linear-gradient(135deg, #070b14 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 4rem 2.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-tech h2 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
}

.cta-banner-tech p {
  color: #cbd5e1;
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   11. FOOTER (HIGH-TECH DARK)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #070b14;
  color: #94a3b8;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.35rem;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 1.75rem;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.footer-heading {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.35rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--cyan);
  margin-top: 3px;
  font-size: 16px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 13.5px;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE MOSLASHUVCHANLIK
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-section-custom {
    padding: 2.5rem 0 2rem;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-tech-chips {
    justify-content: center;
  }
  .hero-image-wrap {
    margin-top: 2.5rem;
  }
  .about-section, .services-section, .portfolio-section, .features-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 767.98px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
    max-width: 100% !important;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-tech-primary, .btn-tech-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-tech-chips {
    justify-content: center;
  }
  .tech-chip {
    font-size: 11.5px;
  }
  .stat-card-tech {
    padding: 1.25rem 0.85rem;
  }
  .stat-number {
    font-size: 2.25rem;
  }
  .cta-banner-tech {
    padding: 2.5rem 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
