:root {
      --primary: #052C5C;
      --primary-dark: #031c3a;
      --accent: #ffc107;
      --light-bg: #F4FBFE;
      --light-blue: #DBF2FF;
      --sky: #65C8FF;
      --soft-blue: #E2F5FF;
      --text-muted: #555;
      --card-shadow: 0 4px 16px rgba(5, 44, 92, 0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background-color: var(--light-bg);
      color: #1e293b;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }

    /* ========== NAVBAR (matches original) ========== */
    .navbar {
      background-color: var(--primary) !important;
      padding: 14px 0;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.35rem;
      color: #fff !important;
    }
    .navbar-brand span { color: var(--accent); }
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      font-size: 15px;
      margin: 0 10px;
      transition: color 0.2s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--accent) !important;
    }
    .btn-warning-custom {
      background: var(--accent);
      color: #1a1a1a !important;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      transition: all 0.2s;
    }
    .btn-warning-custom:hover {
      background: #e0a800;
      transform: translateY(-1px);
    }
    .navbar-toggler { border-color: rgba(255,255,255,0.4); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ========== HERO ========== */
    .hero {
      background: linear-gradient(135deg, #F4FBFE 0%, #DBF2FF 50%, #E2F5FF 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -80px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(101,200,255,0.25) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-badge {
      display: inline-block;
      background: var(--light-blue);
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: 2.9rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .hero h1 span { color: #0062CC; }
    .hero p.lead {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 540px;
      margin-bottom: 28px;
    }
    .hero-btns .btn {
      padding: 12px 26px;
      font-weight: 600;
      border-radius: 10px;
      font-size: 1rem;
    }
    .btn-primary-custom {
      background: var(--primary);
      color: #fff;
      border: none;
    }
    .btn-primary-custom:hover {
      background: var(--primary-dark);
      color: #fff;
    }
    .btn-outline-custom {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    .btn-outline-custom:hover {
      background: var(--primary);
      color: #fff;
    }
    .hero-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 28px;
      box-shadow: 0 20px 50px rgba(5, 44, 92, 0.12);
      text-align: center;
      border: 1px solid #e8f4fc;
    }
    .hero-card .icons { font-size: 3.2rem; margin-bottom: 12px; letter-spacing: 8px; }
    .hero-card h3 { color: var(--primary); font-weight: 700; font-size: 1.35rem; }
    .hero-card p { color: var(--text-muted); font-size: 0.95rem; }

    /* ========== SECTION COMMON ========== */
    .section { padding: 75px 0; }
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-title h2 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .section-title p {
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 580px;
      margin: 0 auto;
    }

    /* ========== FEATURES ========== */
    .feature-box {
      background: #fff;
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      border: 1px solid #e8f0f8;
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
    }
    .feature-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(5, 44, 92, 0.14);
      border-color: var(--sky);
    }
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 16px;
      background: var(--soft-blue);
      color: var(--primary);
    }
    .feature-box h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .feature-box p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 0;
    }

    /* Color variants for feature icons */
    .lead-box .feature-icon { background: #e0f2fe; color: #0284c7; }
    .whatsapp-box .feature-icon { background: #dcfce7; color: #16a34a; }
    .insta-box .feature-icon { background: #fce7f3; color: #db2777; }
    .facebook-box .feature-icon { background: #dbeafe; color: #2563eb; }
    .google-box .feature-icon { background: #fef3c7; color: #d97706; }
    .rcs-box .feature-icon { background: #ede9fe; color: #7c3aed; }

    /* ========== WHY ========== */
    .why-section { background: #fff; }
    .why-item {
      background: var(--light-bg);
      border-radius: 14px;
      padding: 24px 20px;
      height: 100%;
      border: 1px solid #e8f0f8;
      transition: all 0.25s;
    }
    .why-item:hover {
      background: var(--soft-blue);
      border-color: var(--sky);
    }
    .why-item h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .why-item p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

    /* ========== HOW IT WORKS ========== */
    .step-card {
      text-align: center;
      padding: 20px 12px;
    }
    .step-number {
      width: 58px;
      height: 58px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.3rem;
      margin: 0 auto 14px;
      box-shadow: 0 6px 16px rgba(5, 44, 92, 0.25);
    }
    .step-card h4 {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.05rem;
      margin-bottom: 6px;
    }
    .step-card p { color: var(--text-muted); font-size: 0.9rem; }

    /* ========== TESTIMONIALS ========== */
    .testimonial-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      border: 1px solid #e8f0f8;
      box-shadow: var(--card-shadow);
    }
    .stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
    .testimonial-card p {
      color: #475569;
      font-style: italic;
      font-size: 0.98rem;
      margin-bottom: 16px;
    }
    .testimonial-card strong { color: var(--primary); }
    .testimonial-card small { color: var(--text-muted); }

    /* ========== CTA ========== */
    .cta-box {
      background: linear-gradient(135deg, var(--primary) 0%, #0a3d7a 100%);
      border-radius: 20px;
      padding: 55px 30px;
      text-align: center;
      color: #fff;
      box-shadow: 0 16px 40px rgba(5, 44, 92, 0.3);
    }
    .cta-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
    .cta-box p { font-size: 1.1rem; opacity: 0.92; max-width: 520px; margin: 0 auto 28px; }
    .cta-box .btn {
      padding: 12px 26px;
      font-weight: 600;
      border-radius: 10px;
    }
    .btn-cta-light {
      background: var(--accent);
      color: #1a1a1a;
      border: none;
    }
    .btn-cta-light:hover { background: #e0a800; color: #1a1a1a; }
    .btn-cta-outline {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
    }
    .btn-cta-outline:hover { background: #fff; color: var(--primary); }

    /* ========== FOOTER ========== */
    footer {
      background: var(--primary);
      color: #b0c4de;
      padding: 55px 0 25px;
    }
    footer h5 {
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 16px;
    }
    footer a {
      color: #b0c4de;
      display: block;
      margin-bottom: 8px;
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    footer a:hover { color: var(--accent); }
    .footer-brand p { font-size: 0.92rem; margin-bottom: 12px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 35px;
      padding-top: 20px;
      text-align: center;
      font-size: 0.88rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 991px) {
      .hero h1 { font-size: 2.2rem; }
      .hero { padding: 60px 0 50px; }
      .section { padding: 55px 0; }
    }
    @media (max-width: 575px) {
      .hero h1 { font-size: 1.85rem; }
      .section-title h2 { font-size: 1.7rem; }
      .cta-box h2 { font-size: 1.6rem; }
    }

/* ========== LEGAL / STATIC PAGES ========== */
.page-hero {
  background: linear-gradient(135deg, #F4FBFE 0%, #DBF2FF 50%, #E2F5FF 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.page-hero p { color: var(--text-muted); font-size: 1rem; }
.legal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid #e8f0f8;
}
.legal-content h2 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content .updated-badge {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ========== CONTACT PAGE ========== */
.contact-wrap { padding: 60px 0 90px; }
.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(5,44,92,0.10);
  border: 1px solid #e8f0f8;
  overflow: hidden;
}
.contact-card-header {
  background: #f4f6f8;
  border-bottom: 1px solid #e8e8e8;
  padding: 18px 28px;
}
.contact-card-header h3 {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 6px 16px;
  border-radius: 4px;
  margin: 0;
}
.contact-card-body { padding: 32px 28px; }
.contact-card-body label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  display: block;
}
.contact-card-body .form-control,
.contact-card-body textarea.form-control {
  border-radius: 8px;
  border: 1px solid #d7dee6;
  padding: 12px 14px;
  font-size: 0.98rem;
  margin-bottom: 20px;
}
.contact-card-body .form-control:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(101,200,255,0.25);
}
.consent-box {
  background: #fafbfc;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 0.92rem;
  color: #334155;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.consent-box input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.consent-box a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.consent-box a:hover { color: var(--sky); }
.btn-send {
  background: #1b7a3d;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-send:hover { background: #156130; color: #fff; }
.contact-info-card {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
}
.contact-info-card h4 { font-weight: 700; margin-bottom: 18px; }
.contact-info-card .info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-card .info-item i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 3px;
}
.contact-info-card .info-item span { font-size: 0.95rem; opacity: 0.9; }
.form-alert {
  display: none;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.form-alert.success { background: #e6f7ec; color: #1b7a3d; border: 1px solid #b7e6c5; }
.form-alert.error { background: #fdecec; color: #b3261e; border: 1px solid #f3c1bd; }

/* ========== ABOUT PAGE ========== */
.about-story p { color: #334155; font-size: 1.02rem; line-height: 1.8; margin-bottom: 16px; }
.stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e8f0f8;
  box-shadow: var(--card-shadow);
  height: 100%;
}
.stat-box .stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.stat-box .stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 6px;
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  border: 1px solid #e8f0f8;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(5, 44, 92, 0.14);
  border-color: var(--sky);
}
.value-card .feature-icon { margin-bottom: 14px; }
.value-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.about-cta-img {
  background: var(--primary);
  border-radius: 20px;
  padding: 48px 28px;
  text-align: center;
  color: #fff;
}
