/* ============================================================
   PULSEO â€” Domain Uptime Monitoring
   Design tokens
   ============================================================ */
:root {
  --bg: #10122a;
  --bg-soft: #171a3b;
  --bg-card: #1c1f45;
  --ink: #f5f6fb;
  --ink-muted: #acafd1;
  --ink-faint: #7f82a8;

  --coral: #ff5a4e;
  --coral-ink: #2a0b08;
  --violet: #8b7fe8;
  --violet-ink: #1c1440;
  --lime: #d8ff4f;
  --lime-ink: #1e2400;
  --teal: #2ed9a7;
  --teal-ink: #04241a;
  --amber: #ffa53d;
  --amber-ink: #2e1600;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container-max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(139, 127, 232, 0.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 90, 78, 0.12),
      transparent 40%
    ),
    radial-gradient(circle at 50% 95%, rgba(46, 217, 167, 0.1), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.container-xl {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 90, 78, 0.18);
}

.text-muted-c {
  color: var(--ink-muted);
}
.text-faint {
  color: var(--ink-faint);
}

/* ---------- Buttons ---------- */
.btn-pulseo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}
.btn-pulseo:hover {
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--lime);
  color: var(--lime-ink);
}
.btn-lime:hover {
  box-shadow: 0 10px 26px rgba(216, 255, 79, 0.28);
  color: var(--lime-ink);
}

.btn-outline-light {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(245, 246, 251, 0.28);
}
.btn-outline-light:hover {
  background: rgba(245, 246, 251, 0.08);
  color: var(--ink);
  border-color: rgba(245, 246, 251, 0.5);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover {
  box-shadow: 0 10px 26px rgba(255, 90, 78, 0.32);
  color: #fff;
}

.icon-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 18, 42, 0.14);
  font-size: 13px;
  flex-shrink: 0;
}
.btn-outline-light .icon-chip {
  background: rgba(245, 246, 251, 0.12);
}

/* ---------- Navbar ---------- */
.pulseo-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(16, 18, 42, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 246, 251, 0.06);
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand-mark span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px 2px rgba(216, 255, 79, 0.7);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.status-pill-mini {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(46, 217, 167, 0.1);
  border: 1px solid rgba(46, 217, 167, 0.25);
}
.status-pill-mini .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 217, 167, 0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.navbar-toggler-custom {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
}
.pulseo-nav.nav-scrolled {
  background: rgba(16, 18, 42, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.nav-links.mobile-open {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-soft);
  flex-direction: column;
  padding: 24px;
  gap: 18px !important;
  border-bottom: 1px solid rgba(245, 246, 251, 0.08);
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 40px;
  position: relative;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid rgba(245, 246, 251, 0.08);
  color: var(--ink-muted);
}
.pill-tag .glyph {
  color: var(--amber);
}

.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title .hl-coral {
  color: var(--coral);
}
.hero-title .hl-violet {
  color: var(--violet);
}
.hero-title .hl-lime {
  color: var(--lime);
}
.hero-title .hl-outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.monitor-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 246, 251, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  width: 100%;
  max-width: 430px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}
