* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #081120;
  --bg-2: #0d1730;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #b9c7e6;
  --primary: #38bdf8;
  --primary-2: #2563eb;
  --success: #25d366;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 25%),
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.1), transparent 28%),
    linear-gradient(180deg, #07101e 0%, #0b1430 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.section {
  padding: 85px 0;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 14px;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--muted);
  font-size: 17px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 16, 30, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: #ffffff;
  padding: 4px;
}

.brand-text {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.brand-highlight {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #dbe5ff;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--primary);
}

.hero {
  padding: 95px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #dff6ff;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: 56px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-left h1 span {
  color: var(--primary);
}

.hero-left p {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(56, 189, 248, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: #deebff;
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-card-top img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.hero-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
}

.hero-card ul li {
  color: #d7e6ff;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.hero-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.stats-section {
  padding: 10px 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.stat-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-box h3 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-box p {
  color: var(--muted);
}

.services-grid,
.portfolio-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  transition: 0.35s ease;
  box-shadow: var(--shadow);
}

.service-card:hover,
.portfolio-card:hover,
.price-card:hover,
.contact-box:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
}

.portfolio-section {
  background: rgba(255, 255, 255, 0.015);
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.portfolio-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.portfolio-thumb {
  height: 210px;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.portfolio-content p {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.featured {
  border-color: rgba(56, 189, 248, 0.5);
  transform: scale(1.03);
}

.popular-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #06111d;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.price-card h3 {
  font-size: 24px;
}

.price-tag {
  font-size: 42px;
  font-weight: 800;
  margin: 18px 0;
  color: #fff;
}

.price-card p {
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin: 20px 0;
}

.price-card ul li {
  margin-bottom: 12px;
  color: #dce8ff;
  padding-left: 22px;
  position: relative;
}

.price-card ul li::before {
  content: "•";
  position: absolute;
  left: 7px;
  color: var(--primary);
}

.contact-section {
  padding: 0 0 90px;
}

.contact-box {
  max-width: 920px;
  margin: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 42px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.contact-box h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-box p {
  color: var(--muted);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 20px;
}

.contact-info p {
  margin: 6px 0;
  font-size: 15px;
}

.site-footer {
  border-top: 1px solid var(--card-border);
  background: rgba(0, 0, 0, 0.15);
}

.footer-wrap {
  padding: 28px 0;
  text-align: center;
}

.footer-wrap p {
  color: #9fb0d0;
}

.floating-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 1000;
}

.whatsapp-float {
  background: var(--success);
  color: #fff;
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .section-title,
  .contact-box h2 {
    font-size: 30px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .featured {
    transform: none;
  }

  .contact-box {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 22px;
  }

  .brand-logo-img {
    width: 46px;
    height: 46px;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-left p,
  .section-subtitle {
    font-size: 16px;
  }
}.hero-starting-price {
  margin-top: 10px;
}

.hero-starting-price span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #dfffea;
  font-size: 14px;
  font-weight: 700;
}

.service-card strong {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-size: 16px;
}