*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --brand-blue: #0ea5e9;
  --brand-green: #22c55e;
  --brand-dark: #0f172a;
  --brand-light: #f8fafc;
  --brand-muted: #94a3b8;
  --bg: #050816;
  --bg-alt: #0b1020;
  --card-bg: #0f172a;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --danger: #f97373;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);
  --radius-lg: 18px;
  --radius-xl: 22px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #020617 100%);
  color: var(--text);
}

body {
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.78), transparent);
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 12px;
  opacity: 0.8;
  color: var(--brand-muted);
}

.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.mobile-contact-btn {
  position: fixed;
  bottom: 16px;
  left: 16px;   /* ✅ moved to LEFT */
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #000;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

@media (min-width: 769px) {
  .mobile-contact-btn {
    display: none;
  }
}

/* Desktop nav visible by default */
.desktop-nav {
  display: flex;
  gap: 20px;
}

.mobile-menu-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0f172a; /* dark navy */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
}

/* SHOW MOBILE NAV WHEN MENU IS OPEN */
.mobile-nav.show {
  display: flex;
}

/* --- MOBILE BREAKPOINT --- */
@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* hide desktop nav */
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-text {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-card {
  background: radial-gradient(circle at top left, #1e293b 0, #020617 55%);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.23);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
}

.hero-card ul {
  margin: 0 0 0.8rem;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 0.18rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #0b1120;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.4);
}

.btn.outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
}

.btn.outline:hover {
  border-color: var(--accent);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), #020617);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
}

.section-title {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.section-subtitle {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.card {
  background: radial-gradient(circle at top left, #111827 0, #020617 75%);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid rgba(31, 41, 55, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.75);
}

.pricing-card .card-header {
  margin-bottom: 0.7rem;
}

.pricing-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.price {
  font-size: 1.02rem;
  font-weight: 600;
}

.price-tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.feature-list,
.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
}

.feature-list li::before,
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
}

.feature-list li + li,
.bullet-list li + li {
  margin-top: 0.28rem;
}

.limits {
  margin: 0.4rem 0 0.8rem;
  border-top: 1px dashed rgba(55, 65, 81, 0.8);
  padding-top: 0.55rem;
}

.limits p {
  font-size: 0.8rem;
  margin: 0 0 0.2rem;
  color: var(--muted);
}

.limits ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.limits li {
  padding-left: 0.9rem;
  position: relative;
}

.limits li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}

/* Highlighted plan */
.pricing-card.highlighted {
  border-color: rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top left, #0f172a 0, #020617 65%);
  position: relative;
}

.badge {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* Process */
.process-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-list li {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 1rem 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 0.86rem;
}

.process-list h3 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

/* Notes */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 1.5rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.2rem 0 0.6rem;
}


.fine-print-container{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.2rem 0 0.6rem;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 30rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.3rem 0 1.6rem;
  background: radial-gradient(circle at bottom, #020617 0, #020617 40%, #000 100%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);

}

.footer-inner p{
  align-items: center;
}

.footer-note {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    gap: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .notes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .container {
    width: min(100% - 1.8rem, 100%);
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 16px;
  right: 20px;  
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

#scrollTopBtn:hover {
  transform: translateY(-2px);
}

/* Also shrink WhatsApp & Email specifically */
#contact .contact-options a,
.accept-card{
  max-width: 500px;
}

.hidden {
  display: none;
}
