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

@font-face {
  font-family: 'Outfit';
  src: url('fonts/LDIoaomQNQcsA88c7O9yZ4KMCoOg4Ko20yygg_vb.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0SZe1ZuWi3g.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --purple-glow: #a855f7;
  --purple-deep: #7c3aed;
  --purple-light: #c084fc;
  --bg-dark: #0a0a12;
  --card-bg: rgba(20, 20, 35, 0.75);
  --card-border: rgba(168, 85, 247, 0.15);
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(120, 50, 220, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 60%),
    url('https://atropatenaholding.az/images/back.jpg') center / cover no-repeat;
  background-color: var(--bg-dark);
}
.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(--purple-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.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}
.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li a {
  color: var(--text-white);
  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.08);
}
.nav-links li:first-child a {
  background: rgba(255, 255, 255, 0.1);
}
.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.25);
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  font-family: 'Outfit', 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.12);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.2);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 48px 50px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.hero-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.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;
  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: var(--text-muted);
  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(15, 15, 28);
  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(168, 85, 247, 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: #0a0a12;
  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(--purple-glow);
}
.card-stat-value .percent {
  font-size: 40px;
}
.stat-card.glass {
  background: linear-gradient(135deg, rgba(160, 140, 180, 0.35), rgba(120, 100, 150, 0.2));
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-card.glass::before {
  display: none;
}
.card-footer-text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #f8f7f4;
  color: #1a1a2e;
  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: #888;
  margin-bottom: 28px;
}
.about-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #1a1a2e;
  margin-bottom: 40px;
  font-family: 'Poppins', serif;
}
.about-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #666;
  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: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 140px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.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: #999;
  text-align: center;
}
.logo-card.large {
  min-height: 160px;
  padding: 40px 24px;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background: #ffffff;
  padding: 100px 0 80px;
  overflow: hidden;
}
.partners-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.partners-title {
  font-family: 'Poppins', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  color: #111111;
  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);
  opacity: 0.4;
  transition: all 0.4s ease;
}
.partner-item:hover img {
  filter: brightness(0);
  opacity: 0.7;
}

/* ===== HOSTINQ INTRO SECTION ===== */
.hostinq-intro {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hostinq-intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hostinq-intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.55);
  z-index: 1;
}
.hostinq-intro-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.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: 'Poppins', 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: #fff;
  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;
  display: block;
}

/* ===== MUSICS OF AZERBAIJAN SECTION ===== */
.moa {
  background: var(--bg-dark);
}

/* MOA Hero */
.moa-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.moa-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.moa-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 20, 0.85) 0%, rgba(10, 10, 20, 0.5) 100%);
  z-index: 1;
}
.moa-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.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: 'Poppins', 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: rgba(15, 15, 30, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.moa-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.moa-service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-glow));
  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: #fff;
  margin-bottom: 10px;
}
.moa-service-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* MOA Features */
.moa-features {
  padding: 0;
}
.moa-features-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Copyright block */
.moa-copyright {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  background: #2563eb;
}
.moa-copyright-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  opacity: 0.15;
}
.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: 'Poppins', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  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.85);
  margin-bottom: 36px;
}
.moa-copyright-logos {
  display: flex;
  gap: 16px;
}
.moa-cr-logo {
  background: rgba(255,255,255,0.15);
  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: rgba(20, 20, 35, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.moa-grid-item:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-3px);
}
.moa-grid-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--purple-glow);
  margin-bottom: 20px;
}
.moa-grid-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.moa-grid-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* MOA App */
.moa-app {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.moa-app-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.moa-app-content {
  flex: 1;
  max-width: 550px;
}
.moa-app-title {
  font-family: 'Poppins', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  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(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-light);
  transition: all 0.3s ease;
}
.moa-app-tags span:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 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(168, 85, 247, 0.15));
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-cards {
    width: 100%;
  }
  .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;
  }
  /* 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;
  }
}
@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;
  }
  .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;
  }
  /* 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;
  }
}
@media (max-width: 420px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .hero-content {
    padding: 100px 16px 30px;
  }
  .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;
  }
  /* 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;
  }
}
