/*
 * Atropatena Holding - Ana Stil Faylı
 * Müəllif: Həmzə Hüseynli
 * Layihə: atropatenaholding.az
 * Tarix: 2025
 */

@font-face {
  font-family: 'Favorit';
  src: url('fonts/FavoritPro-Book.bcfe7407.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Favorit';
  src: url('fonts/FavoritPro-Medium.30e21c9e.woff2') format('woff2');
  font-weight: 500 900;
  font-display: swap;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --gold: #c9993a;
  --gold-deep: #a07828;
  --gold-light: #b8841e;
  --bg-dark: #f5f2ee;
  --card-bg: rgba(255, 252, 248, 0.9);
  --card-border: rgba(201, 153, 58, 0.2);
  --text-white: #1a1610;
  --text-muted: rgba(26, 22, 16, 0.55);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Favorit', sans-serif;
  background: #0a0805;
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ===== HERO SECTION ===== */
/* ===== GLOBAL PARALLAX BG ===== */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  perspective: 800px;
  transform-style: preserve-3d;
}
.site-bg-img {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  background: url('images/back2.png') center / cover no-repeat;
  will-change: transform;
  transform: scale(1.05) translateX(0px) translateY(0px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(180, 120, 30, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(201, 153, 58, 0.07) 0%, transparent 60%),
    rgba(10, 8, 5, 0.45);
  will-change: background;
  transition: background 0.3s ease;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.hero-bg {
  display: none;
}
.hero-bg::after {
  display: none;
}

/* Animated particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s infinite ease-in-out;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: all 0.3s ease;
  background: transparent;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.nav-links li:first-child a {
  background: rgba(255, 255, 255, 0.15);
}
.nav-links li a .chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 0.3s ease;
}
.nav-links li a:hover .chevron {
  transform: rotate(180deg);
}
.btn-touch {
  padding: 12px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Favorit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-touch:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 25px rgba(201, 153, 58, 0.2);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 0;
  width: 100%;
}
.hero-main {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  overflow: hidden;
}
.hero-text {
  max-width: 600px;
}
.hero-title {
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 0;
  color: #ffffff;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-label {
  margin-top: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
}
.hero-subtitle {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  animation: fadeUp 1s ease 0.8s forwards;
  opacity: 0;
}

/* ===== STAT CARDS ===== */
.stat-cards {
  display: flex;
  gap: 14px;
  align-items: stretch;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}
.stat-card {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgb(245, 240, 232);
  border: none;
  border-radius: 20px;
  padding: 30px 30px;
  min-width: 280px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.3), transparent);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.card-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.card-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.card-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.card-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #1a1610;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 400;
}
.card-stat-value {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}
.card-stat-value .plus {
  color: var(--gold);
}
.card-stat-value .percent {
  font-size: 40px;
}
.stat-card.glass {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-card.glass::before {
  display: none;
}
.stat-card.glass .card-title,
.stat-card.glass .card-stat-value {
  color: #ffffff;
}
.stat-card.glass .card-stat-label,
.stat-card.glass .card-footer-text {
  color: rgba(255, 255, 255, 0.7);
}
.card-footer-text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #f5f2ee;
  color: #1a1610;
  padding: 120px 48px;
}
.about-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.about-left {
  flex: 1.2;
}
.about-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.about-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #1a1610;
  margin-bottom: 40px;
  font-family: 'Favorit', sans-serif;
}
.about-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(26, 22, 16, 0.55);
  max-width: 640px;
}
.about-desc p {
  margin-bottom: 20px;
}
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.logo-row {
  display: flex;
  gap: 20px;
}
.logo-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 140px;
  transition: all 0.3s ease;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 153, 58, 0.15);
}
.logo-card img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}
.logo-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.logo-card .logo-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 22, 16, 0.45);
  text-align: center;
}
.logo-card.large {
  min-height: 160px;
  padding: 40px 24px;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background: #ede9e2;
  padding: 40px 0 60px;
  overflow: hidden;
}
.partners-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.partners-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  color: #1a1610;
  letter-spacing: -0.5px;
  margin-bottom: 70px;
  max-width: 900px;
}
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  height: 60px;
}
.partner-item img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: all 0.4s ease;
}
.partner-item:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
  position: relative;
  z-index: 2;
  padding: 48px 48px 80px;
  text-align: center;
  width: 100%;
}

