:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #eef3fb;
  --surface-dark: #0f172a;
  --surface-dark-2: #162033;
  --line: #d9e3f0;
  --line-strong: #b9c8db;
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-muted: #5b6b82;
  --ink-inverse: #f8fbff;
  --brand: #245cff;
  --brand-deep: #1d4ed8;
  --brand-soft: rgba(36, 92, 255, 0.1);
  --accent-green: #0f9d72;
  --accent-green-soft: rgba(15, 157, 114, 0.1);
  --accent-amber: #b7791f;
  --accent-amber-soft: rgba(183, 121, 31, 0.12);
  --danger-soft: rgba(185, 28, 28, 0.08);
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --nav-height: 84px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Outfit", var(--font-body);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.container-sm {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 243, 251, 0.84));
}

.section-dark {
  background: var(--surface-dark);
  color: var(--ink-inverse);
}

.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--ink-inverse);
}

.section-dark p,
.section-dark .section-subtitle,
.section-dark .body-copy {
  color: rgba(248, 251, 255, 0.76);
}

.stack-lg > * + * {
  margin-top: 2rem;
}

.stack-md > * + * {
  margin-top: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(185, 200, 219, 0.8);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.eyebrow--brand {
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-color: rgba(36, 92, 255, 0.18);
  box-shadow: none;
}

.eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 251, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.08;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.7rem, 7vw, 4.9rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 650;
}

h4 {
  font-size: 1.05rem;
  font-weight: 650;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--ink-soft);
}

.body-copy {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title strong,
.accent-text {
  color: var(--brand-deep);
}

.section-subtitle {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.btn-row,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.field:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible {
  outline: 3px solid rgba(36, 92, 255, 0.18);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 28px rgba(36, 92, 255, 0.18);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border-color: rgba(185, 200, 219, 0.85);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
}

.btn-ghost {
  color: var(--brand-deep);
  background: transparent;
}

.btn-whatsapp {
  background: var(--accent-green-soft);
  color: #087256;
  border-color: rgba(15, 157, 114, 0.2);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244, 247, 251, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 227, 240, 0.74);
}

.site-header.scrolled {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 80px; /* Increased from 64px for better authority */
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover img {
  transform: scale(1.05);
}

/* Header Top Bar */
.header-top {
  background: var(--surface-dark);
  color: var(--ink-inverse);
  padding: 0.35rem 0;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .header-top {
    display: none; /* Hide on mobile to reduce clutter */
  }
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.brand-tag {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.brand-partner-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  white-space: nowrap;
  animation: boldReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.8s forwards;
}

@keyframes boldReveal {
  0% { transform: translateX(10px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* WhatsApp Floating Widget */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: waPulse 2s infinite;
  text-decoration: none !important;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #fff;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0% { box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 960px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(217, 227, 240, 0.86);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem !important;
  font-size: 0.92rem !important;
  color: var(--ink-soft) !important;
  font-weight: 550 !important;
  border-radius: 8px;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--brand-soft);
  color: var(--brand-deep) !important;
}

.mobile-nav-group {
  display: grid;
  gap: 0.4rem;
  padding: 0.5rem 0;
}

.mobile-nav-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0.5rem;
  margin-top: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(185, 200, 219, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
}

.nav-toggle .bar {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle .bar::before {
  top: -6px;
}

.nav-toggle .bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .bar::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding-bottom: 1rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-panel {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 227, 240, 0.86);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(238, 243, 251, 0.62);
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a.is-active {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-copy .hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-copy .hero-note li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.93rem;
  font-weight: 550;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-card,
.proof-chip,
.stat-chip,
.mini-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 227, 240, 0.92);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.proof-chip {
  padding: 1rem 1rem 1.05rem;
}

.proof-chip strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--ink);
}

.proof-chip span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.segment-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(185, 200, 219, 0.8);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.segment-btn.is-active,
.segment-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 242, 250, 0.95));
  border: 1px solid rgba(217, 227, 240, 0.9);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 24px;
}

.visual-caption {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 0.35rem 0.1rem;
}

.visual-caption h3 {
  font-size: 1.45rem;
}

.visual-caption p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  padding: 1rem;
}

.mini-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.mini-card span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-band-item {
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(217, 227, 240, 0.86);
  border-radius: 18px;
}

.trust-band-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.trust-band-item span {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.story-grid,
.split-grid,
.contact-grid,
.page-hero-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 227, 240, 0.9);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
}

.image-panel .caption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.panel,
.article-card,
.contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 227, 240, 0.86);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: 1.4rem;
}

.panel + .panel {
  margin-top: 1rem;
}

.risk-grid,
.package-grid,
.industry-grid,
.proof-grid,
.case-grid,
.comparison-grid,
.feature-grid,
.role-grid,
.faq-grid,
.contact-quick-grid,
.support-grid {
  display: grid;
  gap: 1.2rem;
}