.monitor-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.monitor-card-head .domain {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink);
}
.badge-up {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(46, 217, 167, 0.14);
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-up .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.uptime-bars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.uptime-bars span {
  flex: 1;
  height: 34px;
  border-radius: 4px;
  background: var(--teal);
  opacity: 0.9;
}
.uptime-bars span.warn {
  background: var(--amber);
}
.uptime-bars span.down {
  background: var(--coral);
}
.monitor-stats {
  display: flex;
  gap: 14px;
}
.monitor-stats .mini-stat {
  flex: 1;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.monitor-stats .mini-stat .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.monitor-stats .mini-stat .lbl {
  font-size: 11.5px;
  color: var(--ink-faint);
}

.float-badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.float-badge .num {
  font-size: 20px;
  display: block;
}
.float-badge .lbl {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  display: block;
  margin-top: 2px;
}
.fb-1 {
  top: -18px;
  left: -18px;
  background: var(--lime);
  color: var(--lime-ink);
  transform: rotate(-6deg);
}
.fb-2 {
  bottom: -18px;
  right: -14px;
  background: var(--violet);
  color: #fff;
  transform: rotate(4deg);
}

/* stat ribbon under hero */
.stat-ribbon {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.stat-ribbon-callout {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(245, 246, 251, 0.07);
}
.stat-ribbon-callout .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--coral);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}
.stat-ribbon-callout h4 {
  font-size: 19px;
  font-weight: 700;
}
.stat-ribbon-callout h4 span {
  color: var(--lime);
}
.stat-box {
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
}
.stat-box .lbl {
  font-size: 13px;
  margin-top: 6px;
}
.stat-box.b-violet {
  background: var(--violet);
  color: #fff;
}
.stat-box.b-violet .lbl {
  color: rgba(255, 255, 255, 0.8);
}
.stat-box.b-lime {
  background: var(--lime);
  color: var(--lime-ink);
}
.stat-box.b-lime .lbl {
  color: rgba(30, 36, 0, 0.7);
}

/* ---------- Section shells ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section-tight {
  padding: 80px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  text-transform: uppercase;
  max-width: 620px;
  margin-top: 14px;
}
.section-head p {
  max-width: 360px;
  color: var(--ink-muted);
  font-size: 15px;
  padding-bottom: 6px;
}

/* ---------- Service cards ---------- */
.service-card {
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card h3 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.15;
}
.service-card p {
  font-size: 13.5px;
  opacity: 0.85;
  margin: 0;
}
.service-card .go {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.14);
  font-size: 15px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.service-card:hover .go {
  transform: rotate(45deg);
}

.card-coral {
  background: var(--coral);
  color: #fff;
}
.card-coral .go {
  background: rgba(255, 255, 255, 0.2);
}
.card-violet {
  background: var(--violet);
  color: #fff;
}
.card-violet .go {
  background: rgba(255, 255, 255, 0.2);
}
.card-lime {
  background: var(--lime);
  color: var(--lime-ink);
}
.card-teal {
  background: var(--teal);
  color: var(--teal-ink);
}
.card-dark {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid rgba(245, 246, 251, 0.08);
}
.card-dark .go {
  background: rgba(245, 246, 251, 0.08);
}
.card-amber {
  background: var(--amber);
  color: var(--amber-ink);
}

/* ---------- Why choose / image feature ---------- */
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
}
.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}
.why-tag-badge {
  position: absolute;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  max-width: 200px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.55);
}
.why-tag-badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.why-tag-badge .lbl {
  font-size: 12px;
  color: var(--ink-muted);
}
.wtb-1 {
  top: -20px;
  left: -16px;
}
.wtb-2 {
  bottom: -20px;
  right: -16px;
  background: var(--coral);
}
.wtb-2 .lbl {
  color: rgba(255, 255, 255, 0.85);
}
.wtb-2 .num {
  color: #fff;
}

.why-feature-block {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(245, 246, 251, 0.07);
  height: 100%;
}
.why-feature-block .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.why-feature-block h4 {
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.why-feature-block p {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Working method accordion ---------- */
.method-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 246, 251, 0.07);
  margin-bottom: 18px;
  overflow: hidden;
}
.method-head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  cursor: pointer;
}
.method-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--lime);
  min-width: 50px;
}
.method-head h4 {
  font-size: 18px;
  text-transform: uppercase;
  flex: 1;
}
.method-chevron {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 246, 251, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.method-item.open .method-chevron {
  transform: rotate(180deg);
  background: var(--lime);
  color: var(--lime-ink);
}
.method-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  padding: 0 30px;
}
.method-item.open .method-body {
  padding: 0 30px 30px;
}
.method-body-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px solid rgba(245, 246, 251, 0.06);
}
.method-body-inner .desc {
  color: var(--ink-muted);
  font-size: 14.5px;
  max-width: 340px;
  padding-top: 20px;
}
.method-tags {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.method-tag-group .tg-title {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 10px;
  font-family: var(--font-mono);
}
.method-tag-group .chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 190px;
}
.chip {
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(245, 246, 251, 0.06);
  color: var(--ink-muted);
}
.chip.c-lime {
  background: var(--lime);
  color: var(--lime-ink);
}
.chip.c-coral {
  background: var(--coral);
  color: #fff;
}
.chip.c-violet {
  background: var(--violet);
  color: #fff;
}
.chip.c-teal {
  background: var(--teal);
  color: var(--teal-ink);
}