/* Holding root */
.holding-root {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.holding-root-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.holding-root-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.holding-root-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin-bottom: 0;
}
.holding-root-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

/* Kateqoriyalar sırası */
.companies-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
/* Üst yatay xətt */
.companies-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

/* Hər kolon */
.co-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
}
.co-col-connector {
  width: 2px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Kateqoriya başlığı */
.co-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  white-space: nowrap;
}
.co-cat-title svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* Şirkət kartları */
.co-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.co-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
}
.co-card:hover {
  background: rgba(201, 153, 58, 0.15);
  border-color: rgba(201, 153, 58, 0.4);
  transform: translateY(-3px);
}
.co-card-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.co-card-logo img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.co-card-logo--ph {
  background: rgba(201, 153, 58, 0.15);
  border: 1px solid rgba(201, 153, 58, 0.25);
}
.co-card-logo--ph span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.co-card-name {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
}
.co-card-desc {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ===== HOSTINQ TAM SƏHIFƏ ===== */
.hostinq-page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- HERO --- */
.hpage-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 4, 2, 0.88) 0%,
    rgba(10, 8, 5, 0.72) 50%,
    rgba(5, 4, 2, 0.5) 100%
  );
}
.hpage-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.hpage-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 28px;
}
.hpage-hero-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 32px;
}
.hpage-hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 48px;
}
.hpage-hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hpage-btn-primary {
  padding: 16px 40px;
  background: var(--gold);
  color: #0a0805;
  border-radius: 60px;
  font-family: 'Favorit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hpage-btn-primary:hover {
  background: #e0b84a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,153,58,0.35);
}
.hpage-btn-outline {
  padding: 15px 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #ffffff;
  border-radius: 60px;
  font-family: 'Favorit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.hpage-btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.hpage-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.hpage-stat {
  background: rgba(12,10,6,0.6);
  backdrop-filter: blur(16px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
}
.hpage-stat:hover {
  background: rgba(201,153,58,0.12);
}
.hpage-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.hpage-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

/* --- XÜSUSİYYƏTLƏR --- */
.hpage-features {
  padding: 0 48px 0;
}
.hpage-features-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  background: rgba(12,10,6,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: 28px;
}
.hpage-label-dark {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.hpage-features-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.hpage-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.hpage-feat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hpage-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201,153,58,0.12);
  border: 1px solid rgba(201,153,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hpage-feat-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}
.hpage-feat h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.hpage-feat p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* --- HOSTİNQ PAKETLƏRİ --- */
.hpage-pricing {
  padding: 48px 48px 0;
}
.hpage-pricing-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  background: rgba(15,12,8,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,153,58,0.18);
  border-radius: 28px;
}
.hpage-pricing-head {
  text-align: center;
  margin-bottom: 56px;
}
.hpage-pricing-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.hpage-pricing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.hpage-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hpage-plan {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: all 0.3s ease;
}
.hpage-plan:hover {
  border-color: rgba(201,153,58,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.hpage-plan--popular {
  background: rgba(201,153,58,0.08);
  border-color: rgba(201,153,58,0.4);
  transform: scale(1.03);
}
.hpage-plan--popular:hover {
  transform: scale(1.03) translateY(-4px);
}
.hpage-plan-badge {
  display: inline-block;
  background: var(--gold);
  color: #0a0805;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
.hpage-plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.hpage-plan-price {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 32px;
}
.hpage-plan-price span {
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.hpage-plan-price small {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  letter-spacing: 0;
}
.hpage-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}
.hpage-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.hpage-plan-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.hpage-plan-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Favorit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hpage-plan-btn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
.hpage-plan-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0805;
}
.hpage-plan-btn--gold:hover {
  background: #e0b84a;
  border-color: #e0b84a;
  box-shadow: 0 8px 24px rgba(201,153,58,0.35);
}

/* --- VPS SERVERLƏR --- */
.hpage-vps {
  padding: 48px 48px 80px;
}
.hpage-vps-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  background: rgba(12,10,6,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: 28px;
}
.hpage-vps-head {
  text-align: center;
  margin-bottom: 56px;
}
.hpage-vps-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.hpage-vps-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.hpage-vps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hpage-vps-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}
.hpage-vps-card:hover {
  border-color: rgba(201,153,58,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.hpage-vps-card--featured {
  background: rgba(201,153,58,0.08);
  border-color: rgba(201,153,58,0.4);
}
.hpage-vps-tier {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}
.hpage-vps-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hpage-vps-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hpage-vps-spec:last-child {
  border-bottom: none;
}
.hpage-vps-spec span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hpage-vps-spec strong {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.hpage-vps-price {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.hpage-vps-price small {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  letter-spacing: 0;
}
.hpage-vps-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.8);
  font-family: 'Favorit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hpage-vps-btn:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.hpage-vps-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0805;
}
.hpage-vps-btn--gold:hover {
  background: #e0b84a;
  border-color: #e0b84a;
  box-shadow: 0 6px 20px rgba(201,153,58,0.3);
}

/* ===== HOSTINQ INTRO SECTION ===== */
.hostinq-intro {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 1;
  background: transparent;
  padding: 80px 48px 40px;
}
.hostinq-intro-video {
  display: none;
}
.hostinq-intro-overlay {
  display: none;
}
.hostinq-intro-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 60px auto;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: calc(100% - 96px);
  background: rgba(15, 12, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 153, 58, 0.18);
  border-radius: 28px;
}
.hostinq-intro-content {
  flex: 1;
  max-width: 650px;
}
.hostinq-intro-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}
.hostinq-intro-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.hostinq-intro-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  max-width: 560px;
}
.hostinq-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.hostinq-intro-link:hover {
  border-bottom-color: #ffffff;
  gap: 22px;
}
.hostinq-intro-link svg {
  transition: transform 0.3s ease;
}
.hostinq-intro-link:hover svg {
  transform: translateX(4px);
}
.hostinq-intro-image {
  flex-shrink: 0;
  width: 420px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.hostinq-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ===== HOSTINQ FEATURES SECTION ===== */
.hostinq-features {
  background: transparent;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hostinq-features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  gap: 80px;
  background: rgba(12, 10, 6, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 153, 58, 0.2);
  border-radius: 28px;
}
.hostinq-features-left {
  flex: 1;
  max-width: 520px;
}
.hostinq-features-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hostinq-features-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.hostinq-features-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  max-width: 480px;
}
.hostinq-features-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold-light);
  color: #f5f2ee;
  border-radius: 60px;
  font-family: 'Favorit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hostinq-features-btn:hover {
  background: #e0c97a;
  box-shadow: 0 8px 30px rgba(201, 153, 58, 0.3);
  transform: translateY(-2px);
}
.hostinq-features-right {
  flex: 1;
  position: relative;
  z-index: 1;
}
.hostinq-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.hostinq-feature-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hostinq-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hostinq-feature-icon svg {
  width: 52px;
  height: 52px;
  stroke: #c9993a;
}
.hostinq-feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.hostinq-feature-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== NEWS / XƏBƏRLƏR SECTION ===== */
.news-section {
  background: transparent;
  padding: 0 48px 80px;
  position: relative;
  z-index: 1;
}
.news-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px;
  background: rgba(12, 10, 6, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 153, 58, 0.2);
  border-radius: 28px;
}
.news-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}
.news-hero-left {
  flex: 1;
  max-width: 550px;
}
.news-hero-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}
.news-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid rgba(201, 153, 58, 0.5);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Favorit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 36px;
}
.news-hero-btn:hover {
  background: rgba(201, 153, 58, 0.1);
  border-color: #c9993a;
}
.news-hero-line {
  width: 48px;
  height: 4px;
  background: #c9993a;
  border-radius: 2px;
}
.news-hero-right {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-cat-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.news-cat-item:first-child {
  padding-top: 0;
}
.news-cat-item:last-child {
  border-bottom: none;
}
.news-cat-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.news-cat-item p {
  font-size: 14px;
  font-weight: 300;
  color: #c9993a;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.news-card {
  background: rgba(20, 16, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 153, 58, 0.15);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.3), transparent);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.news-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: rgba(20, 16, 10, 0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.news-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #c9993a;
}
.news-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card h3 {
  padding: 20px 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}
