/* BASE + TYPOGRAPHY
------------------------------------------------------------- */

:root {
  --bg-page: #f5f5f7;
  --text-main: #1d1d1f;
  --text-muted: #6e6e73;
  --nav-bg: #f5f5f7;
  --card-bg: #ffffff;
  --border-soft: #d2d2d7;
  --shadow-soft: 0 26px 70px rgba(0, 0, 0, 0.16);
  --radius-card: 34px;
  --overlay-bg: #111111;
  --link-blue: #2997ff;
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui,
    "Segoe UI", sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Let sections scroll cleanly under sticky nav */
section {
  scroll-margin-top: 72px;
}

/* GLOBAL NAV
------------------------------------------------------------- */

.global-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(210, 210, 215, 0.8);
}

.nav-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  position: relative;
}

.nav-left,
.nav-middle,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-middle {
  gap: 18px;
}

.nav-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-cta {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  text-decoration: none;
}

.nav-cta:hover {
  border-color: #a0a0a5;
}

/* MOBILE NAV BUTTON */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* PAGE WRAPPER
------------------------------------------------------------- */

.page-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 22px 80px;
}

/* HERO TOP
------------------------------------------------------------- */

.hero-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.hero-eyebrow {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-heading {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* HERO CARDS
------------------------------------------------------------- */

.hero-cards-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-card);
  border: 1px solid rgba(210, 210, 215, 0.7);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  background-color: var(--overlay-bg);
  color: #f5f5f7;
  padding: 20px;
}

.overlay-eyebrow {
  font-size: 12px;
  color: #a1a1a6;
  text-transform: uppercase;
  margin-top: 0;
}

.overlay-heading {
  font-size: 20px;
  margin: 6px 0;
}

.overlay-body {
  font-size: 14px;
  color: #d2d2d7;
  margin-bottom: 10px;
}

.overlay-link {
  font-size: 14px;
  color: var(--link-blue);
  text-decoration: none;
}

/* FEATURE TASKS
------------------------------------------------------------- */

.tasks-section {
  margin-top: 64px;
}

