* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background: #030817;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* ====================
BACKGROUND
==================== */

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(180px);
  z-index: -1;
}

.blur-1 {
  width: 400px;
  height: 400px;
  background: #005cff;
  top: -150px;
  right: -100px;
  opacity: 0.25;
}

.blur-2 {
  width: 500px;
  height: 500px;
  background: #0047ff;
  bottom: -250px;
  left: -150px;
  opacity: 0.15;
}

/* ====================
HEADER
==================== */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 20px 0;
  background: rgba(3, 8, 23, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo i {
  font-size: 38px;
  color: #fff;
}

.logo h3 {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  font-size: 12px;
  color: #7e8aa8;
}

.menu {
  display: flex;
  gap: 35px;
}

.menu a {
  position: relative;
  font-size: 15px;
  color: #c9d4ef;
  transition: 0.3s;
}

.menu a:hover {
  color: #fff;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 2px;
  background: #0a63ff;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #0a63ff, #0052ff);
  box-shadow: 0 0 25px rgba(0, 89, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-login {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ====================
HERO
==================== */

.hero {
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.4;
  font-weight: 800;
}

.hero-content h1 span {
  display: block;
  color: #0a63ff;
}

.hero-content p {
  margin-top: 25px;
  font-size: 18px;
  line-height: 2;
  color: #9aa6c6;
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.feature-box {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-box i {
  color: #0a63ff;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 15px;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ====================
PHONE MOCKUP
==================== */

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  height: 620px;
  background: #0c1225;
  border-radius: 50px;
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 80px rgba(0, 89, 255, 0.3),
    0 0 150px rgba(0, 89, 255, 0.15);
}

.phone-screen {
  height: 100%;
  border-radius: 35px;
  background: linear-gradient(180deg, #0e1327, #050a17);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 25px;
}

.apple-icon {
  font-size: 90px;
  margin-bottom: 20px;
}

.phone-screen h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.phone-screen p {
  color: #9aa6c6;
  margin-bottom: 40px;
}

.phone-screen input {
  width: 100%;
  height: 55px;
  background: #111a33;
  border: none;
  outline: none;
  border-radius: 14px;
  margin-bottom: 15px;
  padding: 0 15px;
  color: #fff;
}

.phone-screen button {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 14px;
  background: #0a63ff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.floating-card {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #0b1228;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 0 40px rgba(0, 89, 255, 0.25);
}

.cloud {
  top: 40px;
  right: 40px;
}

.appstore {
  bottom: 80px;
  right: 0;
}

.music {
  top: 70px;
  left: 20px;
}

/* ====================
SECTIONS
==================== */

section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.section-title p {
  color: #8c98b8;
}

/* ====================
SERVICE CARDS
==================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: #081224;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 35px 25px;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #0a63ff;
  box-shadow: 0 0 35px rgba(0, 89, 255, 0.18);
}

.service-card h3 {
  margin: 20px 0 15px;
  font-size: 22px;
}

.service-card p {
  line-height: 2;
  color: #9aa6c6;
}

.service-card a {
  display: inline-block;
  margin-top: 20px;
  color: #0a63ff;
  font-weight: 700;
}

/* FLAGS */

.flag {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.canada {
  background: linear-gradient(90deg, red 33%, white 33%, white 66%, red 66%);
}

.usa {
  background: repeating-linear-gradient(180deg, #d00 0 8px, #fff 8px 16px);
}

.uk {
  background: #173d91;
}

.turkey {
  background: #d60d23;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: #071c3f;
  color: #0a63ff;
}
/* ====================
GUIDE CARDS
==================== */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.guide-card {
  background: #081224;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 30px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 50%;
  top: -70px;
  left: -70px;
  filter: blur(40px);
}

.guide-card:hover {
  transform: translateY(-8px);
  border-color: #0a63ff;
  box-shadow: 0 0 35px rgba(0, 89, 255, 0.2);
}

.guide-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.guide-card p {
  color: #98a5c4;
  line-height: 1.9;
  position: relative;
  z-index: 2;
}

.guide-card a {
  display: inline-block;
  margin-top: 18px;
  color: #0a63ff;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* ====================
ADVANTAGES
==================== */

.adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.adv-card {
  background: #081224;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.35s;
}

.adv-card:hover {
  transform: translateY(-10px);
  border-color: #0a63ff;
  box-shadow: 0 0 30px rgba(0, 89, 255, 0.25);
}

.adv-card i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0a63ff;
}

.adv-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.adv-card p {
  color: #98a5c4;
  line-height: 1.8;
}

/* ====================
STATS
==================== */

.stats {
  padding: 120px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat {
  background: linear-gradient(
    180deg,
    rgba(10, 99, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 45px 20px;
  text-align: center;
}

.stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: #0a63ff;
  margin-bottom: 12px;
}

.stat span {
  color: #9aa6c6;
  font-size: 15px;
}

/* ====================
FOOTER
==================== */

.footer {
  margin-top: 80px;
  padding: 80px 0 40px;
  background: #020612;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-about p {
  margin-top: 20px;
  line-height: 2;
  color: #98a5c4;
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #98a5c4;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #0a63ff;
}

.footer p {
  color: #98a5c4;
  line-height: 2;
}

/* ====================
SCROLLBAR
==================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050b18;
}

::-webkit-scrollbar-thumb {
  background: #0a63ff;
  border-radius: 20px;
}

/* ====================
ANIMATION
==================== */

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.cloud {
  animation: float 4s infinite;
}

.appstore {
  animation: float 5s infinite;
}

.music {
  animation: float 6s infinite;
}

/* ====================
TABLET
==================== */

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin: auto;
    margin-top: 20px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================
MOBILE
==================== */

@media (max-width: 768px) {
  .container {
    width: 94%;
  }

  .menu {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }

  .hero-features {
    flex-direction: column;
  }

  .feature-box {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .stat h3 {
    font-size: 34px;
  }

  .logo {
    justify-content: center;
  }
}

/* ====================
SMALL MOBILE
==================== */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .phone-mockup {
    width: 250px;
    height: 520px;
  }

  .phone-screen {
    padding: 35px 20px;
  }

  .apple-icon {
    font-size: 70px;
  }

  .phone-screen h3 {
    font-size: 24px;
  }

  .phone-screen input {
    height: 50px;
  }

  .phone-screen button {
    height: 50px;
  }

  .floating-card {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }

  .cloud {
    right: 0;
  }

  .music {
    left: 0;
  }
}