.news-card-more {
  background: transparent;
  border: 1.5px solid rgba(201, 153, 58, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 100%;
  transition: all 0.4s ease;
}
.news-card-more::before {
  display: none;
}
.news-card-more:hover {
  border-color: #c9993a;
  background: rgba(201, 153, 58, 0.05);
  transform: translateY(-6px);
}
.news-card-more span {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}
.news-card-more svg {
  stroke: #c9993a;
}

/* ===== MUSICS OF AZERBAIJAN SECTION ===== */
.moa {
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* MOA Hero */
.moa-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 80px 48px 40px;
}
.moa-hero-bg {
  display: none;
}
.moa-hero-bg img {
  display: none;
}
.moa-hero-overlay {
  display: none;
}
.moa-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  background: rgba(15, 12, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 153, 58, 0.18);
  border-radius: 28px;
}
.moa-hero-left {
  flex: 1;
  max-width: 600px;
}
.moa-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}
.moa-hero-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.moa-hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}
.moa-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 380px;
  flex-shrink: 0;
}
.moa-service-card {
  background: rgb(245, 240, 232);
  border: none;
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.moa-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.3), transparent);
}
.moa-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.moa-service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.moa-service-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}
.moa-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1610;
  margin-bottom: 10px;
}
.moa-service-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 22, 16, 0.55);
}

