/* ============================================================
   KUARS – Sections
   Navbar, Hero, Trust Strip, Services, How, Pricing, CTA, Footer
   ============================================================ */

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--color-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;        /* JS overrides this */
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 0 var(--container-pad) var(--sp-8);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: var(--sp-2);
}

.mobile-menu li a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  color: var(--color-dark);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.mobile-menu li a:hover {
  color: var(--color-purple);
  padding-left: 6px;
}

.mobile-menu li:last-child a {
  margin-top: var(--sp-5);
  background: var(--color-orange);
  color: #fff !important;
  border: none;
  border-radius: var(--r-full);
  justify-content: center;
  padding: 15px 20px;
  font-weight: var(--fw-extrabold);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}

.mobile-menu li:last-child a:hover {
  background: var(--color-orange-dark);
  padding-left: 20px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(125deg, var(--hero-start) 0%, var(--hero-mid) 45%, var(--hero-end) 100%);
  padding: 90px var(--container-pad) 100px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb--1 { top: -150px; right: -100px; width: 550px; height: 550px; background: rgba(255,255,255,.07); }
.hero-orb--2 { bottom: -200px; left: 20%; width: 450px; height: 450px; background: rgba(255,255,255,.05); }
.hero-orb--3 { top: 30%; right: 38%; width: 200px; height: 200px; background: rgba(255,255,255,.04); }

.hero-content {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-left { flex: 1; }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-right {
  flex: 0 0 360px;
}

/* ── Float Card ── */
.float-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 28px 24px;
  box-shadow: var(--sh-card);
}

.float-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.float-card__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.stat-item {
  background: var(--color-light);
  border-radius: var(--r-lg);
  padding: 14px var(--sp-2);
  text-align: center;
}

.stat-num {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  background: linear-gradient(135deg, var(--hero-start), #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-muted);
  font-weight: var(--fw-semibold);
  margin-top: 2px;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.progress-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.progress-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  min-width: 64px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: var(--color-border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--hero-start), var(--color-purple));
  transition: width 1s ease;
}

.progress-pct {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-muted);
  min-width: 32px;
  text-align: right;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--color-dark);
  padding: 22px var(--container-pad);
}

.trust-list {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.trust-item svg { color: var(--hero-start); flex-shrink: 0; }

/* ── SERVICE CARDS ── */
.srv-card {
  border-radius: var(--r-2xl);
  padding: 36px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.srv-card--lav { background: var(--c-lav); }
.srv-card--cyn { background: var(--c-cyan); }
.srv-card--yel { background: var(--c-yellow); }

.srv-card__icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  box-shadow: var(--sh-md);
  font-size: 1.8rem;
}

.srv-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
}

.srv-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.7;
}

/* ── SERVICE MINI CARDS ── */
.srv-mini {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.srv-mini:hover {
  border-color: var(--color-purple-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.1);
}

.srv-mini__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-4);
}

.srv-mini__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
  margin-bottom: var(--sp-2);
}

.srv-mini__desc {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

/* ── HOW WE WORK ── */
.how-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.how-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--color-border);
  pointer-events: none;
  user-select: none;
}

.how-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
}

.how-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
}

.how-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing-card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-2xl);
  padding: 36px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.pricing-card--featured {
  border-color: var(--color-purple);
  background: linear-gradient(160deg, var(--c-lav) 0%, #fff 100%);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 28px;
  background: var(--color-purple);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  padding: 6px 14px 8px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card__name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-2);
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  margin-bottom: var(--sp-1);
}

.price-amount {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--color-dark);
  letter-spacing: -0.03em;
}

.price-currency {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-muted);
}

.price-per {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-bottom: var(--sp-6);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(120deg, var(--hero-start) 0%, var(--hero-mid) 50%, var(--hero-end) 100%);
  padding: var(--sp-24) var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-orb--1 { top: -80px; right: -60px; width: 400px; height: 400px; background: rgba(255,255,255,.07); }
.cta-orb--2 { bottom: -100px; left: 10%; width: 350px; height: 350px; background: rgba(255,255,255,.05); }

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: var(--fw-black);
  color: #fff;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--color-dark);
  padding: var(--sp-16) var(--container-pad) var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 260px;
  margin-top: var(--sp-4);
}

.footer-col__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col ul a,
.footer-col ul span {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--t-fast);
}

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