:root {
  --primary: #0b1d3a;
  --secondary: #122c55;
  --accent: #ff4f8b;
  --light: #ffffff;
  --muted: #cfd8e3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: var(--primary);
  color: var(--light);
  line-height: 1.6;
}

header {
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 52px;
  font-weight: 700;
}

nav a {
  margin-left: 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

.hero {
  padding: 90px 80px;
  background: linear-gradient(135deg, #0b1d3a, #122c55);
}

.hero h2 {
  font-size: 46px;
  line-height: 1.2;
}

.hero span {
  color: var(--accent);
}

.hero p {
  margin-top: 20px;
  max-width: 600px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

section {
  background: white;
  color: #222;
  padding: 80px;
}

.section-title {
  font-size: 34px;
  margin-bottom: 40px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #f6f7fb;
  padding: 30px;
  border-radius: 10px;
}

footer {
  background: #0b1d3a;
  text-align: center;
  padding: 25px;
  color: #aaa;
}

.whatsapp {
  position: fixed;
  right: 20px;
  font-size: 35px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
}

@media (max-width: 900px) {
  header {
    padding: 20px;
  }
  section, .hero {
    padding: 50px 25px;
  }
}
/* ---------- ANIMATIONS ---------- */

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- HERO VISUAL ---------- */

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.hero-visual img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

.sticker {
  position: absolute;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sticker.one { top: 15px; left: -20px; }
.sticker.two { bottom: 20px; right: -20px; }

/* ---------- HOW IT WORKS ICONS ---------- */

.icon {
  font-size: 38px;
  margin-bottom: 15px;
}

/* ---------- PRODUCT CARDS ---------- */

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
}
/* PRODUCT IMAGE ALIGNMENT FIX */
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* MAKE ALL PRODUCT CARDS SAME HEIGHT */
.cards {
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
}
/* LOGO STYLING */
.logo img {
  height: 90px;
  width: auto;
  display: block;
}

/* ================= HEADER RESPONSIVE ================= */

.header {
  padding: 20px 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  gap: 25px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary);
    flex-direction: column;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav a {
    padding: 15px 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.active {
    max-height: 300px;
  }
}
