/* ========== GLOBAL ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.gradient-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
}

.brand-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== TYPOGRAPHY ========== */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-accent,
.btn-outline {
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #7c3aed;
  color: #fff;
}

.btn-primary:hover {
  background-color: #6d28d9;
}

.btn-accent {
  background-color: #facc15;
  color: #4c1d95;
}

.btn-accent:hover {
  background-color: #fde047;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #581c87;
}

/* ========== PRICING TOGGLE ========== */
.pricing-toggle {
  display: inline-flex;
  background-color: #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.pricing-toggle button {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-toggle button:hover {
  color: #7c3aed;
}

.toggle-active {
  background-color: #7c3aed;
  color: #fff;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #111827;
  color: #fff;
  padding: 4rem 1rem;
}

.footer a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

/* ========== COMPONENTS ========== */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background: linear-gradient(135deg, #1e3a8a, #581c87);
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.backdrop-blur-sm {
  backdrop-filter: blur(8px);
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #111827;
}
/* Services and Addons layout */
#service-includes ul,
#addons .grid {
  gap: 1rem;
}

#service-includes li {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  list-style: none;
}

#addons .p-6 {
  min-height: 120px;
}

/* ============================================================
   EXTENSIONS — SYNCHRONIZED WITH UPDATED index.html STRUCTURE
   ============================================================ */

/* ---------- SERVICE CARDS ---------- */
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ---------- PROCESS CARDS ---------- */
.process-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.process-card p {
  color: #4b5563;
  font-size: 0.95rem;
}

.process-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ---------- ADD-ON CARDS ---------- */
.addon-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addon-card h3 {
  font-weight: 600;
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 0.25rem;
}

.addon-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

.addon-card:hover {
  transform: translateY(-6px);
  border-color: #7c3aed;
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.1);
}

/* ---------- "WHAT'S NOT INCLUDED" BLOCK ---------- */
#addons .bg-red-50 {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

#addons .bg-red-50 h4 {
  color: #b91c1c;
}

#addons ul li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

/* ---------- CTA BUTTON ALIGNMENT ---------- */
.btn-accent,
.btn-outline {
  min-width: 200px;
  text-align: center;
}

/* ---------- SMOOTH SCROLL ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- MOBILE NAV TOGGLE (optional future use) ---------- */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
  }

  nav.active ul li {
    margin-bottom: 0.5rem;
  }
}