/* MOA Features */
.moa-features {
  padding: 0 48px 40px;
}
.moa-features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px;
  display: flex;
  gap: 40px;
  background: rgba(12, 10, 6, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 153, 58, 0.2);
  border-radius: 28px;
  align-items: stretch;
}

/* Copyright block */
.moa-copyright {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  background: rgba(201, 153, 58, 0.12);
  border: 1px solid rgba(201, 153, 58, 0.25);
}
.moa-copyright-bg {
  display: none;
}
.moa-copyright-content {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.moa-copyright-content h3 {
  font-family: 'Favorit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.moa-copyright-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}
.moa-copyright-logos {
  display: flex;
  gap: 16px;
}
.moa-cr-logo {
  background: rgba(26, 22, 16, 0.12);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moa-cr-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Grid items */
.moa-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.moa-grid-item {
  background: rgb(245, 240, 232);
  border: none;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.moa-grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.3), transparent);
}
.moa-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.moa-grid-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  margin-bottom: 20px;
}
.moa-grid-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.moa-grid-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* MOA App */
.moa-app {
  padding: 0 48px 80px;
}
.moa-app-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  background: rgba(15, 12, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 153, 58, 0.18);
  border-radius: 28px;
  justify-content: space-between;
  gap: 60px;
}
.moa-app-content {
  flex: 1;
  max-width: 550px;
}
.moa-app-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: #1a1610;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.moa-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.moa-app-tags span {
  padding: 10px 20px;
  background: rgba(201, 153, 58, 0.1);
  border: 1px solid rgba(201, 153, 58, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  transition: all 0.3s ease;
}
.moa-app-tags span:hover {
  background: rgba(201, 153, 58, 0.2);
  border-color: rgba(201, 153, 58, 0.4);
}
.moa-app-image {
  flex-shrink: 0;
  width: 420px;
}
.moa-app-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(201, 153, 58, 0.15));
}


/* ===== STUDIO PRODUCTS SECTION ===== */
.studio {
  background: transparent;
  padding: 0 48px 80px;
  position: relative;
  z-index: 1;
}
.studio-container {
  max-width: 1300px;
  background: rgba(12, 10, 6, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 153, 58, 0.2);
  border-radius: 28px;
  margin: 0 auto;
  padding: 70px 60px;
}
.studio-header {
  margin-bottom: 60px;
}
.studio-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.studio-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
}
.studio-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.studio-app:hover .studio-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.studio-icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.studio-icon svg {
  width: 40%;
  height: 40%;
}
.studio-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.studio-app span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.3;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
  background: transparent;
  padding: 0 48px 80px;
  position: relative;
  z-index: 1;
}
.contact-cta-container {
  max-width: 1300px;
  background: rgba(245, 242, 238, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 153, 58, 0.15);
  border-radius: 28px;
  margin: 0 auto;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  gap: 80px;
  background: rgba(12, 10, 6, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 153, 58, 0.2);
}
.contact-cta-left {
  flex: 1;
  max-width: 520px;
}
.contact-cta-title {
  font-family: 'Favorit', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.contact-cta-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}