/* ---------- CTA banner (wavy) ---------- */
.banner-wavy {
  background: var(--violet);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.banner-wavy h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
  color: #fff;
  max-width: 780px;
  margin: 0 auto 18px;
}
.banner-wavy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin: 0 auto;
  font-size: 14.5px;
}
.banner-chip {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}
.bc-1 {
  top: 14%;
  left: 6%;
  background: var(--lime);
  color: var(--lime-ink);
  transform: rotate(-8deg);
}
.bc-2 {
  top: 20%;
  right: 8%;
  background: var(--coral);
  color: #fff;
  transform: rotate(6deg);
}
.bc-3 {
  bottom: 16%;
  left: 10%;
  background: var(--teal);
  color: var(--teal-ink);
  transform: rotate(4deg);
}
.bc-4 {
  bottom: 12%;
  right: 12%;
  background: #fff;
  color: var(--violet-ink);
  transform: rotate(-4deg);
}

/* ---------- Case studies / featured ---------- */
.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.case-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.case-card:hover img {
  transform: scale(1.06);
}
.case-card-body {
  padding-top: 16px;
}
.case-card-body h4 {
  font-size: 16.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.case-card-body p {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
}
.arrow-nav {
  display: flex;
  gap: 10px;
}
.arrow-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 246, 251, 0.16);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.arrow-nav button:hover {
  background: var(--bg-card);
}

/* ---------- Testimonial ---------- */
.testimonial-row {
  display: flex;
  gap: 46px;
  align-items: center;
}
.testimonial-photo {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-quote h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 18px;
}
.testimonial-quote h3 .hl {
  color: var(--coral);
}
.testimonial-author {
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(245, 246, 251, 0.09);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
}
.faq-q .plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.faq-item.open .plus {
  background: var(--lime);
  color: var(--lime-ink);
  transform: rotate(135deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 14px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  text-transform: uppercase;
  max-width: 620px;
}
.final-cta h2 .hl-coral {
  color: var(--coral);
}
.final-cta h2 .hl-lime {
  color: var(--lime);
}

/* ---------- Footer ---------- */
.pulseo-footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(245, 246, 251, 0.07);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer-brand p {
  max-width: 320px;
  color: var(--ink-muted);
  font-size: 14px;
  margin-top: 14px;
}
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-muted);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(245, 246, 251, 0.07);
  font-size: 13px;
  color: var(--ink-faint);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 246, 251, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.footer-social a:hover {
  background: var(--lime);
  color: var(--lime-ink);
  border-color: var(--lime);
}

/* ---------- Page hero (about/contact/pricing) ---------- */
.page-hero {
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  margin: 18px 0 14px;
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-muted);
  font-size: 15.5px;
}
.page-hero .pill-tag {
  margin: 0 auto;
}