.tasks-inner {
  background: #121214;
  padding: 40px 32px 46px;
  border-radius: 40px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.tasks-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.tasks-eyebrow {
  color: #e5e5ea;
  font-size: 16px;
}

.tasks-heading {
  color: #fff;
  font-size: 28px;
}

.tasks-subtitle {
  color: #a1a1aa;
  font-size: 16px;
}

.tasks-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.task-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.task-media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.task-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.task-panel {
  padding: 18px;
}

.task-eyebrow {
  text-transform: uppercase;
  color: #9ca3af;
  font-size: 11px;
}

.task-title {
  font-size: 16px;
  margin: 6px 0;
}

.task-body {
  font-size: 13px;
  color: var(--text-muted);
}

/* HOW IT WORKS
------------------------------------------------------------- */

.how-section {
  margin-top: 72px;
}

.how-inner {
  max-width: 980px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.how-eyebrow {
  color: var(--text-muted);
  font-size: 16px;
}

.how-heading {
  font-size: 28px;
  margin-bottom: 10px;
}

.how-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.how-steps {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.how-step {
  background: #fff;
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.how-number {
  width: 26px;
  height: 26px;
  background: #111827;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-bottom: 10px;
}

.how-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.how-body {
  color: var(--text-muted);
  font-size: 14px;
}

/* PRICING
------------------------------------------------------------- */

.pricing-section {
  margin-top: 80px;
}

.pricing-inner {
  max-width: 980px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.pricing-eyebrow {
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-heading {
  font-size: 28px;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  background: #fff;
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border: 1px solid var(--link-blue);
}

.plan-label {
  text-transform: uppercase;
  font-size: 12px;
  color: #6b7280;
}

.plan-heading {
  font-size: 18px;
  margin: 4px 0;
}

.plan-price {
  font-size: 16px;
  margin-bottom: 10px;
}

.plan-body {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.plan-list {
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.plan-list li {
  margin-bottom: 4px;
}

.plan-cta {
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--text-main);
  text-align: center;
}

.plan-cta-primary {
  background: var(--link-blue);
  color: #fff;
  border-color: var(--link-blue);
}

/* CONTACT FORM
------------------------------------------------------------- */

.contact-section {
  margin-top: 80px;
}

.contact-inner {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 32px;
  border-radius: 40px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.15);
}

.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.contact-eyebrow {
  color: var(--text-muted);
  font-size: 16px;
}

.contact-heading {
  font-size: 26px;
}

.contact-subtitle {
  color: var(--text-muted);
  font-size: 15px;
}

.contact-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row input,
.form-row textarea {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #fdfdfd;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--link-blue);
}

.form-submit {
  padding: 9px 18px;
  background: var(--link-blue);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: #f5f5f7;
  padding: 16px;
  border-radius: 18px;
}

.contact-card-subtle {
  background: #f9fafb;
}

.contact-card-heading {
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-email {
  color: var(--text-main);
  font-weight: 500;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* FOOTER
------------------------------------------------------------- */

.site-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(210,210,215,0.8);
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.footer-brand {
  font-size: 14px;
  font-weight: bold;
}

.footer-text {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-meta {
  color: #9ca3af;
  font-size: 11px;
}

/* WHY SUPPORTA
------------------------------------------------------------- */

.why-section {
  margin-top: 72px;
}

.why-inner {
  max-width: 980px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.why-eyebrow {
  font-size: 16px;
  color: var(--text-muted);
}

.why-heading {
  font-size: 26px;
  margin: 6px 0 8px;
}

.why-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.why-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.why-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.why-body {
  font-size: 13px;
  color: var(--text-muted);
}

/* GUARANTEE STRIP
------------------------------------------------------------- */

/* GUARANTEE STRIP (updated darker colours) */
.guarantee-section {
  margin-top: 40px;
}

.guarantee-inner {
  max-width: 820px;
  margin: 0 auto;
  background: #d1fae5; /* darker mint background */
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.guarantee-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #065f46; /* darker green */
}

.guarantee-text {
  font-size: 14px;
  color: #064e3b; /* richer green */
  font-weight: 500;
}


/* FAQ
------------------------------------------------------------- */

.faq-section {
  margin-top: 56px;
}

.faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.faq-eyebrow {
  font-size: 16px;
  color: var(--text-muted);
}

.faq-heading {
  font-size: 26px;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.faq-question {
  font-size: 15px;
  margin-bottom: 6px;
}

.faq-answer {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE FOR NEW SECTIONS */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-inner {
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* RESPONSIVE
------------------------------------------------------------- */

@media (max-width: 900px) {
  .tasks-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* MOBILE NAV LAYOUT */
  .nav-content {
    height: auto;
    padding: 0 16px 8px;
    align-items: flex-start;
    flex-wrap: wrap; /* allow items to go to next line */
  }

  /* Hide menu + buttons by default on mobile */
  .nav-middle,
  .nav-right {
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  /* Show burger on mobile */
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  /* When nav is open, stack links + buttons under the logo */
  .global-nav.nav-open .nav-middle,
  .global-nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .global-nav.nav-open .nav-link {
    font-size: 15px;
    padding: 4px 0;
  }

  .global-nav.nav-open .nav-cta,
  .global-nav.nav-open .nav-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }

  /* Slightly tighter padding on mobile page wrapper */
  .page-wrapper {
    padding: 56px 18px 60px;
  }
}

/* BACK TO TOP (MOBILE) */
.back-to-top {
  position: fixed;
  bottom: 22px;
  left: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 39; /* just under WhatsApp bubble */
}

.back-to-top-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-2px);
}

/* Only show on mobile */
@media (min-width: 769px) {
  .back-to-top {
    display: none;
  }
}


@media (max-width: 600px) {
  .hero-heading {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .tasks-grid {
    grid-template-columns: 1fr;
  }
}

/* WHATSAPP CTA BUTTON */
.whatsapp-card {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 16px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
}

/* WHATSAPP IN NAV */
.nav-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-weight: 500;
}

.nav-cta-whatsapp:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
}

.nav-whatsapp-icon {
  width: 14px;
  height: 14px;
}

/* FLOATING WHATSAPP BUBBLE */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 40;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-floating-icon {
  width: 26px;
  height: 26px;
}

/* OPTIONAL: slightly smaller bubble on very small screens */
@media (max-width: 480px) {
  .whatsapp-floating {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-floating-icon {
    width: 22px;
    height: 22px;
  }
}

/* CONTACT SECTION WHATSAPP BUTTON */
.contact-whatsapp-btn {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.contact-whatsapp-btn:hover {
  background: #1ebe5b;
}

.whatsapp-icon {
  width: 16px;
  height: 16px;
}

/* HERO HOOK */
.hero-hook {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e5f2ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  color: var(--text-main);
}