.risk-grid,
.package-grid,
.industry-grid,
.proof-grid,
.case-grid,
.feature-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-grid,
.contact-quick-grid,
.role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.panel-title {
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
}

.list-clean,
.list-check,
.list-plain {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.list-check li,
.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--ink-soft);
}

.list-check li i,
.list-clean li i {
  flex: 0 0 auto;
  color: var(--brand-deep);
  margin-top: 0.15rem;
}

.package-card,
.industry-card,
.proof-card,
.case-card,
.support-card,
.quick-card,
.faq-item,
.role-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 227, 240, 0.88);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.package-card:hover,
.industry-card:hover,
.proof-card:hover,
.case-card:hover,
.support-card:hover,
.quick-card:hover,
.role-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 92, 255, 0.18);
}

.package-card.featured {
  background: var(--surface-dark);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-lg);
}

.package-card.featured p,
.package-card.featured li,
.package-card.featured .package-meta,
.package-card.featured .package-price span {
  color: rgba(248, 251, 255, 0.76);
}

.package-card.featured .package-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.package-card.featured .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.package-top,
.case-top,
.proof-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.package-label,
.tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(185, 200, 219, 0.82);
  background: rgba(238, 243, 251, 0.84);
  color: var(--ink-soft);
}

.status-badge--sample {
  background: var(--accent-amber-soft);
  color: #8a5b17;
  border-color: rgba(183, 121, 31, 0.18);
}

.status-badge--trust {
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-color: rgba(36, 92, 255, 0.18);
}

.status-badge--live {
  background: var(--accent-green-soft);
  color: #097355;
  border-color: rgba(15, 157, 114, 0.18);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0.85rem 0 0.65rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
}

.package-price span {
  font-size: 0.98rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.package-meta {
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}

.package-list {
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.package-list li i {
  flex: 0 0 auto;
  color: var(--accent-green);
  margin-top: 0.18rem;
}

.industry-card {
  display: grid;
  gap: 1rem;
}

.industry-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border-radius: 18px;
}

.industry-card h3,
.proof-card h3,
.case-card h3 {
  font-size: 1.25rem;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.1rem;
}

.case-meta,
.quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.case-list,
.feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.case-list li,
.feature-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.case-list li i,
.feature-list li i {
  flex: 0 0 auto;
  margin-top: 0.18rem;
  color: var(--brand-deep);
}

.comparison-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 227, 240, 0.88);
  border-radius: var(--radius-md);
  padding: 1.45rem;
}

.comparison-card h3 {
  margin-bottom: 0.65rem;
}

.comparison-card.bad {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 246, 0.96));
}

.comparison-card.good {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 253, 248, 0.98));
}

.story-points {
  display: grid;
  gap: 1rem;
}

.story-point {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(217, 227, 240, 0.9);
  background: rgba(255, 255, 255, 0.84);
}

.story-point strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.story-point p {
  font-size: 0.93rem;
  color: var(--ink-muted);
}

.story-point--risk {
  background: rgba(255, 248, 248, 0.95);
  border-color: rgba(185, 28, 28, 0.16);
}

.story-point--fix {
  background: rgba(240, 253, 248, 0.96);
  border-color: rgba(15, 157, 114, 0.18);
}

.story-point--proof {
  background: rgba(241, 245, 255, 0.96);
  border-color: rgba(36, 92, 255, 0.16);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(217, 227, 240, 0.88);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.timeline-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-family: var(--font-head);
  font-weight: 700;
}

.timeline-step h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 0;
  background: none;
  color: var(--ink);
  text-align: left;
  font-weight: 650;
}

.faq-answer {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

.faq-question i {
  transition: transform var(--transition);
}

.page-hero {
  padding: 4rem 0 3rem;
}

.page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.page-breadcrumbs a {
  color: var(--ink-soft);
}

.page-hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 251, 0.96));
  border: 1px solid rgba(217, 227, 240, 0.9);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.page-hero-card .lead {
  max-width: 64ch;
}

.contact-card,
.article-card {
  padding: 1.6rem;
}

.article-card {
  display: grid;
  gap: 1.35rem;
}

.article-card h2 {
  font-size: 1.35rem;
}

.article-card h3 {
  font-size: 1.08rem;
}

.contact-rail {
  display: grid;
  gap: 1rem;
}

.quick-card {
  display: grid;
  gap: 0.55rem;
}

.quick-card h3 {
  font-size: 1.02rem;
}

.quick-card a,
.quick-card span {
  color: var(--ink-soft);
  font-weight: 550;
}

.quick-card small {
  color: var(--ink-muted);
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ink);
}

.field-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(185, 200, 219, 0.92);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.input::placeholder,
.textarea::placeholder {
  color: #7b8a9f;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(36, 92, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(36, 92, 255, 0.12);
  background: #fff;
  outline: none;
}

.textarea {
  min-height: 128px;
  resize: vertical;
}