.contact-cta-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.contact-cta-email span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}
.contact-cta-email a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-cta-email a:hover {
  color: #1a1610;
}
.contact-cta-right {
  flex: 1;
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-cat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-cat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 153, 58, 0.4);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.contact-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-cat-icon svg {
  width: 26px;
  height: 26px;
}
.contact-cat-card span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 0;
  background: rgba(12, 10, 6, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(201, 153, 58, 0.2);
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-social:hover {
  background: rgba(201, 153, 58, 0.15);
  border-color: rgba(201, 153, 58, 0.4);
  color: var(--gold);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-group ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}
.footer-links-group ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 24px 0 32px;
}
.footer-bottom-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-cards {
    width: 100%;
  }
  /* Companies */
  .companies-section {
    padding: 40px 24px 60px;
  }
  .companies-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .companies-row::before {
    left: 25%;
    right: 25%;
  }
  .about-container {
    flex-direction: column;
    gap: 50px;
  }
  .about-right {
    width: 100%;
  }
  /* Partners */
  .partners {
    padding: 80px 0 60px;
  }
  .partners-header {
    padding: 0 48px;
  }
  .partners-title {
    font-size: 36px;
    margin-bottom: 60px;
  }
  /* Hostinq Intro */
  .hostinq-intro-container {
    padding: 70px 40px;
    gap: 40px;
  }
  .hostinq-intro-image {
    width: 350px;
    height: 320px;
  }
  .hostinq-intro-title {
    font-size: 38px;
  }
  /* Hostinq Features */
  .hostinq-features {
    padding: 80px 0;
  }
  .hostinq-features-container {
    gap: 50px;
  }
  /* News */
  .news-section {
    padding: 80px 0 100px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* MOA */
  .moa-hero-container {
    padding: 80px 40px;
    gap: 40px;
  }
  .moa-hero-right {
    width: 320px;
  }
  .moa-features-container {
    padding: 80px 40px;
  }
  .moa-app-container {
    padding: 80px 40px;
  }
  .moa-app-image {
    width: 350px;
  }
  /* Studio */
  .studio {
    padding: 80px 0;
  }
  .studio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  /* Hostinq page */
  .hpage-hero-inner {
    padding: 100px 40px 60px;
  }
  .hpage-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hpage-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .hpage-features-inner,
  .hpage-pricing-inner,
  .hpage-vps-inner {
    padding: 60px 40px;
  }
  .hpage-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .hpage-plan--popular {
    transform: scale(1);
  }
  .hpage-vps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Contact */
  .contact-cta-container {
    gap: 50px;
  }
  /* Footer */
  .footer-container {
    padding: 60px 40px 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 14px 16px;
  }
  .nav-links {
    display: none;
  }
  .btn-touch {
    padding: 10px 20px;
    font-size: 13px;
  }
  .hero-content {
    padding: 120px 20px 40px;
  }
  /* Companies */
  .companies-section {
    padding: 32px 16px 50px;
  }
  .companies-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }
  .companies-row::before {
    left: 25%;
    right: 25%;
  }
  /* 4 kolon 2x2 bölünür, hər kolon normal */
  .co-col:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  .co-cat-title {
    font-size: 11px;
    padding: 7px 14px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .co-card {
    padding: 14px 10px;
  }
  .co-card-logo {
    width: 38px;
    height: 38px;
  }
  .co-card-name {
    font-size: 11px;
  }
  .co-card-desc {
    font-size: 9px;
  }
  .holding-root-name {
    font-size: 15px;
  }
  .holding-root-logo {
    width: 60px;
    height: 60px;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 50px);
    letter-spacing: -1px;
  }
  .stat-cards {
    flex-direction: column;
  }
  .stat-card {
    min-width: 100%;
  }
  /* About */
  .about {
    padding: 80px 20px;
  }
  .about-title {
    font-size: 30px;
  }
  .logo-row {
    flex-direction: column;
  }
  /* Partners */
  .partners {
    padding: 60px 0 50px;
  }
  .partners-header {
    padding: 0 20px;
  }
  .partners-title {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .marquee-track {
    gap: 50px;
  }
  .partner-item {
    width: 130px;
    height: 50px;
  }
  .partner-item img {
    max-width: 110px;
    max-height: 32px;
  }
  /* Hostinq Intro */
  .hostinq-intro {
    min-height: auto;
  }
  .hostinq-intro-container {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }
  .hostinq-intro-content {
    max-width: 100%;
  }
  .hostinq-intro-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hostinq-intro-link {
    justify-content: center;
  }
  .hostinq-intro-image {
    width: 100%;
    max-width: 400px;
    height: 280px;
    margin: 0 auto;
  }
  .hostinq-intro-title {
    font-size: 30px;
  }
  /* Hostinq Features */
  .hostinq-features {
    padding: 60px 0;
  }
  .hostinq-features-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 50px;
  }
  .hostinq-features-left {
    max-width: 100%;
    text-align: center;
  }
  .hostinq-features-desc {
    max-width: 100%;
  }
  .hostinq-features-title {
    font-size: 30px;
  }
  .hostinq-features-grid {
    gap: 28px;
  }
  /* News */
  .news-section {
    padding: 60px 0 80px;
  }
  .news-container {
    padding: 0 20px;
  }
  .news-hero {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
  }
  .news-hero-left {
    text-align: center;
    max-width: 100%;
  }
  .news-hero-line {
    margin: 0 auto;
  }
  .news-hero-right {
    max-width: 100%;
  }
  .news-hero-title {
    font-size: 30px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card-more span {
    font-size: 18px;
  }
  /* MOA */
  .moa-hero {
    min-height: auto;
  }
  .moa-hero-container {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }
  .moa-hero-left {
    max-width: 100%;
  }
  .moa-hero-desc {
    max-width: 100%;
    margin: 0 auto;
  }
  .moa-hero-right {
    width: 100%;
  }
  .moa-features-container {
    flex-direction: column;
    padding: 60px 20px;
  }
  .moa-copyright {
    min-height: 350px;
  }
  .moa-copyright-content h3 {
    font-size: 26px;
  }
  .moa-grid {
    grid-template-columns: 1fr 1fr;
  }
  .moa-app-container {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }
  .moa-app-content {
    max-width: 100%;
  }
  .moa-app-tags {
    justify-content: center;
  }
  .moa-app .hostinq-intro-link {
    justify-content: center;
  }
  .moa-app-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  /* Studio */
  .studio {
    padding: 60px 0;
  }
  .studio-container {
    padding: 0 20px;
  }
  .studio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .studio-app span {
    font-size: 13px;
  }
  /* Hostinq page */
  .hpage-features,
  .hpage-pricing,
  .hpage-vps {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hpage-hero-inner {
    padding: 100px 20px 50px;
    gap: 50px;
  }
  .hpage-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hpage-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .hpage-features-inner,
  .hpage-pricing-inner,
  .hpage-vps-inner {
    padding: 50px 24px;
  }
  .hpage-plans {
    grid-template-columns: 1fr;
  }
  .hpage-plan--popular {
    transform: scale(1);
  }
  .hpage-vps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hpage-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Contact */
  .contact-cta {
    padding: 60px 0;
  }
  .contact-cta-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 40px;
  }
  .contact-cta-left {
    max-width: 100%;
    text-align: center;
  }
  .contact-cta-email {
    justify-content: center;
  }
  .contact-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Footer */
  .footer-container {
    padding: 50px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 420px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .hero-content {
    padding: 100px 16px 30px;
  }
  /* Companies - kiçik ekran */
  .companies-section {
    padding: 24px 12px 40px;
  }
  .companies-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .companies-row::before {
    left: 25%;
    right: 25%;
  }
  .co-col:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  .co-cat-title {
    font-size: 10px;
    padding: 6px 10px;
    gap: 5px;
  }
  .co-cat-title svg {
    width: 12px;
    height: 12px;
  }
  .co-card {
    padding: 12px 8px;
    gap: 6px;
  }
  .co-card-logo {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .co-card-logo--ph span {
    font-size: 14px;
  }
  .co-card-name {
    font-size: 10px;
  }
  .co-card-desc {
    font-size: 8px;
  }
  .holding-root-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .holding-root-name {
    font-size: 13px;
  }
  .holding-root-line {
    height: 28px;
  }
  .co-col-connector {
    height: 24px;
  }
  .stat-card {
    padding: 24px 20px;
  }
  .card-title {
    font-size: 24px;
  }
  .card-stat-value {
    font-size: 48px;
  }
  .about {
    padding: 60px 16px;
  }
  .about-title {
    font-size: 26px;
  }
  .about-desc {
    font-size: 14px;
  }
  /* Partners */
  .partners {
    padding: 50px 0 40px;
  }
  .partners-header {
    padding: 0 16px;
  }
  .partners-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .marquee-track {
    gap: 40px;
  }
  .partner-item {
    width: 110px;
    height: 45px;
  }
  .partner-item img {
    max-width: 90px;
    max-height: 28px;
  }
  /* Hostinq Intro */
  .hostinq-intro-container {
    padding: 50px 16px;
  }
  .hostinq-intro-title {
    font-size: 26px;
  }
  .hostinq-intro-desc {
    font-size: 14px;
  }
  .hostinq-intro-image {
    height: 220px;
  }
  .hostinq-intro-label {
    font-size: 11px;
    letter-spacing: 3px;
  }
  /* Hostinq Features */
  .hostinq-features {
    padding: 50px 0;
  }
  .hostinq-features-container {
    padding: 0 16px;
  }
  .hostinq-features-title {
    font-size: 24px;
  }
  .hostinq-features-desc {
    font-size: 14px;
  }
  .hostinq-features-label {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .hostinq-features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hostinq-feature-item h4 {
    font-size: 18px;
  }
  /* News */
  .news-section {
    padding: 50px 0 60px;
  }
  .news-container {
    padding: 0 16px;
  }
  .news-hero-title {
    font-size: 24px;
  }
  .news-hero {
    margin-bottom: 36px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-card-image {
    aspect-ratio: 16/10;
  }
  .news-card h3 {
    font-size: 15px;
  }
  .news-cat-item h4 {
    font-size: 17px;
  }
  .news-card-more {
    min-height: 200px;
  }
  .news-card-more span {
    font-size: 18px;
  }
  /* MOA */
  .moa-hero-container {
    padding: 50px 16px;
  }
  .moa-hero-title {
    font-size: 26px;
  }
  .moa-label {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .moa-features-container {
    padding: 50px 16px;
  }
  .moa-grid {
    grid-template-columns: 1fr;
  }
  .moa-grid-item h4 {
    font-size: 18px;
  }
  .moa-copyright-content {
    padding: 36px 24px;
  }
  .moa-copyright-content h3 {
    font-size: 22px;
  }
  .moa-app-container {
    padding: 50px 16px;
  }
  .moa-app-title {
    font-size: 24px;
  }
  .moa-app-tags span {
    font-size: 12px;
    padding: 8px 16px;
  }
  /* Studio */
  .studio {
    padding: 50px 0;
  }
  .studio-container {
    padding: 0 16px;
  }
  .studio-title {
    font-size: 30px;
  }
  .studio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .studio-icon {
    border-radius: 24%;
  }
  .studio-app span {
    font-size: 12px;
  }
  /* Hostinq page */
  .hpage-features-grid {
    grid-template-columns: 1fr;
  }
  .hpage-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hpage-vps-grid {
    grid-template-columns: 1fr;
  }
  .hpage-stat-num {
    font-size: 32px;
  }
  /* Contact */
  .contact-cta {
    padding: 50px 0;
  }
  .contact-cta-container {
    padding: 0 16px;
  }
  .contact-cta-title {
    font-size: 30px;
  }
  .contact-cta-desc {
    font-size: 14px;
  }
  .contact-cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .contact-cat-card {
    padding: 20px 14px;
  }
  .contact-cat-icon {
    width: 48px;
    height: 48px;
  }
  .contact-cat-icon svg {
    width: 22px;
    height: 22px;
  }
  .contact-cat-card span {
    font-size: 11px;
  }
  /* Footer */
  .footer-container {
    padding: 40px 16px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-tagline {
    max-width: 100%;
  }
  .footer-bottom-links {
    gap: 16px;
  }
}