/* ---------- Pricing ---------- */
.plan-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.plan-toggle {
  display: inline-flex;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid rgba(245, 246, 251, 0.08);
  gap: 4px;
}
.plan-toggle button {
  border: none;
  background: transparent;
  color: var(--ink-muted);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.plan-toggle button.active {
  background: var(--lime);
  color: var(--lime-ink);
}

.plan-card {
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  height: 100%;
  border: 1px solid rgba(245, 246, 251, 0.08);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
}
.plan-card.featured {
  background: var(--violet);
  border-color: transparent;
}
.plan-badge-pop {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}
.plan-name {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.plan-card.featured .plan-name {
  color: rgba(255, 255, 255, 0.7);
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
}
.plan-price .cadence {
  font-size: 13px;
  color: var(--ink-faint);
  padding-bottom: 10px;
}
.plan-card.featured .plan-price .cadence {
  color: rgba(255, 255, 255, 0.7);
}
.plan-desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 26px;
}
.plan-card.featured .plan-desc {
  color: rgba(255, 255, 255, 0.85);
}
.plan-feats {
  margin-bottom: 30px;
  flex: 1;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 13px;
  color: var(--ink);
}
.plan-feats li .fi {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--teal-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card.featured .plan-feats li .fi {
  background: var(--lime);
}
.plan-card .btn-pulseo {
  width: 100%;
  justify-content: center;
}

.pricing-compare {
  margin-top: 100px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(245, 246, 251, 0.07);
}
.compare-table th {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 600;
}
.compare-table td.center,
.compare-table th.center {
  text-align: center;
}
.compare-table td .yes {
  color: var(--teal);
  font-size: 16px;
}
.compare-table td .no {
  color: var(--ink-faint);
  font-size: 16px;
}

/* ---------- About page ---------- */
.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(245, 246, 251, 0.07);
  height: 100%;
}
.value-card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 16.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
}

.team-card {
  text-align: center;
}
.team-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1/1.05;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h5 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-card span {
  font-size: 12.5px;
  color: var(--ink-faint);
}

.timeline-row {
  display: flex;
  gap: 26px;
  margin-bottom: 34px;
}
.timeline-row .yr {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--lime);
  min-width: 80px;
}
.timeline-row .tl-body h5 {
  font-size: 15.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-row .tl-body p {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
  max-width: 460px;
}

/* ---------- Contact page ---------- */
.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(245, 246, 251, 0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-card .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-info-card h5 {
  font-size: 14.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid rgba(245, 246, 251, 0.07);
}
.form-label-c {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
.form-control-c {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid rgba(245, 246, 251, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 14.5px;
  margin-bottom: 22px;
  transition: border-color 0.2s ease;
}
.form-control-c:focus {
  outline: none;
  border-color: var(--lime);
}
textarea.form-control-c {
  resize: vertical;
  min-height: 130px;
}

.status-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  border: 1px solid rgba(245, 246, 251, 0.07);
  margin-top: 30px;
}
.status-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
}
.status-strip .item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ---------- Utility reveal classes for GSAP ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-fade {
  opacity: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .navbar-toggler-custom {
    display: block;
  }
  .stat-ribbon {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-image-wrap img {
    min-height: 300px;
  }
  .testimonial-row {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-photo {
    margin: 0 auto;
  }
  .final-cta {
    text-align: center;
    justify-content: center;
  }
  .footer-top {
    flex-direction: column;
    gap: 34px;
  }
  .method-body-inner {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 74px 0;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-visual-wrap {
    margin-top: 50px;
  }
  .banner-wavy {
    padding: 50px 24px;
  }
  .banner-chip {
    display: none;
  }
  .final-cta {
    padding: 40px 26px;
  }
  .status-pill-mini {
    display: none;
  }
}

.pg-price-sub, .pg-footer-bottom{
      color: #f59495;
    font-size: 12px;
    margin: 16px 0;
}
.pg-price-feats li{
       color: #ddd;
    font-size: 14px;
    padding: 5px 0;
}
.brand img{
    width: 168px;
}
.in-pg-sec{
    padding: 100px 0;
}
.pg-brand img{
    width: 200px;
}



.pg-input {
    width: 100%;
    background: var(--bg-soft);
    border: 1px solid #ddd;
    border-radius: 10px;
        padding: 13px 14px 13px 46px;
    color: #fff;
    font-size: 14.5px;
    transition: border-color .2s;
  
}
.pg-input-group .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-faint);
    display: flex;
}
.pg-dash-brand img{
    width: 200px;
}
.pg-dash-search svg{
    width: 15px;
    height: 15px;
}