.form-disclaimer {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.form-response {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-response.is-visible {
  display: block;
}

.form-response.is-success {
  background: rgba(15, 157, 114, 0.12);
  color: #097355;
  border: 1px solid rgba(15, 157, 114, 0.18);
}

.form-response.is-error {
  background: rgba(185, 28, 28, 0.1);
  color: #a11d1d;
  border: 1px solid rgba(185, 28, 28, 0.16);
}

.btn.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.contact-steps {
  display: grid;
  gap: 0.9rem;
}

.contact-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-family: var(--font-head);
  font-weight: 700;
}

.article-page {
  padding: 4rem 0 5rem;
}

.article-content {
  display: grid;
  gap: 1.2rem;
}

.article-content ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.article-content li + li {
  margin-top: 0.5rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--surface-dark);
  color: var(--ink-inverse);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 360px;
}

.footer-brand img {
  width: auto;
  height: 50px;
}

.footer-brand p,
.footer-col a,
.footer-contact a,
.footer-contact span {
  color: rgba(248, 251, 255, 0.76);
}

.footer-col {
  display: grid;
  gap: 0.85rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

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

/* === PREMIUM FOOTER SYSTEM === */
.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  gap: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-brand {
  display: grid;
  gap: 1.25rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: grid;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--brand-deep);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 550;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--brand-deep);
}

.wa-normalize {
  background: var(--accent-green-soft);
  color: #087256 !important;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(15, 157, 114, 0.15);
}

.wa-normalize:hover {
  background: rgba(15, 157, 114, 0.15);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.audit-modal {
  position: fixed;
  inset: 0;
  display: none;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(14px);
  z-index: 300;
}

.audit-modal.is-open {
  display: flex;
}

.audit-dialog {
  width: min(740px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
  border: 1px solid rgba(217, 227, 240, 0.95);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.audit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0.5rem;
}

.audit-header-copy {
  display: grid;
  gap: 0.55rem;
}

.audit-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(185, 200, 219, 0.82);
  background: rgba(255, 255, 255, 0.9);
}

.audit-body {
  padding: 0 1.5rem 1.5rem;
}

.modal-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.modal-trust .mini-card {
  padding: 0.9rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-btn {
  border: 1px solid rgba(185, 200, 219, 0.82);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-soft);
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 650;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.note-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 227, 240, 0.86);
  box-shadow: var(--shadow-sm);
}

.note-band span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .hero-grid,
  .story-grid,
  .split-grid,
  .contact-grid,
  .page-hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .risk-grid,
  .package-grid,
  .industry-grid,
  .proof-grid,
  .case-grid,
  .feature-grid,
  .support-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-nav .btn {
    display: inline-flex;
  }

  .hero-proof-grid,
  .modal-trust,
  .comparison-grid,
  .contact-quick-grid,
  .role-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand-copy {
    display: none;
  }
}

@media (max-width: 720px) {
  .section,
  .article-page {
    padding: 4rem 0;
  }

  .hero,
  .page-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .page-hero-card,
  .visual-panel,
  .package-card,
  .industry-card,
  .proof-card,
  .case-card,
  .support-card,
  .quick-card,
  .faq-item,
  .role-card,
  .comparison-card,
  .audit-body,
  .audit-header,
  .contact-card,
  .article-card {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .timeline,
  .trust-band,
  .risk-grid,
  .package-grid,
  .industry-grid,
  .proof-grid,
  .case-grid,
  .feature-grid,
  .support-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn-row,
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .segment-control,
  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof-grid {
    gap: 0.75rem;
  }

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

  .audit-dialog {
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ==========================================================================
   SUPPORT PORTAL — Premium Branded Customer Support Desk
   Architecture: Custom UI → Zoho SalesIQ (hidden) → Support Team
   ========================================================================== */

/* --- Portal Shell --- */
.sp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 420px;
  height: 640px;
  max-height: calc(100vh - 4rem);
  max-width: calc(100vw - 2rem);
  background: #ffffff;
  border: 1px solid rgba(217, 227, 240, 0.7);
  border-radius: 24px;
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.18),
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  display: flex;
  flex-direction: column;
  z-index: 2000;
  overflow: hidden;
  transform: translateY(24px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.4s ease;
}

.sp.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Floating Action Triggers */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  z-index: 1000;
}

.fab-whatsapp {
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: wa-pulse 2s infinite;
}

.fab-whatsapp:hover {
  transform: translateY(-5px) scale(1.1);
  background: #20ba5a;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  animation: none;
}

.fab-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal State Management */
body.modal-open .floating-actions,
body.modal-open .whatsapp-float,
body.modal-open .zsiq_floatmain {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.modal-open .site-header {
  z-index: 100; /* Ensure header stays below modal backdrop if needed */
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .fab-label {
    display: none;
  }
  
  .fab-whatsapp {
    width: 52px;
    height: 52px;
  }

  .fab-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* Injected WhatsApp Icons */
a[href*="wa.me"] svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

a[href*="wa.me"]:hover svg {
  transform: scale(1.1);
}
