html, body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: #111111;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e6ebf0;
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.brand-text strong {
  display: block;
  font-size: 18px;
}
.brand-text span {
  display: block;
  color: #5c6670;
  font-size: 13px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.menu a {
  font-weight: 700;
  font-size: 15px;
}
.menu-btn {
  display: none;
  border: 1px solid #dfe5eb;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary {
  background: #f2ea00;
  color: #111111;
}
.btn-secondary {
  background: #ffffff;
  border: 1px solid #dfe5eb;
}
.hero {
  padding: 70px 0 50px;
  background:
    radial-gradient(circle at top right, rgba(120, 204, 255, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(242, 234, 0, 0.18), transparent 28%),
    #ffffff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.tag, .mini-tag {
  display: inline-block;
  background: #eaf7ff;
  color: #1475ad;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  margin: 16px 0 14px;
}
.hero p {
  color: #5c6670;
  margin: 0;
  font-size: 18px;
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-card {
  background: #ffffff;
  border: 1px solid #e6ebf0;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.hero-card img {
  border-radius: 22px;
  background: #f6f8fa;
}
.section {
  padding: 84px 0;
}
.section-soft {
  background: #f7fafc;
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.section-head.left {
  text-align: left;
  margin: 0 0 24px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  margin: 14px 0 10px;
}
.section-head p {
  margin: 0;
  color: #5c6670;
}
.cards {
  display: grid;
  gap: 22px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.cards.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #ffffff;
  border: 1px solid #e6ebf0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.card h3 {
  margin-top: 0;
}
.card p {
  margin-bottom: 0;
  color: #5c6670;
}
.service {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,1)),
    radial-gradient(circle at top right, rgba(120, 204, 255, 0.2), transparent 35%),
    radial-gradient(circle at bottom left, rgba(242, 234, 0, 0.2), transparent 35%);
}
.package.featured {
  border-color: #f2ea00;
  box-shadow: 0 18px 45px rgba(242,234,0,0.18);
}
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.list li {
  background: #ffffff;
  border: 1px solid #e6ebf0;
  border-radius: 20px;
  padding: 18px 18px 18px 52px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2ea00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.invoice h2 {
  margin: 12px 0 10px;
}
.final-cta {
  text-align: center;
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(242,234,0,0.16), rgba(120,204,255,0.16));
  border: 1px solid #e6ebf0;
  border-radius: 30px;
  padding: 30px 20px;
}
.final-cta h3 {
  margin: 0 0 8px;
  font-size: 30px;
}
.final-cta p {
  color: #5c6670;
  margin: 0 0 18px;
}
.footer {
  background: #111111;
  color: #ffffff;
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  padding: 5px;
}
.footer p, .footer h4 {
  margin: 0 0 8px;
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #111111;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
}
@media (max-width: 960px) {
  .hero-grid,
  .cards.three,
  .cards.four,
  .two-cols,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .menu-btn {
    display: inline-block;
  }
  .menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid #e6ebf0;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open {
    display: flex;
  }
  .hero-grid,
  .cards.three,
  .cards.four,
  .two-cols,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .hero h1 {
    font-size: 36px;
  }
}
