/* ==================================================
   RESET & BASE
================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-top: 80px;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================================================
   HEADER
================================================== */
header {
  background: #003366;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.logo img {
  height: 80px;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  color: #fff;
  font-weight: 600;
}

nav a:hover {
  color: #ff6600;
}

.header-btn {
  background: #ff4444;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
}

.header-btn:hover {
  background: #cc3333;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==================================================
   HERO
================================================== */
.hero {
  padding: 100px 0 180px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #003366;
  margin-bottom: 25px;
}

.hero p {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.whatsapp-btn {
  background: #003366;
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background: #002244;
}

.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
}

/* ==================================================
   PRICING
================================================== */
.pricing-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 15px;
}

.pricing-subtitle {
  color: #555;
  margin-bottom: 60px;
}

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

/* CARD */
.pricing-card {
  background: #d40404;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  position: relative;
  transition: transform .3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.7rem;
  color: #003366;
  margin-bottom: 10px;
}

.pricing-card .desc {
  font-size: .95rem;
  color: #666;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 2.3rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 5px;
}

.pricing-card .renew {
  font-size: .85rem;
  color: #777;
  margin-bottom: 25px;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card li {
  padding-left: 26px;
  margin-bottom: 12px;
  position: relative;
  text-align: left;
}

.pricing-card li::before {
  content: "x";
  position: absolute;
  left: 0;
  color: #003366;
  font-weight: bold;
}

/* BUTTON */
.choose-btn {
  display: block;
  background: #ff4444;
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  font-weight: bold;
}

.choose-btn:hover {
  background: #cc3333;
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ff6600;
  color: #fff;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: bold;
  border-radius: 20px;
}

.best-badge {
  background: #0d6efd;
}

/* ==================================================
   WHY CHOOSE US
================================================== */
.why-section {
  background: #f0f8ff;
  padding: 100px 0;
}

.why-section h1 {
  text-align: center;
  color: #003366;
  margin-bottom: 60px;
}

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

.why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s;
}

.why-card:hover {
  transform: translateY(-12px);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

/* ==================================================
   FLOATING WHATSAPP
================================================== */
.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #22e743;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  nav { display: none; }
}
		/* Footer */
	
    